带 qt 声子的视频播放器(使用 python)
我正在 Windows xp 上工作,并试图运行一个简单的视频播放器。
我正在尝试为此使用 Phonon::VideoPlayer 模块。我将信号连接为
connect(self.player,SIGNAL("finished()"),self.player.deleteLater)
然后,当按下“播放”按钮时,它会发出以下调用:
self.player.play(Phonon.MediaSource("C:\\vid.mp4"))
但是,这不会在视频播放器小部件中显示视频。我也听不到声音。有人可以帮忙吗?
我尝试使用不同的视频文件格式,但没有成功。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试通过写入
来转义
\
Try writing
to escape the
\
尝试创建像这样的媒体源以及其他声子对象。
Try creating media sources like this and also other Phonon objects..