Command-Line

如何使用 VLC 重新流式傳輸過濾的影片流?

  • August 6, 2014

我有一個輸入 RTSP 流,我想在 http 上流式傳輸之前應用“卡通”漸變過濾器。我已經設法流式傳輸並將過濾器應用於本地播放,但 http 流沒有應用過濾。

cvlc -vvv input_stream rtsp://10.217.12.20:554/axis-media/media.amp?videocodec=h264 --video-filter "gradient{type=1}" --sout '#duplicate{dst=http{vfilter=gradient{type=1},mux=ffmpeg{mux=flv},dst=:8080/coffeecam},dst=display}'

我設法讓它工作:

cvlc -vvv --daemon --pidfile ./coffee_stream.pid rtsp://10.217.112.30:554/axis-media/media.amp?videocodec=h264 --sout="#transcode{vfilter=gradient{type=1},vcodec=theo,acodec=vorb,vb=800,ab=128}:standard{access=http{mime=video/ogg},mux=ogg,dst=:8091}"

引用自:https://unix.stackexchange.com/questions/115762