FFMPEG SRT 视频只发送音频到 icecast
FFMPEG SRT video send only audio to icecast
所以我知道使用 FFMPEG 您可以阅读 srt://
现在我现在您还可以拍摄视频并将其转换为音频。
但是我们遇到的问题是
- 我们不知道如何只将视频中的音频
srt
发送到 icecast 服务器
icecast 的示例 RMPT 流:
ffmpeg -re -i rtmp://192.168.22.12/live/live1 -vn \
-codec:a libmp3lame -b:a 64k -f mp3 \
-content_type audio/mpeg \
icecast://source:pass@example.com:8000/mountpoint.mp3
ffmpeg -i srt://hostname:port -vn \
-codec:a libmp3lame -b:a 64k -f mp3 \
-content_type audio/mpeg \
icecast://source:pass@example.com:8000/mountpoint.mp3
- 需要
ffmpeg
与 --enable-libsrt
一起编译。
- 见FFmpeg SRT protocol documentation and FFmpeg icecast protocol documentation。
所以我知道使用 FFMPEG 您可以阅读 srt://
现在我现在您还可以拍摄视频并将其转换为音频。
但是我们遇到的问题是
- 我们不知道如何只将视频中的音频
srt
发送到 icecast 服务器
icecast 的示例 RMPT 流:
ffmpeg -re -i rtmp://192.168.22.12/live/live1 -vn \
-codec:a libmp3lame -b:a 64k -f mp3 \
-content_type audio/mpeg \
icecast://source:pass@example.com:8000/mountpoint.mp3
ffmpeg -i srt://hostname:port -vn \
-codec:a libmp3lame -b:a 64k -f mp3 \
-content_type audio/mpeg \
icecast://source:pass@example.com:8000/mountpoint.mp3
- 需要
ffmpeg
与--enable-libsrt
一起编译。 - 见FFmpeg SRT protocol documentation and FFmpeg icecast protocol documentation。