Created
October 18, 2021 00:27
-
-
Save xDShot/25b5fb114a51a651492d70217833fc28 to your computer and use it in GitHub Desktop.
ffmpeg convert for youtube
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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