Created
April 25, 2026 18:25
-
-
Save WhiteHusky/dc5ecd68099c25ca3b5bf624c64f06e0 to your computer and use it in GitHub Desktop.
Example eicon Transcoding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| crop=w=300:h=600:x=118:y=0,scale=100:200,split[r1][r2]; | |
| [r1]palettegen=max_colors=32:reserve_transparent=false[p]; | |
| [r2][p]paletteuse,split=2[f1][f2]; | |
| [f1]crop=100:100:0:0[1]; | |
| [f2]crop=100:100:0:100[2] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ffmpeg -i e49c9c522b70666df85d508582ebecc8.gif \ | |
| -/filter_complex filter.txt \ | |
| -map "[1]" out.1.gif \ | |
| -map "[2]" out.2.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment