Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将应用程序的音频输出广播到 Adobe FMS、Red5 或 IceCast 等媒体服务器。
是否有可以帮助我完成此任务的工具,或者可以帮助在 linux/windows 中构建自定义解决方案的库?
谢谢。
ffmpeg 是一个很好的选择,转码和馈送到其他流媒体服务器是它的亮点,目前我正在使用以下命令将 RTMP 流转码为原始 RGB24 格式的 16x9 像素,同时还删除音频通道[s]:
ffmpeg -re -i http://192.168.99.148:8081/ -an -vf scale=16:9 -pix_fmt rgb24 -f rawvideo udp://127.0.0.1:4000
当然,可能性是无限的,如果您可以提供有关您的案例的更具体信息,我也许可以帮助您构建所需的命令。