Created
November 16, 2016 16:15
-
-
Save hsali/cdb27ebeb53cee59607b0fee46fc85f0 to your computer and use it in GitHub Desktop.
mp4 file conversion to mp3 using ffmpeg commandline utility
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
#!/bin/bash | |
ffmpeg -i ${1} -f mp3 -ab 192000 -vn ${2} |
Author
hsali
commented
Nov 18, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment