Skip to content

Instantly share code, notes, and snippets.

@hsali
Created November 16, 2016 16:15
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 hsali/cdb27ebeb53cee59607b0fee46fc85f0 to your computer and use it in GitHub Desktop.
Save hsali/cdb27ebeb53cee59607b0fee46fc85f0 to your computer and use it in GitHub Desktop.
mp4 file conversion to mp3 using ffmpeg commandline utility
#!/bin/bash
ffmpeg -i ${1} -f mp3 -ab 192000 -vn ${2}
@hsali
Copy link
Author

hsali commented Nov 18, 2016

 install ffmpeg if you don't have. 

   sudo apt-get install ffmpeg 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment