Created
September 7, 2017 08:58
-
-
Save szydan/cbdf1e69667d64ba9fad62eae61b3469 to your computer and use it in GitHub Desktop.
ffmpeg convert aiff to mp3
This file contains 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.aiff -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 output.mp3 |
Thank you
thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you