Art Alexion on 15 Apr 2006 14:20:40 -0000 |
On Saturday 15 April 2006 06:43, Ed Stokes wrote: > Michael Lazin wrote: > > Hi, I recorded some old records and tapes in flac format and would > > like to burn them to CDs. Can anyone recommend linux software for > > making an audio cd from a .flac file? > > short answer: K3b (http://www.k3b.org) makes this pretty easy > If you don't have KDE installed, the following script worked for me. (Now that I installed KDE, k3b is much easier, especially if you have a CD player that supports CD-Text.) #!/bin/bash for i in ./*.flac; do flac -d $i -o ${i//flac/wav}; sox \ ${i//flac/wav} ${i//flac/cdr}; rm ${i//flac/wav}; done cdrecord -v speed=10 dev=/dev/hdc driveropts=burnfree -dao -pad -overburn -audio ./*.cdr rm *.cdr -- _______________________________________ Art Alexion Arthur S. Alexion LLC PGP fingerprint: 52A4 B10C AA73 096F A661 92D2 3B65 8EAC ACC5 BA7A The attachment -- signature.asc -- is my electronic signature; no need for alarm. Info @ http://mysite.verizon.net/art.alexion/encryption/signature.asc.what.html Key for signed PDFs available at http://mysite.verizon.net/art.alexion/encryption/ArthurSAlexion.p7c The validation string is TTJY-ZILJ-BJJG. ________________________________________ Attachment:
pgpE0h0b4JkZH.pgp ___________________________________________________________________________ Philadelphia Linux Users Group -- http://www.phillylinux.org Announcements - http://lists.phillylinux.org/mailman/listinfo/plug-announce General Discussion -- http://lists.phillylinux.org/mailman/listinfo/plug
|
|