Tagged Questions

2
votes
2answers
633 views

What are the ways to convert/encode to AAC in Cocoa?

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 ...
2
votes
5answers
6k views

Best he-aac encoder on linux?

I need an encoder that can convert mp3 files to he-aac (aka aac+). So far the best one I have found is nero aac encoder . I have two problemes with it : - Only one input format : wav . It is a ...
1
vote
1answer
259 views

Audio Encoding: AAC files without the 1/10 second silence at the end of the track

I'm a little confused with an issue that I keep running into. I'm trying to create some sound loops for continuously playing, seamless background music.. everything's fine as long as I stay in AAC/ ...
0
votes
0answers
53 views

How to Encode AAC data from PCM data in iPhone SDK? (iphone dev/Audio)

I guess "AudioConverterFillComplexBuffer" is the solution. But I don't know this way is right. +1. AudioUnit initialize AudioUnit : "recordingCallback" is callback method. the output format is ...
0
votes
0answers
48 views

Packing RAW AAC into m4a container?

I have an Android app using FAAC to convert raw PCM into raw AAC, but now I don't know how it can be packed into m4a container. I've searched on the net and found a lot of info, but none of them ...
0
votes
0answers
70 views

Libfaac encode audio data from Directsound capture buffer

I've tried to use libfaac to encode audio data from directsound capture buffer. The output is almost right but the background of the outputed sound get a little noise where that should be silence. I ...
0
votes
0answers
417 views

iPhone: Problems encoding 32KHz PCM to 96Kbit AAC using AudioConverterFillComplexBuffer

Has anyone had success converting 32KHz PCM to 96Kbit AAC on iPhone/iOS? I can not get this to work correctly on any hardware device. The code I wrote only works correctly in the simulator. When ...
0
votes
2answers
717 views

PCM to AAC with FAAC, numberBytesWritten >> 16bits?

Next iteration of my question: Thank you for your inputs, it has helped me to understand a little bit more about the Frame and inputSamples utility. I’ve done modifications to my source code with ...
0
votes
1answer
429 views

Is it possible at all to record audio in AAC/MP4 format on the iPhone?

In this link it says it does: http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/MultimediaPG/UsingAudio/UsingAudio.html However I have searched for an example that works on ...