Wednesday, December 14, 2022

How to convert videos to GIF and then to animated JPEG XL

Steps to convert a part of a video to gif and then to animated jxl (JPEG XL):

ffmpeg -y -i movie.webm -ss 1:20 -to 1:26 -c copy clip.webm
mkdir output
ffmpeg -i clip.webm -vf scale=640:-1 -r 10 output/ffout%3d.png
convert -delay 8 -loop 0 output/ffout*.png clip-coarse.gif
convert -layers Optimize clip-coarse.gif clip.gif
cjxl clip.gif clip.jxl
rm -rf output clip-coarse.gif

Links

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.