PDA

View Full Version : Problem in phonon videoplayer



vinayaka
22nd June 2011, 08:33
If we play videoplayer more than 10 times (when we navigate from different pages), it gets stuck. We can hear the audio and have control over seek slider and volume slider. I have doubt that more instances of videoplayer are created .What we can do?

Added after 1 3 minutes:

we addded this to the code connect(videoPlayer, SIGNAL(finished()), videoPlayer, SLOT(deleteLater())); . But it shows visual run time error when the video is finished.

MrShahi
20th January 2012, 12:55
HI,
I think you did not properly close videoplayer before leaving page..
whenever you move to next page ,first stop videoplayer
videoPlayer->stop();
videoPlayer->hide();

I hope it will help you..