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.
2 points

Besides ffmpeg I would also recommend audio converter for the ones who want an Android app with a GUI, I believe it uses FFmpeg under the hood

permalink
report
reply
2 points

I personally use AIMP. It has a built in converter it worked well for me

permalink
report
reply
0 points
*

Get a phone with microsd port. Then you can have up to 1tb of lossless music

permalink
report
reply
3 points

If you were in my country you would know something like that means I have to sell my liver to get it.

permalink
report
parent
reply
1 point

Phones with microsd ports are generally much cheaper than flagships.

permalink
report
parent
reply
3 points

If you’re using Windows then Foobar 2000 is great. I use it for manually managing and tidying my collection in addition to converting pretty much any format to any other format.

That being said, you can install it as a snap in Linux as well if that’s your poison.

permalink
report
reply
8 points
*

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

#!/bin/bash

cd "${1}"

for subdir in *; do
    cd "${subdir}"

    for input in *.flac; do
        echo ${input%.*}
        ffmpeg -i "${input}" -ab 320k  -map_metadata 0 -id3v2_version 3 "${input%.*}.mp3" && rm "${input}"
    done

    cd ..
done

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.

permalink
report
reply

Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ

!piracy@lemmy.dbzer0.com

Create post
⚓ Dedicated to the discussion of digital piracy, including ethical problems and legal advancements.

Rules • Full Version

1. Posts must be related to the discussion of digital piracy

2. Don’t request invites, trade, sell, or self-promote

3. Don’t request or link to specific pirated titles, including DMs

4. Don’t submit low-quality posts, be entitled, or harass others


Loot, Pillage, & Plunder


💰 Please help cover server costs.


Community stats

  • 5.6K

    Monthly active users

  • 3.1K

    Posts

  • 75K

    Comments