Page 1 of 1

Using two video filters on command line

Posted: 31 Mar 2013 17:00
by jaykup
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.

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
This crops the top. Good.

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
This just transforms but doesn't crop. Not good.

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
This just crops, but doesn't transform. Not good.

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
How do I use two filters at the same time?

Re: Using two video filters on command line

Posted: 31 Mar 2013 17:12
by mederi
--video-filter=transform:croppadd --transform-type=270 --croppadd-croptop=300
Does it work? Or:
--video-filter=transform{type=270}:croppadd{croptop=300}

Re: Using two video filters on command line

Posted: 31 Mar 2013 21:03
by jaykup
Yes, the first one worked perfect. Thank you!