Linux 无头服务器音频播放器 RTP 流

Linux 无头服务器音频播放器 RTP 流

我正在使用 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

答案1

我在客户端安装了ffmpeg,现在使用ffplay,没有显示,如下:

ffplay -nodisp rtp://192.168.0.10:1234

相关内容