garysimpson.dev
Mobile development with swift and flutter

Fun With FFMPEG Automation

January 17, 2025 at 8:28AM

Was finally able to finish a script to handle running convert videos into gif files. My use case is pretty much for use on the web. The key to making it work was using FFmpeg to handle the conversion and setting the Automator action Pass input selection to As Arguments. Similar to this other post doing handbrake automation.

Spoiler

Feel free to cheat and download a previously created top four quick actions. Just to make things even easier I added an additional file with all the variations I used to test in the table below. download here

Once it is added right-click on the video in Finder to run the action and skip the creation steps below.



> 320p4Hi (602.2k) vs 640p7Low (885.1k)

> 640p3Hi (1.4mb) vs 1280p4Hi (2mb)




Build You Own

Tools

  • FFmpeg (installed w/ brew install ffmpeg)
  • Automator.app

Steps

  1. FFmpeg): Install using brew install ffmpeg
  1. Automator.app: Create a new quick action.
    • Add single Run Shell Script item.
  1. Automator.app: Update the Run Shell Script with the following script and save.


#!/bin/bash
source ~/.bash_profile

# Requires FFmpeg use `brew install ffmpeg` verify with `ffmpeg --version`
# helpful commands from. https://creatomate.com/blog/how-to-make-a-gif-from-a-video-using-ffmpeg

for file in "$@";
 do
  #echo "Processing file: $file"

	base_name=$(basename "$file" .${file##*.}) # Strip file extension
  
	output_dir=$(dirname "$file")
	output="${output_dir}/${base_name%.*}_320p4.gif"

	#ffmpeg -i $file $output  #Dumbest Larget File  ✓ (Test: 2.5 -> 16mb)

	### 320
	ffmpeg -i $file -vf "fps=4, scale=320:-1[s]; [s]split[a][b]; [a]palettegen[palette]; [b][palette]paletteuse" $output # ✓ (Test: 2.5 -> 602k)

done

Once its all setup you can access the Quick Action using the finder right-click menu.




Data Bonus

I had so much fun testing various configurations I decided to put together a little table of what I found. Click here to download this 2.5mb original video I used in my testing.

I used a few variation of the commands.

  • ffmpeg -i $file -filter_complex "fps=10, scale=720:-1" $output
  • ffmpeg -i $file -vf "fps=4, scale=480:-1[s]; [s]split[a][b]; [a]palettegen[palette]; [b][palette]paletteuse" $output
  • ffmpeg -i $file -vf "fps=7,scale=640:-1:flags=lanczos" $output
  • ffmpeg -i $file -filter_complex "fps=3,scale=640:-1[s]; [s]split[a][b]; [a]palettegen[palette]; [b][palette]paletteuse" $output

ScaleFPSEncode TypeOutput Size
Default-- -16mb
32010paletteuse794k
3204paletteuse602k
48010- -653k
4803paletteuse886k
4804paletteuse1.2mb
4808paletteuse2.2mb
48010paletteuse2.6mb
64010- -658k
6407lanczos885k
6403paletteuse1.4mb
64010lanczos1.1mb
64010paletteuse2.5mb
6408paletteuse3.6mb
7203paletteuse1.7mb
7207- -1.1mb
72010- -1.4mb
72010paletteuse5.4mb
10803- -1.2mb
10804- -1.5mb
10802paletteuse2.4mb
108010- -2.9mb
10803paletteuse3.3mb
10808paletteuse4.7mb
10804paletteuse4.6mb
12804lanczos2.0mb
12802paletteuse3.1mb
12803paletteuse4.3mb

Happy Coding ;-)




Helpful References