Home of the Squeezebox™ & Transporter® network music players.
Page 11 of 12 FirstFirst ... 9101112 LastLast
Results 101 to 110 of 111
  1. #101
    Senior Member Tony T's Avatar
    Join Date
    Nov 2009
    Posts
    584
    If you're on a Mac, you can convert using iTunes with: http://www.hydrogenaudio.org/forums/...dpost&p=681760
    Tony
     SBTouch ♪ SBRadio ♬

  2. #102
    Member
    Join Date
    Jan 2006
    Location
    Lawrence KS USA
    Posts
    97
    Coming a bit late into the discussion, but a cursory glance through the thread show no mention of MP3FS, a userspace file system that presents flac files as mp3, eliminating the need for storing mp3 copies of your flacs.

    MP3FS lets one mount a directory of flac files and present them as mp3 files to an application. When one of these virtual mp3 files is accessed, it is converted on the fly for presentation to the requesting application. No more redundant collections to maintain.

    Here is an article:
    http://www.linux.com/archive/feed/57481

    Cody

  3. #103

    Conversion speedup

    For those of you who running a Perl script similar to flac2mp3.pl
    on a multi core machine, it is an easy task to parallelize your script
    and greatly increase processing speed. Note - As flac conversion is a cpu
    intensive task, running a flac job on every core will impair your computer's response time.

    Add the following code in "the appropriate places" to your .pl file.


    use Parallel::ForkManager;

    # 4 for a quad core machine
    my $pm = new Parallel::ForkManager(4);

    # this is your main processing loop
    while ("still processing flac files") {
    $pm->start and next;

    # convert a file

    $pm->finish;
    }

    $pm->wait_all_children;

  4. #104
    Senior Member
    Join Date
    Nov 2006
    Location
    London, UK
    Posts
    168
    I have a mixed FLAC and mp3 folder for my Squeezebox and I would like a separate folder for my portable player that contains all of the same music in MP3 only.

    It sounds like flac2mp3 will help with the transcoding. What will it do when it encounters mp3 files? Will it ignore them, or will it copy them over to the portable library?

    If it won't copy them over, I'd be interested to hear what tools other people use (on Windows) to do the syncing.

    Thanks for any help.

  5. #105
    Senior Member aubuti's Avatar
    Join Date
    Oct 2005
    Posts
    8,354
    flac2mp3.pl (the Robin Bowes' script) will ignore the MP3 files.

    My library is about 95% FLAC and 5% MP3, with MP3 duplicates of my FLAC files for my portable player. Basically I have three music folders.

    \music\flac
    \music\mp3
    \music\common_mp3

    FLAC files go in \music\flac, and the MP3 copies of those files go in \music\mp3. Files that I have _only_ in MP3 go in \music\common_mp3. Then put a Windows shortcut to \music\common_mp3 in the \music\flac folder, and put another Windows shortcut to \music\common_mp3 in the \music\mp3 folder. That way you can point SBS to \music\flac and it will find both your FLAC and MP3-only files. And you can point your portable player to \music\mp3, and it will find the files in both \music\mp3 and \music\common_mp3.

  6. #106
    Senior Member
    Join Date
    Jan 2009
    Location
    Los Angeles & London
    Posts
    628
    Yup, that's the best way to organise your library for this particular scenario, in my opinion.

  7. #107
    Senior Member
    Join Date
    May 2008
    Posts
    1,446
    There are several tools out there that will sync contents of folders. Take a look at Sync Toy from Microsoft for example. I just can't remember if it can selectively sync just particular file types.
    Yes, it will. Yes, all of them. Yes, SoftSqueeze as well. What ?
    I SAID ALL OF THEM !

  8. #108
    Member WAD62's Avatar
    Join Date
    Jun 2010
    Location
    Coventry
    Posts
    87
    I use dBpoweramp to rip to FLAC for my main library, and the dBpoweramp batch converter to compress the FLAC library into a separate vbr mp3 library for my mobile devices.

    A manual process, but it works nicely for me.

  9. #109
    Senior Member Peter314's Avatar
    Join Date
    Nov 2007
    Posts
    257
    Can rip to flac and mp3 simultaneously with the multi-encoder codec.

    http://www.dbpoweramp.com/codec-central-utility.htm

  10. #110
    Senior Member
    Join Date
    Jan 2011
    Posts
    243
    I'm a bit late to the party but for what it's worth I use Easy CD-DA Extractor with Lame:
    http://www.poikosoft.com/
    It works fine for me even batch converting a large number of flac's across many directories.

Posting Permissions

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