kitecarl;510395 Wrote: 
> Hi everyone,
> 
> Know of any Linux or Perl scripts that will batch convert Apple
> Lossless M4A files to FLAC?  I'm running a Vortexbox install after
> moving over from itunes on Windows (Yes, I have SEEN THE LIGHT) and
> would love to get all my M4A files into FLAC so that I can take
> advantage of MusicIP, batch conversion to MP3, etc that FLAC provides. 
> I see loads of format conversion scripts out there, but haven't found
> one specifically for this.  
> 
> Thanks,
> Carl
I found this post
http://www.linuxforums.org/forum/gaming-games-multimedia-entertainment/40943-m4a-mp3-having-some-difficulty.html


Code:
--------------------
    Converting from m4a to mp3 on a whole bunch of files recursively
  
  Convert to wav first:
  find . -name \*.[Mm]4[Aa] -exec faad {} \;
  
  Convert to mp3:
  find . -name \*.[Ww][Aa][Vv] -exec lame {} \;
  
--------------------

Once you substitute flac for mp3 this might actually work.


-- 
matka

George

Transporter->Pathos Logos->Triangle Celius
2 Duets, 1 Boom, 1 SB3
Sansa Clip Plus -> AKG K 420
Fedora Core Linux
------------------------------------------------------------------------
matka's Profile: http://forums.slimdevices.com/member.php?userid=34878
View this thread: http://forums.slimdevices.com/showthread.php?t=74506

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping

Reply via email to