Using two video filters on command line
Posted: 31 Mar 2013 17:00
How do I use two video filters at the same time on command line? I can get it to work using the GUI, but need command line options.
This rotates 270 degrees. Good.
This crops the top. Good.
This just transforms but doesn't crop. Not good.
This just crops, but doesn't transform. Not good.
How do I use two filters at the same time?
This rotates 270 degrees. Good.
Code: Select all
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" http://192.168.1.116:8081/playlist.m3u --video-filter=transform --transform-type=270
Code: Select all
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" http://192.168.1.116:8081/playlist.m3u --video-filter=croppadd --croppadd-croptop=300
Code: Select all
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" http://192.168.1.116:8081/playlist.m3u --video-filter=transform,croppadd --transform-type=270 --croppadd-croptop=300
Code: Select all
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" http://192.168.1.116:8081/playlist.m3u --video-filter=croppadd,transform --transform-type=270 --croppadd-croptop=300