ffmpeg 将音频文件流式传输到 Telegram rtmp 服务器
我尝试使用以下命令将 mp3 文件流式传输到 Telegram RTMP live:
ffmpeg -re -i 1.mp3 -c copy -f mp3 rtmps://dc4-1.rtmp.t.me/s/145158:AtyF3rrME2nHEkqGA
但我听不到流中的任何声音。
I tried to stream an mp3 file to a Telegram RTMP live using the following command:
ffmpeg -re -i 1.mp3 -c copy -f mp3 rtmps://dc4-1.rtmp.t.me/s/145158:AtyF3rrME2nHEkqGA
But I couldn't hear any sound in the stream.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该明确指定编解码器。
以下是最简单的工作命令:
这是来自 @tgbeta 的更高级示例:
You should specify the codecs explicitly.
The following is the simplest working command:
Here is a more advanced example from @tgbeta:
将
-f mp3
更改为-f flv
。例子:
Change
-f mp3
by-f flv
.Example: