Results 1 to 3 of 3

Thread: console: burn flac files as music cd (non-mp3 and non-flac files at target cd)

  1. #1
    Join Date
    Aug 2013
    Beans
    59

    Question console: burn flac files as music cd (non-mp3 and non-flac files at target cd)

    Hi all,

    how do I burn flac files as music cd in console (non-mp3 and non-flac files at target cd) ?

  2. #2
    Join Date
    May 2009
    Location
    Indiana
    Beans
    1,971
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: console: burn flac files as music cd (non-mp3 and non-flac files at target cd)

    My recommendation is that you try Brasero, starting an Audio Disc Project.
    Jane, stop this crazy thing!

  3. #3
    Join Date
    Aug 2013
    Beans
    59

    Smile Re: console: burn flac files as music cd (non-mp3 and non-flac files at target cd)

    Here is the decision:

    http://askubuntu.com/questions/62168/can-how-to-burn-a-flac-to-an-audio-cd


    Procedure:

    Convert FLACs to MP3 with lame (lame recommends -V2, but in your case I'd go with -V5):

    flac -d -c track.flac | lame -V 5 - track.mp3

    example for processing all FLAC files in current folder:

    for f in *.flac ; do flac -d -c "$f" | lame -V 5 - "${f%.*}.mp3" ; done

    Convert MP3 folder structure to Joliet folder structure ISO image
    After you have converted FLAC files to MP3 arange MP3s in folder structure (i.e. /artist/album/track) than make ISO image like this:

    mkisofs -J -o /tmp/MP3-CD.iso /path to root of MP3 folder structure/

    Note: you can't go above 700MB, check for space first

    Burn ISO image

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •