cppb
cppb

Reputation: 2409

video player with qt phonon (using python)

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.

Upvotes: 1

Views: 3364

Answers (2)

liaK
liaK

Reputation: 11648

Phonon::MediaSource mediaSource= Phonon::MediaSource("C:\\vid.mp4");

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

Upvotes: 0

Mathias Soeken
Mathias Soeken

Reputation: 1303

Try writing

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

to escape the \

Upvotes: 0

Related Questions