Created
September 4, 2019 19:12
-
-
Save Lucassifoni/25d48e03b6f9553de1205d39a0005a32 to your computer and use it in GitHub Desktop.
Convert X to mp3s in a folder
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
| find . -name "*.wav" -exec ffmpeg -i {} -ab 160k -map_metadata 0 -id3v2_version 3 {}.mp3 \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment