Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

Creating an Animated GIF using FFmpeg

FFmpeg Notes: https://www.rickmakes.com/ffmpeg-notes/

FFmpeg playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZOPDZ71Khzt5PX4X4j6flkg

Play Video Starting at 1 minute 2 seconds for 30 seconds
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffplay -ss 00:01:02 -t 00:00:30 train_original.mp4
ffplay -ss 00:01:02 -t 00:00:30 train_original.mp4
ffplay -ss 00:01:02 -t 00:00:30 train_original.mp4
Scale Video (smaller) and Lower Framerate
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -i train_original.mp4 -ss 00:01:02 -t 00:00:30 -vf "fps=10,scale=320:-1" -an train_sm.mp4
ffmpeg -i train_original.mp4 -ss 00:01:02 -t 00:00:30 -vf "fps=10,scale=320:-1" -an train_sm.mp4
ffmpeg -i train_original.mp4 -ss 00:01:02 -t 00:00:30 -vf "fps=10,scale=320:-1" -an train_sm.mp4
Create 256 Color Palette from Video
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -i train_sm.mp4 -vf palettegen palette.png
ffmpeg -i train_sm.mp4 -vf palettegen palette.png
ffmpeg -i train_sm.mp4 -vf palettegen palette.png
Create Animated GIF using Scaled Video and Color Palette
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -i train_sm.mp4 -i palette.png -filter_complex "fps=10,scale=320:-1[x];[x][1:v]paletteuse" train.gif
ffmpeg -i train_sm.mp4 -i palette.png -filter_complex "fps=10,scale=320:-1[x];[x][1:v]paletteuse" train.gif
ffmpeg -i train_sm.mp4 -i palette.png -filter_complex "fps=10,scale=320:-1[x];[x][1:v]paletteuse" train.gif
Create Timer Video
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -f lavfi -i color=white@0.0:s=240x96,format=rgba -ss 00:00:00 -t 00:01:00 -vf "drawtext=fontfile=/System/Library/Fonts/Monaco.dfont:text='%{pts\:gmtime\:0\:%M\\\:%S}':fontcolor=white:fontsize=64:x=(w-tw)/2:y=(h-th)/2" -vcodec prores_ks timer_prores.mov
ffmpeg -f lavfi -i color=white@0.0:s=240x96,format=rgba -ss 00:00:00 -t 00:01:00 -vf "drawtext=fontfile=/System/Library/Fonts/Monaco.dfont:text='%{pts\:gmtime\:0\:%M\\\:%S}':fontcolor=white:fontsize=64:x=(w-tw)/2:y=(h-th)/2" -vcodec prores_ks timer_prores.mov
ffmpeg -f lavfi -i color=white@0.0:s=240x96,format=rgba -ss 00:00:00 -t 00:01:00 -vf "drawtext=fontfile=/System/Library/Fonts/Monaco.dfont:text='%{pts\:gmtime\:0\:%M\\\:%S}':fontcolor=white:fontsize=64:x=(w-tw)/2:y=(h-th)/2" -vcodec prores_ks timer_prores.mov

https://www.rickmakes.com/creating-an-elapsed-timer-using-ffmpeg/

Reverse Timer Video (for countdown timer)
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -i timer_prores.mov -vf reverse timer_reverse.mov
ffmpeg -i timer_prores.mov -vf reverse timer_reverse.mov
ffmpeg -i timer_prores.mov -vf reverse timer_reverse.mov
Create 256 Palette
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -i timer_prores.mov -vf palettegen palette.png
ffmpeg -i timer_prores.mov -vf palettegen palette.png
ffmpeg -i timer_prores.mov -vf palettegen palette.png
Create Animated GIF Timer
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ffmpeg -i timer_prores.mov -i palette.png -filter_complex "fps=10,scale=240:-1[x];[x][1:v]paletteuse" timer.gif
ffmpeg -i timer_prores.mov -i palette.png -filter_complex "fps=10,scale=240:-1[x];[x][1:v]paletteuse" timer.gif
ffmpeg -i timer_prores.mov -i palette.png -filter_complex "fps=10,scale=240:-1[x];[x][1:v]paletteuse" timer.gif

Leave a comment

Your email address will not be published. Required fields are marked *