Last active
July 23, 2017 13:17
-
-
Save vjk2005/e04c70159983a45e92d85b297ec066ef to your computer and use it in GitHub Desktop.
Extract audio from video using FFmpeg
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
ffmpeg -i <input.mkv> -q:a 0 -map a output.mp3 | |
# -q:a flag sets VBR encoding. 0 is hightest quality 320kbps. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment