Skip to content

Instantly share code, notes, and snippets.

@mkrupczak3
Created August 4, 2020 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkrupczak3/aa169a1a1cefb61129f330e366f551ec to your computer and use it in GitHub Desktop.
Save mkrupczak3/aa169a1a1cefb61129f330e366f551ec to your computer and use it in GitHub Desktop.
# Use ffmpeg to encode an audio file with an image as a video file for use with Youtube
# # https://superuser.com/questions/700419/how-to-convert-mp3-to-youtube-allowed-video-format
ffmpeg -loop 1 -r 1 -i pic.jpg -i audio.mp3 -c:a copy -shortest -c:v libx264 output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment