FFMPEG Links

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..?!

** Importantly: FFMPEG index

Additional Resources: