ffmpeg

  • 2023
  • 09. May 2023 FFmpeg - Convert MP4 video to GIF
  • FFmpeg command to convert an MP4 video to a GIF file: ffmpeg -i input.mp4 \ -filter_complex \ "[0:v] fps=10,scale=320:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" \ output.gif This

  • 20. Nov 2023 FFmpeg - Convert MOV video to MP4
  • FFmpeg command to convert MOV video to MP4 video: ffmpeg -i input.mov \ -vf "scale=-1:720" \ -c:v libx264 \ -crf 23 \ -c:a aac \ -b:a 192k \ output.mp4 This will convert mov to mp4 by sc