Use mpdecimate ffmpeg video filter for encoding GIFs #8233
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When there is no activity in a GIF there is still a new frame generated every 1/framerate seconds. At the default recording of 15 FPS this means that a new frame is generated and stored in the file every 6/100 or 7/100 of a second. If nothing changed between the two frames, it is more efficient to extend the duration of the first frame and drop the second. This is what ffmpeg's mpdecimate filter does.
For more info see https://trembit.com/blog/ffmpeg-mpdecimate-filter-for-dummies/