Hi
I am Play Audio file using CVideoPlayerUtility::OpenURL() and file played succefully, but when i click on pause than pause also but when i clicked on continue do nothing.
why audio file not able to play after pause.
Regards
SymbianTH.
Hi
I am Play Audio file using CVideoPlayerUtility::OpenURL() and file played succefully, but when i click on pause than pause also but when i clicked on continue do nothing.
why audio file not able to play after pause.
Regards
SymbianTH.
There would be some return code/errors after caling the function in the callback functions, they would you an indication of what happened. Also check this wiki link which has the code snippet :-
http://wiki.forum.nokia.com/index.ph...oPlayerUtility
Cheers,
Mayank
Hi,
what you have wrote in continue? try to debug it.
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
Hi
Thanks For help.
I am colling function with wrong object name.
Thanks, I solved.
SymbianTH
Hi, I have tried with this example...its getting played the video, but if I increase/decrease the volume, then the value is getting changed but video stops playing...even if I press pause option also...
only Play option is working...why is it getting stuck if I select Volume Up/Down ?
Regards,
Sunitha.M
// pause function
if (iState == EPlaying)
{
errorViewer = iMdaPlayer->GetPosition(aTime);
iMdaPlayer->Stop();
iState = EPause;
}
//////////////////////////////////
//play function
if (iState == EPause || iState == EReadyToPlay)
{
iMdaPlayer->SetPosition(aTime);
iState=EPlaying;
iMdaPlayer->Play();
}
//////////////////////////////////