Skip to content

Instantly share code, notes, and snippets.

@CyberGX
Created November 2, 2018 17:02
Show Gist options
  • Select an option

  • Save CyberGX/80024cc9456643f71d8ae69ce3f2cdd5 to your computer and use it in GitHub Desktop.

Select an option

Save CyberGX/80024cc9456643f71d8ae69ce3f2cdd5 to your computer and use it in GitHub Desktop.
brew install libvpx
brew install ffmpeg --with-fdk-aac --with-tools --with-freetype --with-libass --with-libvorbis --with-libvpx --with-x265
# Convert MP4 to Webm
ffmpeg -i video.mp4 -strict -2 video.webm
# Merge Audio and Video
ffmpeg -i video.mp4 -i audio.mp3 -c copy -shortest output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment