Recommended FLAC converter? angielski

I have a collection of music in flac format and now I want to store them on my phone. flac files get too much space and downloading all the playlist in mp3 takes as much time as finding decent and real high quality flacs (there is plenty of songs on internet which only look like 320kbps and are not really high quality). So I decided to convert my flac files into mp3 and I prefer minimum amount of quality loss; what is the best software for it?

  • Doesn’t matter if conversion take some time if the quality would be decent.
sub_,

I dunno, I normally use my bash script + ffmpeg to convert batch flacs to mp3s


<span style="color:#323232;">#!/bin/bash
</span><span style="color:#323232;">
</span><span style="color:#323232;">cd "${1}"
</span><span style="color:#323232;">
</span><span style="color:#323232;">for subdir in *; do
</span><span style="color:#323232;">    cd "${subdir}"
</span><span style="color:#323232;">
</span><span style="color:#323232;">    for input in *.flac; do
</span><span style="color:#323232;">        echo ${input%.*}
</span><span style="color:#323232;">        ffmpeg -i "${input}" -ab 320k  -map_metadata 0 -id3v2_version 3 "${input%.*}.mp3" && rm "${input}"
</span><span style="color:#323232;">    done
</span><span style="color:#323232;">
</span><span style="color:#323232;">    cd ..
</span><span style="color:#323232;">done
</span>

Then i’d just run my script.sh [directory that contains flac]you might want to remove && rm “${input}” if you don’t want it to delete your flac files automatically.

db2,

ffmpeg

Nimous,

It’s a very old tool. Is the quality decent?

beto,
@beto@lemmy.studio avatar

ffmpeg is written by Fabrice Bellard, who’s one of the most underrated programmers in the world (he also wrote QEMU). It’s probably the best tool out there, still actively maintained, and most commercial apps are probably using it under the hood for any kind of conversion.

ramenbellic,

It is the engine powering most of the audio/video tools you use today.

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • Pozytywnie
  • krakow
  • giereczkowo
  • Blogi
  • rowery
  • tech
  • Spoleczenstwo
  • niusy
  • sport
  • lieratura
  • esport
  • Cyfryzacja
  • kino
  • piracy@lemmy.dbzer0.com
  • muzyka
  • LGBTQIAP
  • opowiadania
  • slask
  • Psychologia
  • motoryzacja
  • turystyka
  • MiddleEast
  • fediversum
  • zebynieucieklo
  • test1
  • Archiwum
  • FromSilesiaToPolesia
  • NomadOffgrid
  • m0biTech
  • Wszystkie magazyny