I'm trying to use VLC for streaming from webcam. Unfortunately, I have to install the webcam upside down, so I'd like to make VLC to rotate the picture upside down. However, I cannot find a way to apply "transform" filter to stream output.
From the command line, I tried:
Code: Select all
"C:\Program Files\VideoLAN\VLC\vlc.exe" -v -I rc --ttl 5 dshow:// :dshow-size="320x240" :dshow-fps=15 --time-size=20 --transform-type=180 --sout=#transcode{vcodec=DIV3,vb=512,scale=1,fps=15,acodec=mpga,ab=96,samplerate=22050,audio-
sync,vfilter=transform,sfilter=time}:std{access=udp,mux=ts,url=239.255.1.1:1234}
Code: Select all
[00000291] main private warning: no video filter2 module matching "transform" could be loaded
Is this a bug of VLC, or just a silly mistake of mine? Please help me. Any information is appreciated.
ps. Of course I can apply transform filter to the client-side VLC, but in that case, the timestamp from sfilter=time is showed upside down...