Linux

Linux Headless Server 音頻播放器 RTP 流

  • June 14, 2020

我正在使用 ffmpeg 將音頻從 linux 伺服器(192.168.0.10)流式傳輸到無頭客戶端。

ffmpeg -i INPUT -acodec libmp3lame -ar 11025 --f rtp rtp://192.168.0.100:1234

在無頭客戶端上,我試圖在命令行上使用 vlc 播放流。

cvlc rtp://192.168.0.10:1234

我收到一個錯誤

inhibit interface error: Failed to connect to the D-Bus session daeon: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11

我在客戶端上安裝了 ffmpeg,現在使用 ffplay 沒有這樣的顯示:

ffplay -nodisp rtp://192.168.0.10:1234

引用自:https://serverfault.com/questions/942554