Created
November 2, 2018 17:02
-
-
Save CyberGX/80024cc9456643f71d8ae69ce3f2cdd5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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