VLC stream to MP4 WEBM and Flash

时光毁灭记忆、已成空白 提交于 2019-12-06 14:29:31

To stream WebM you can use the following command (worked on arch linux setup)

cvlc \
$source \
--sout '#transcode{vcodec=VP80,vb=2000,scale=0,channels=2,samplerate=44100}:std{access=http{mime=video/webm},mux=webm,dst=:8080/cam1}' \
-vvv

Although this (webm) is not officially supported. See these supported formats matrices

For the documentation of sout params please see the official page

As for MP4:

It is not supported at all

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!