我有一个物联网项目,我在树莓派零号上使用python-3.6
,在GUI上使用tkinter
。
Pi始终在具有直接HDMI(omxplayer
)的电视上播放视频。
问题:
我需要打开一个tkinter
GUI窗口以连接wifi,但GUI显示索引低于omxplayer
屏幕。
我想要什么 我想在omxplayer屏幕上方显示GUI,以连接Wi-Fi。
我尝试过:
1 root.wm_attributes("-topmost", 1)
#Not working wm is not defined
2 root.overridedirect(1)
root.wm_attributes("-topmost", 1)
#Window is jumping on top of every other applications but not over omxplayer.
3 root.attributes("-topmost", 1)
#Window is jumping on top of every other applications but not over omxplayer.
4 root.lift()
#Not working
答案 0 :(得分:1)
我得到了一个解决方案,尽管它不是有效的解决方案。
我做了什么?
而不是将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()
答案 1 :(得分:1)
感谢我们在树莓派中使用的这项权利