Loading more results

This is an old revision of the document!


mp3 to flac

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.mp3"; done

This theme is made by desbest and Jessica Russell Flint

terminal/mp3toflac.1723949562.txt.gz ยท Last modified: 2024/08/18 02:52 by melo