ok so this is for me so I don't forget but some one else may find it useful ....... so you have a bunch of lets say .flac files and you want .mp3's
open a terminal in the directory where the files live (or dolphin with active terminal ((F4)) )and paste this in
hit enter and enjoy your new .mp3's
this will work for just about whatever ,,,just change the file types accordingly & possibly the bitrate (-b)
VINNY
open a terminal in the directory where the files live (or dolphin with active terminal ((F4)) )and paste this in
Code:
for f in *.flac do ffmpeg -i "$f" -b 320k "${f%.flac}.mp3" done
this will work for just about whatever ,,,just change the file types accordingly & possibly the bitrate (-b)
VINNY