FFMPEG Further prompts & resources
Stack Overflow – forum for help & shared solutions
- Make a video out of your captures!
-
ffmpeg -r 15 -f image2 -s 1280x720 -i pic%04d.jpg -vcodec libx264 -crf 15 -pix_fmt yuv420p test.mp4
-r
is the framerate (fps)-crf
is the quality, lower means better quality, 15-25 is usually good-s
is the resolution-pix_fmt yuv420p
specifies the pixel format, change this as needed
-
- Add Audio to your video!
-
ffmpeg -i video.mp4 -i audio.mp3 -map 0 -map 1:a -c:v copy -shortest output.mp4
-
- How to make a Gif from a video
- Important resource for adjusting gif quality and color!
- Possibility! Video to OBJ..?!
- Photogrammetry workflow for FFMPEG
- Our friend Claire has created some similar things.
** Importantly: FFMPEG index
Additional Resources:
- Thorough & extensive Youtube FFMPEG help
- Youtube Downloader for all your fair use creative needs.