我使用库https://github.com/jaseg/python-mpv控制mpv播放器,但当它与pyside6一起使用时,密钥绑定不起作用(播放器不完全接受输入(。我做错了什么?或者在pyside6中嵌入时不可能使用它们?(如果我在没有嵌入的情况下用相同的参数运行播放器,一切都很好(
import os
os.add_dll_directory(os.getcwd())
import mpv
from PySide6.QtWidgets import *
from PySide6.QtCore import *
mpvfolderpath = f"mpv.net/portable_config/"
import sys
class Test(QMainWindow):
def __init__(self, parent=None):
super().__init__(parent)
self.container = QWidget(self)
self.setCentralWidget(self.container)
self.container.setAttribute(Qt.WA_DontCreateNativeAncestors)
self.container.setAttribute(Qt.WA_NativeWindow)
player = mpv.MPV(wid=str(int(self.container.winId())),
vo="gpu", # You may not need this
log_handler=print,
loglevel='debug',
input_default_bindings=True,
input_vo_keyboard=True)
@player.on_key_press('f')
def my_f_binding():
print("f работает!")
player.play('test.mp4')
app = QApplication(sys.argv)
# This is necessary since PyQT stomps over the locale settings needed by libmpv.
# This needs to happen after importing PyQT before creating the first mpv.MPV instance.
import locale
locale.setlocale(locale.LC_NUMERIC, 'C')
win = Test()
win.show()
sys.exit(app.exec_())
如果没有处理键盘(在我的测试中,只有当鼠标悬停在视频上时才会发生这种情况(,键事件就会传播到Qt窗口。这意味着我们可以在keyPressEvent()
覆盖中处理这些事件,然后创建一个正确的mpv命令,该命令已经映射到keypress()
函数。显然,对播放器的引用必须存在,因此需要将其作为实例属性。
对于标准文字键,通常使用事件的text()
就足够了,但对于其他键(如箭头(,您需要将事件与mpv的键名映射。使用字典当然更简单:
MpvKeys = {
Qt.Key.Key_Backspace: 'BS',
Qt.Key.Key_PageUp: 'PGUP',
Qt.Key.Key_PageDown: 'PGDWN',
Qt.Key.Key_Home: 'HOME',
Qt.Key.Key_End: 'END',
Qt.Key.Key_Left: 'LEFT',
Qt.Key.Key_Up: 'UP',
Qt.Key.Key_Right: 'RIGHT',
Qt.Key.Key_Down: 'DOWN',
# ...
}
class Test(QMainWindow):
def __init__(self, parent=None):
# ...
self.player = mpv.MPV(...)
def keyPressEvent(self, event):
# look up for the key in our mapping, otherwise use the event's text
key = MpvKeys.get(event.key(), event.text())
self.player.keypress(key)
注意:在我的测试中,我必须使用vo='x11'
标志才能正确嵌入窗口,并且osc=True
也需要使用本机OSD。