hi,

I'm in trouble understanding the behaviour of seekSlider giving me when playing a .flv video from the net.
Here the code I use:

Qt Code:
  1. mediaObject=videoPlayer->mediaObject();
  2. mediaObject->setCurrentSource(Phonon::MediaSource(url));
  3. mediaObject->setObjectName("Video_output");
  4.  
  5. videoPlayer->videoWidget()->setObjectName("Videowidget");
  6.  
  7. audioOutput = videoPlayer->audioOutput();
  8. audioOutput->setObjectName("Audio_output");
  9.  
  10. seekSlider->setMediaObject(mediaObject);
  11. seekSlider->setSingleStep(1000);
  12.  
  13. connect(mediaObject, SIGNAL(tick(qint64)), this, SLOT(tick(qint64)));
  14. connect(mediaObject, SIGNAL(seekableChanged(bool)), this, SLOT(seekableChanged(bool)));
  15. connect(mediaObject, SIGNAL(finished()), this, SLOT(onVideoPlayFinished()) );
  16.  
  17. mediaObject->play();
To copy to clipboard, switch view to plain text mode 

when I use videoPlayer->seek(n) or move it manually in the gui and the url (streming from internet) is a .mp4 the slider works, when its a .flv the video restarts. But when the .flv is stored on the hd it works as expected.
The seekableChanged always return true.

thanks for any suggestions
regards
Marco