vote up 0 vote down star

Is there a way to programmatically convert and/or encode to AAC/m4a format in Cocoa without the use of any libraries or programs that don't ship with Mac OS X?

I don't want to use for example, faac or ffmpeg, to do the encoding.

flag

That leaves you with iTunes and AppleScript. Why the aversion to 3rd party tools? – lod3n Sep 25 at 19:48
@lod3n: Because there are first-party libraries to do it? – Chuck Sep 25 at 19:54

2 Answers

vote up 2 vote down

The other way would be Core Audio. A really simple way would be the afconvert command line tool, which you could invoke using NSTask. On the other hand, using Core Audio's API directly may enable you to report progress to the user.

link|flag
+1; another nice thing about afconvert is that (IIRC) it's part of Mac OS X (or XCode, but considering this is Stack Overflow you probably have that, too). – fbrereto Sep 25 at 22:37
I don't think afconvert is part of the Xcode distribution—which is a good thing, because if it were, users of the questioner's app would need to have Xcode installed to convert audio with it. – Peter Hosey Sep 26 at 0:37
3  
It's easy enough to check that: pkgutil --file-info /usr/bin/afconvert. (and yes, it's part of the base OS). – Nicholas Riley Sep 26 at 15:47
vote up 2 vote down

Look at QTKit.

link|flag

Your Answer

Get an OpenID
or

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