这是我的尝试:
[Unit]
Description=play the a team song
[Service]
ExecStart=/usr/bin/mpg123 /home/pi/Music/the_a_team.mp3
RuntimeMaxSec=10
这首歌播放21秒后停止播放。我不明白。 我也没有找到另一个解决方案,就像告诉mpg123在前n秒播放一样。请帮我。任何解决办法都没问题。
答案 0 :(得分:0)
试试这个:
[Unit]
Description=play the a team song
[Service]
ExecStart=/usr/bin/ffplay /home/pi/Music/the_a_team.mp3 -t 10 -autoexit -nodisp
请注意,ffplay是ffmpeg包的一部分。