0

我有一个物联网项目,我python-3.6在树莓派零和tkinterGUI 上使用。

Pi 始终通过直接 HDMI ( omxplayer) 在电视上播放视频。

问题: 我需要打开一个tkinterGUI 窗口来连接 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
4

1 回答 1

0

我得到了一个解决方案,虽然它不是一个有效的解决方案。

我做了什么 ?

而不是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()

于 2019-04-19T05:29:21.483 回答