答案1
我的解决方案是用 C 语言编写的是我最终选择的。它是一个守护进程,使用低级 DBus API 调用 VLC 上的方法以获取播放状态,并在 VLC 停止时要求其退出。bash 和 python 脚本在作为 Ubuntu 启动应用程序运行时不可靠,而这正是我想要的。如果我没记错的话,bash 和 python 版本必须从终端手动运行才能工作。
猛击使用 GDBus 的解决方案(在我的 Ubuntu 12.04 上默认安装):
#VLC Watchdog Bash Script (vlcwd.sh)
while [ 1 -eq 1 ]
do
if [ "$(pgrep vlc)" != "" ] #if VLC is running
then #get the playback status and save to variable pbs
pbs=$(bash -c 'gdbus call --session \
--dest org.mpris.MediaPlayer2.vlc-$(pgrep vlc) \
--object-path /org/mpris/MediaPlayer2 \
--method org.freedesktop.DBus.Properties.Get \
"org.mpris.MediaPlayer2.Player" \
"PlaybackStatus"')
if [ "$pbs" = "(<'Stopped'>,)" ] #if VLC is stopped
then kill -9 $(pgrep vlc) #then kill it so it doesn't block my screen saver
fi
fi
sleep 5
done
Python
以下是我使用 Python 和模块设置 DBus 查询以获取 VLC 的播放状态的方法python-dbus
:
import dbus
bus = dbus.SessionBus()
vlc_media_player_obj = bus.get_object("org.mpris.MediaPlayer2.vlc", "/org/mpris/MediaPlayer2")
props_iface = dbus.Interface(vlc_media_player_obj, 'org.freedesktop.DBus.Properties')
pb_stat = props_iface.Get('org.mpris.MediaPlayer2.Player', 'PlaybackStatus')