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.
      • Beto
        link
        fedilink
        English
        3911 months ago

        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.

          • @[email protected]
            link
            fedilink
            English
            511 months ago

            better then virtual box, when comparing to vmware it has some wins and some losses, windows guests, vmware wins, linux guests qemu wins, assuming you dont need any more advanced features. in which qemu always wins

          • Beto
            link
            fedilink
            English
            211 months ago

            It depends on what you mean by better. Faster? More user friendly? More versatile?

            • @[email protected]OP
              link
              fedilink
              English
              111 months ago

              If it has the performance it is better. If it doesn’t have professional features of vmware workstation like networking and settings, it’s not better.

      • @[email protected]
        link
        fedilink
        English
        13
        edit-2
        11 months ago

        It’s not old. It’s actively maintained. It has recent releases and is actively being developed. It existed for a long time - as in it’s stable and feature-rich.

        It’s so versatile I use it for all my audio and video mixing, encoding, and conversion needs.

        If you can write a small script invoking it for all files automatically is simple enough - and better than manually writing a conversion command for each file.

      • m-p{3}
        link
        fedilink
        English
        1311 months ago

        It’s one of the pillars of anything A/V. Most if not all streaming provider uses it in their backend and frontend, and most conversion and playback tools (ie: HandBrake, VLC) depends on it.

      • circuitfarmer
        link
        fedilink
        English
        1011 months ago

        Old doesn’t mean much if it’s maintained and improved like ffmpeg.

      • @[email protected]
        link
        fedilink
        English
        611 months ago

        It’s a CLI tool, it’s a great generalist tool for converting video and audio but you have to script it if you want to do a recursive batch job.

        • @[email protected]
          link
          fedilink
          English
          5
          edit-2
          11 months ago

          Or use Shutter Encoder, it’s basically FFMPEG with a GUI (altough with 1.7.3 I’ve run into problems with some codecs, use 1.7.2)

          But for this it might be easier to just script it than drag and drop every file, depends on OP

    • @RunAwayFrog
      link
      English
      2311 months ago

      Not audiophilic enough.

      ffmpeg -i in.flac -ar 48000 \
                  -af aresample=resampler=soxr:precision=28:cheby=1:dither_method=shibata \
                  -c:a libopus -b:a 224k out.opus
      
  • @[email protected]
    link
    fedilink
    English
    14
    edit-2
    11 months ago

    I use FRE:AC https://www.freac.org/downloads-mainmenu-33

    It can do bulk conversions with a recursive directory search and works in most OSes

    I had the exact same use case as you, 1TB of FLACs onto a 256gb phone. Because you prefer minimal quality loss, Opus is the format for you, not MP3. You can maintain transparency-level quality with 128kbps, Opus is roughly equivalent in quality to a mp3 twice its size. AAC and Vorbis are also preferable to MP3 in this aspect, but inferior to Opus. At this point, mp3s are only useful for devices that can’t decode any better codec.

    Then i do a search-replace for *.flac -> *.opus on the playlists. I use PowerAmp on android to play the tunes, can recommend.

    • @[email protected]OP
      link
      fedilink
      English
      111 months ago

      PowerAmp has a good UI but lacks some features and usage ease so I highly recommend Musicolet.

      • @[email protected]
        link
        fedilink
        English
        111 months ago

        I just tried it. I can’t bulk import external playlists, so I’m not using it. I keep my playlists in with the music directories so I have to scroll past 3,000 artists to get to any of them in musicolet.

      • UKFilmNerd
        link
        fedilink
        English
        1
        edit-2
        11 months ago

        I’ve been using Poweramp since version 1.5 on my HTC Hero (Android 1.5!). I’m just curious as to why Musicolet is better. I’ve already noticed their statement about no internet access, so that’s a start.

        Edit: Musicolet is louder on my Bluetooth headphones than Poweramp is, that makes 2 points. 😁

        • @[email protected]OP
          link
          fedilink
          English
          211 months ago

          No internet access is some kind of philosophy for them but I don’t like it for two reason: 1. This philosophy prevent them from adding a feature to find and embed synced lyrics automatically. 2. If they want to respect our privacy why not just make the app open source? like the paid version doesn’t have any bold feature.

          But with all that, I still use it because Poweramp UI is not good! innovative, but not actually good.

  • @[email protected]
    link
    fedilink
    English
    1111 months ago

    dont convert them to mp3, use either AAC or Opus, 192kbps is typically good enough for high quality, but a lot of people will just encode 128kbps

    • @[email protected]
      link
      fedilink
      English
      511 months ago

      Gonna have to hard agree with this.

      I’d look into Apple’s AAC format as it is the best compromise of space and quality currently.

      I encode my FLACs to 256k vbr, which is high enough and saves a ton of space vompared to mp3.

      Also I use musicbee to do this.

      • @[email protected]
        link
        fedilink
        English
        211 months ago

        opus and AAC are more or less the same, with some wins and losses either way, just don’t use ffaac or ffopus for encoding lol

  • @[email protected]
    link
    fedilink
    English
    711 months ago

    Everyone is recommending ffmpeg. So am I, but with Axiom UI, since everyone is not used to working in terminal. You can convert entire folders just as well like you could with ffmpeg normally. I am used to command line stuff, but I still prefer this for simple conversions out of convenience. https://axiomui.github.io/

  • JelloBrains
    link
    fedilink
    711 months ago

    I use FFmpeg Batch Audio Video converter, it’s just a GUI FFmpeg. I use it to convert FLAC to MP3 when I was going on a trip and only had a CD Player and I use it to convert 7.1 Audio down to AC3 5.1 to fit my sound system. It has a MP3 preset but I had to add one for the 5.1 conversion.

    • @[email protected]
      link
      fedilink
      English
      311 months ago

      I wrote a script for this btw if you’d rather use the CLI. Runs a whole little wizard and everything lol, even tells you to have a nice day on exit! I’m no programmer but it’s honest work.

  • @[email protected]
    link
    fedilink
    English
    411 months ago

    I used to use musicbee for this. Good app for organising your music on your desktop and you can configure it to convert audio format when syncing to your phone. It’s been a while since I used it, but it did the job nicely

    • @[email protected]
      link
      fedilink
      English
      611 months ago

      Audacity uses FFMPEG to work with flac files, since it’s only going to convert them might as well go directly with FFMPEG

    • @[email protected]
      link
      fedilink
      English
      211 months ago

      But contains telemetry since iirc v 3.1.3. There’s also a fork called tenacity that is pretty alright.

  • @[email protected]
    link
    fedilink
    English
    311 months ago

    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.

  • SBS1313
    link
    fedilink
    English
    211 months ago

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