Skip to content

Instantly share code, notes, and snippets.

@xDShot
Created October 18, 2021 00:27
Show Gist options
  • Save xDShot/25b5fb114a51a651492d70217833fc28 to your computer and use it in GitHub Desktop.
Save xDShot/25b5fb114a51a651492d70217833fc28 to your computer and use it in GitHub Desktop.
ffmpeg convert for youtube
#!/bin/bash
# https://video.stackexchange.com/questions/24479/how-to-encode-for-youtube-with-ffmpeg
ffmpeg -framerate 60 -i vidname_%04d.jpg -i vidname_.WAV -ss 00:00:10 -vf yadif,format=yuv422p -force_key_frames expr:gte\(t\,n_forced/2\) -c:v libx264 -b:v 60M -bf 2 -c:a aac -q:a 1 -ac 2 -ar 44100 -use_editlist 0 -movflags +faststart vidname.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment