A very usefull oneliner to batch converto to *.mp3 a folder full of *.flac files using FFmpeg.
Get-ChildItem -Filter *.flac | ForEach-Object { & ".\ffmpeg.exe" -i $_.FullName -ab 320k -map_metadata 0 -id3v2_version 3 "$($_.BaseName).mp3" }
A very usefull oneliner to batch converto to *.mp3 a folder full of *.flac files using FFmpeg.
Get-ChildItem -Filter *.flac | ForEach-Object { & ".\ffmpeg.exe" -i $_.FullName -ab 320k -map_metadata 0 -id3v2_version 3 "$($_.BaseName).mp3" }