From here.
Use the following command to convert the “flac” format audio files into the “mp3” format, with keeping the metadata.
1 | for file in *.flac; do ffmpeg -i $file -ab 320k -map_metadata 0 -id3v2_version 3 ${file:r}.mp3; done |
From here.
Use the following command to convert the “flac” format audio files into the “mp3” format, with keeping the metadata.
1 | for file in *.flac; do ffmpeg -i $file -ab 320k -map_metadata 0 -id3v2_version 3 ${file:r}.mp3; done |