我得到了一个解决方案,虽然它不是一个有效的解决方案。
我做了什么 ?
而不是tkinter GUI
在顶部我只是绑定热键ctrl+j
来隐藏omxplayer
屏幕和ctrl+k
显示屏幕。
from omxplayer.player import OMXPlayer
import omxplayer.keys
import codecs
from pynput import keyboard
import threading
xpress = False
# The key combination to check
COMBINATIONS = [
{keyboard.Key.ctrl, keyboard.KeyCode(char='j')},
{keyboard.Key.ctrl, keyboard.KeyCode(char='J')},
{keyboard.Key.ctrl, keyboard.KeyCode(char='k')},
{keyboard.Key.ctrl, keyboard.KeyCode(char='K')}
]
# The currently active modifiers
current = set()
def execute(key):
keys = str(key).replace("'", "")
print ("Do Something", keys)
if keys == 'j':
global xpress
xpress = True
print(xpress)
else:
xpress = False
print(xpress)
def on_press(key):
if any([key in COMBO for COMBO in COMBINATIONS]):
current.add(key)
if any(all(k in current for k in COMBO) for COMBO in COMBINATIONS):
execute(key)
def on_release(key):
if any([key in COMBO for COMBO in COMBINATIONS]):
current.remove(key)
def ThKeyboad():
with keyboard.Listener(on_press=on_press, on_release=on_release) as listener:
listener.join()
t1 = threading.Thread(target=ThKeyboad, args=[])
t1.start()
#OMXPlayer Code
player = OMXPlayer('/home/pi/outhum/video/default.mp4', dbus_name='org.mpris.MediaPlayer2.omxplayer2')
if xpress:
player.hide_video()
else:
player.show_video()
a = player.duration()
time.sleep(a)
player.quit()