views:

573

answers:

2

hi,

I am working on Windows xp and am trying to get a simple video player running.

I am trying to use Phonon::VideoPlayer module for this. I am connecting the signal as

connect(self.player,SIGNAL("finished()"),self.player.deleteLater)

and then , when the Play button is pressed, it makes the following call:

self.player.play(Phonon.MediaSource("C:\\vid.mp4"))

But, this doesn't display the video in the video player widget. Neither can I hear audio. Can anyone help??

I tried using different video file formats but no luck.

A: 

Try writing

self.player.play(Phonon.MediaSource("C:\\vid.mp4"))

to escape the \

Rupert Jones
actually, in my code, I am doing `os.path.normpath('C:\vid.mp4')`. So that is not the cause. (I didn't mention that to keep it simple, now updating the filepath)
cppb
A: 
Phonon::MediaSource mediaSource= Phonon::MediaSource("C:\\vid.mp4");

Try creating media sources like this and also other Phonon objects..

liaK