piersbow / Nautilus-File-Converter

Nautilus File Converter is an extension for nautilus that adds file conversion options to a files context menu, it is written in Python
https://bowater.org/projects/nautilus-file-converter/
GNU General Public License v3.0
9 stars 2 forks source link

Conversion to mp4 may fail with #4

Closed watzon closed 1 year ago

watzon commented 1 year ago

Conversion to mp4 was failing, so I ran the video through ffmpeg manually and ended up getting "width not divisible by 2". The problem is solvable by applying the following flag to ffmpeg:

-vf "pad=ceil(iw/2)*2:ceil(ih/2)*2"