Last active
April 1, 2021 20:58
-
-
Save TheEpicFace007/efda63efaddcdd21231433106ae1140d to your computer and use it in GitHub Desktop.
convert all flac in directory to a mp3 with 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
| mkdir output | |
| foreach ($file in ls) { | |
| $fixedName = (".\output\" + $file.Name.Replace($file.Extension, "") + ".mp3") | |
| ffmpeg -i "$file" $fixedName | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment