I'm looking to create a program that will burn an audio CD. Before diving in I was hoping to see a selection of libraries that will make writing the code to burn the audio easy to write. I don't care much about language but something that is cross OS would be nice. (Specifically Windows and linux).

So far the only library that I see is PrimoBurn, but I can't seem to get their C++ version to compile.

So what do you guys use?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

cdrecord runs on both Windows and Linux (Mac as well). Call it through a system call.

link|improve this answer
You mean a system() call? :) – İsmail 'cartman' Dönmez Dec 29 '10 at 9:14
@İsmail Yup(15 chars) – marcog Dec 29 '10 at 9:21
+1 since cdrecord is the best CD recording application ever. – İsmail 'cartman' Dönmez Dec 29 '10 at 9:23
Fair enough, this seems to be my only option :( Hopefully it doesn't end up being as hacky as I think that it will be. – Sandro Jan 2 '11 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.