#ffmpeg question about frames

4 messages · Page 1 of 1 (latest)

sage cairn
#

Hi guys, I have a question related to ffmpeg: Is there a way to make to make this command ffmpeg -i valorant.mp4 FramesValorant/frame%04d.png to create less amounts of .png's to make the .gif speed a little bit faster?

I'm using this command on top and afterwards running gifski -o valorant.gif FramesValorant/frame*.png to transform the sequence to a .gif using gitski

soft mason
#

reduce the video framerate using ffmpeg -i valorant.mp4 -r 60 -c:a copy "valorant60.mp4" (the -r is the fps and u can change it and the file name is in the speech marks)

sage cairn
#

got it ❤️
ffmpeg -i valorant.mp4 -r 24 -c:a copy "valorant60.mp4"
ffmpeg -i valorant60.mp4 FramesValorant/frame%04d.png
gifski -o valorant9.gif FramesValorant/frame*.png