Announcement

Collapse
No announcement yet.

batch convert with ffmpeg

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    batch convert with ffmpeg

    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
    Code:
    for f in *.flac
          do 
          ffmpeg -i "$f" -b 320k "${f%.flac}.mp3"
    done
    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
    i7 4core HT 8MB L3 2.9GHz
    16GB RAM
    Nvidia GTX 860M 4GB RAM 1152 cuda cores
Working...
X