Loading more results

This is an old revision of the document!


flac to mp3

one off:

ffmpeg -i "file.flac" -ab 320k -map_metadata 0 -id3v2_version 3 "file.mp3"

bash loop:

for f in *.flac; do ffmpeg -i "$f" -ab 320k -map_metadata 0 -id3v2_version 3 "$f"; done

This theme is made by desbest and Jessica Russell Flint

terminal/mp3toflac.1724171801.txt.gz ยท Last modified: 2024/08/20 16:36 by melo