According to the FFMPEG docs, the old cropping and padding syntax is no longer supported:
-croptop size -cropbottom size -cropleft size -cropright size
All the crop options have been removed. Use -vf crop=width:height:x:y instead.
-padtop size -padbottom size -padleft size -padright size -padcolor hex_color
All the pad options have been removed. Use -vf pad=width:height:x:y:color instead.
I'm coding a simple wrapper around FFMPEG and I would like to know if there is any straightfoward way to detect if I should use the new -vf
syntax or not.
I've installed the latest ffmpeg package (version SVN-r0.5.1-4:0.5.1-1ubuntu1) via aptitude but it still doesn't seem to support the new syntax, so I've no idea what to look for... Any help is appreciated!