Page 1 of 1

Video rotate on commandline

Posted: 27 Dec 2013 00:38
by e-San
Hi!

I'm trying to strema webcam over network, but i'm unable to rotate video.

commands i tried:

Code: Select all

442 vlc -I dummy v4l2:///dev/video2:width=320:height=240 :vout-filter=transform :transform-type=270 --sout '#standard{access=http,mux=asf,dst=:8080}' 443 vlc -I dummy v4l2:///dev/video2:width=320:height=240 :vout-filter=transform :transform-type=180 --sout '#standard{access=http,mux=asf,dst=:8080}' 444 vlc -I dummy v4l2:///dev/video2:width=320:height=240 --video-filter=transform{type=180} --sout '#standard{access=http,mux=asf,dst=:8080}' 445 vlc -I dummy v4l2:///dev/video2:width=320:height=240 --rotate-angle=180 --sout '#standard{access=http,mux=asf,dst=:8080}' 446 vlc -I dummy v4l2:///dev/video2:width=320:height=240 --video-filter="rotate" --rotate-angle=180 --sout '#standard{access=http,mux=asf,dst=:8080}'
anything more i can try?

Regards!

Re: Video rotate on commandline

Posted: 27 Dec 2013 12:15
by RĂ©mi Denis-Courmont
You need to transcode if you want to rotate video for streaming.

Re: Video rotate on commandline

Posted: 27 Dec 2013 13:33
by e-San
Thanks!