使用 xdotool 发送特殊字符

使用 xdotool 发送特殊字符

我试图在播放曲目时控制 omxplayer 的音量。我可以使用键盘+按键。但是我想使用 python 脚本控制音量。以下脚本通过使用 xdotool 发送 p 来暂停和取消暂停 omxplayer。

xdotool 不接受特殊字符。有办法解决这个问题吗?

当我用p+替换时,出现以下错误:

Error: Invalid key sequence '-'
Failure converting key sequence '-' to keycodes
Error: Invalid key sequence '-'
Failure converting key sequence '-' to keycodes
xdo_send_keysequence_window reported an error for string '-'

这是我正在使用的脚本:

threading.Thread(target=play_clip).start()
print"startng tone"
time.sleep(1)
while a==1:
    print 'ttt'
    time.sleep(1)
    os.system('xdotool key p')
    time.sleep(1)
    os.system('xdotool key p')

答案1

xdotool key minus plus

将模拟击球-+

相关内容