Python vlc 绑定无法正常工作
Python bindings for vlc don't working propetly
如果我跳到毫秒,vlc跳到毫秒+190
# VLC player controls
self.Instance = vlc.Instance()
self.player = self.Instance.media_player_new()
# OpenFile
self.OnStop(None)
# Creation
self.Media = self.Instance.media_new(unicode("10min.mp4"))
self.player.set_media(self.Media)
# Report the title of the file chosen
# set the window id where to render VLC's video output
self.player.set_hwnd(self.videopanel.GetHandle())
self.player.set_time(200)
它跳到 390 等,所以我做了简单的解决方法:
self.player.set_time(时间 - 190)
但如果时间 < 190 我有例外......
有人遇到过 vlc 绑定的问题吗?
我想 VLC 可能只针对特定媒体类型在关键帧之间跳转。
不是 python 绑定不能正常工作,而是 VLC,我不知道为什么,但是 VLC 会跳过那些额外的 190 毫秒。
你可以下载一些插件,让你看到毫秒,我用的是第四秒,然后让插件获取时间,它给出了 4.190...
如果我跳到毫秒,vlc跳到毫秒+190
# VLC player controls
self.Instance = vlc.Instance()
self.player = self.Instance.media_player_new()
# OpenFile
self.OnStop(None)
# Creation
self.Media = self.Instance.media_new(unicode("10min.mp4"))
self.player.set_media(self.Media)
# Report the title of the file chosen
# set the window id where to render VLC's video output
self.player.set_hwnd(self.videopanel.GetHandle())
self.player.set_time(200)
它跳到 390 等,所以我做了简单的解决方法: self.player.set_time(时间 - 190)
但如果时间 < 190 我有例外...... 有人遇到过 vlc 绑定的问题吗?
我想 VLC 可能只针对特定媒体类型在关键帧之间跳转。
不是 python 绑定不能正常工作,而是 VLC,我不知道为什么,但是 VLC 会跳过那些额外的 190 毫秒。 你可以下载一些插件,让你看到毫秒,我用的是第四秒,然后让插件获取时间,它给出了 4.190...