howto crop?
Posted: 17 Mar 2011 14:26
[UPDATE] Crop seems broken since 1.1.x: check progress on ticket 3941
If I use vlc's command-line I can crop a video-file by entering something like.
I don't seem to get this working when I use libvlc_media_add_option(...)
I have tried this, but since crop is a video-out-filter, I also tried stuff like
but none of them work. Does anyone know what I am doing wrong, and how I could crop using LibVLC and the add_option functions?
Thanks.
If I use vlc's command-line I can crop a video-file by entering something like
Code: Select all
vlc.exe video.avi --crop='20x20+10+10'
I don't seem to get this working when I use libvlc_media_add_option(...)
I have tried this, but since crop is a video-out-filter, I also tried stuff like
Code: Select all
vout-filter=crop{crop-geometry='20x20+10+10'}
or
vout-filter=crop{geometry='20x20+10+10'}
or
video-filter=crop
Thanks.