ffmpeg pulseaudio 输出选项(设备)

ffmpeg pulseaudio output options (device)

我需要使用一些documented pulseaudio options for ffmpeg等设备。文档中的示例有效,但仅设置流名称:

ffmpeg -i INPUT -f pulse "stream name"

我有一个名为 playback-device 的接收器,我想使用它。根据文档和谷歌搜索,我尝试了各种选项来指定设备。他们都给出错误(或不起作用):

ffmpeg -i INPUT -f pulse -device playback-device
# At least one output file must be specified

ffmpeg -i INPUT -f pulse -device=playback-device
# Unrecognized option 'device=playback-device'.  Error splitting the argument list: Option not found

ffmpeg -i INPUT -f pulse device=playback-device
# Plays to default device not the specified one

ffmpeg -i INPUT -device playback-device -f pulse
# At least one output file must be specified

设备在那里:

$ pactl list short sinks | grep playback
3       playback-device module-null-sink.c      s16le 2ch 48000Hz       IDLE
ffmpeg -i INPUT -f pulse -device playback-device
# At least one output file must be specified

这告诉您缺少您在工作示例 (ffmpeg -i INPUT -f pulse "stream name") 中的论点。所以正确的命令是:

ffmpeg -i INPUT -f pulse -device playback-device "stream name"

当然,您可以将 "stream name" 替换为任何看起来不像的选项。