Converting gif files to mp4
How I converted the Opus Magnum replay files to mp4.
for f in *.gif
ffmpeg -i $f -movflags faststart -pix_fmt yuv420p \
-vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" $f.mp4
end
How I converted the Opus Magnum replay files to mp4.
for f in *.gif
ffmpeg -i $f -movflags faststart -pix_fmt yuv420p \
-vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" $f.mp4
end