Video to Images and back in ffmpeg!
programming.dev
Video to Images and back in ffmpeg!
I used this today to try and find a frame showing a blinking error dialog, but wasnt successful, anyways here it is! sh ffmpeg -i video.mp4 -r 30 frame%d.png - -r is the FPS - the %d is a nice iterator, works in fish and bash apparently ## Images to video Useful for timelapses! sh #!/bin/sh fps=10 ffmpeg \ -framerate $fps \ -pattern_type glob \ -i '*.jpg' \ -c:v libsvtav1 \ -crf 20 -preset 6 \ -vf "scale=-2:1080" \ timelapse.mp4
0 comments
No comments yet.