Tagged Questions

2
votes
1answer
374 views

Dynamically detecting and streaming AAC using AQ's and audiofilestream

I am currently streaming MP3 and AAC radio stations. I'm reading the ICY/HTTP headers, and when detecting audio/aac or audio/aacp in the content-type, i provide kAudioFileAAC_ADTSType as the clue for ...
1
vote
0answers
64 views

ExtAudioFileWrite to m4a/aac failing on dual-core devices (ipad 2, iphone 4s)

I wrote a loop to encode pcm audio data generated by my app to aac using Extended Audio File Services. The encoding takes place in a background thread synchronously, and not in real-time. The ...
1
vote
2answers
1k views

How can I get AAC encoding with ExtAudioFile on iOS to work?

I need to convert a WAVE file into an AAC encoded M4A file on iOS. I'm aware that AAC encoding is not supported on older devices or in the simulator. I'm testing that before I run the code. But I ...
0
votes
1answer
249 views

Using AVAssetWriter to create MPEG-2 or AAC ADTS on iPhone

Is it possible to use AVAssetWriter to write an MPEG2 ADTS or AAC ADTS on ios? First I make an AVAssetWriter assetWriter = [[AVAssetWriter alloc] initWithURL:[NSURL fileURLWithPath:filePath] ...
0
votes
1answer
385 views

AVAudioRecorder File won't play except with VLC

Ok. I think I'm missing something here and I'm new to Core Audio but I have scoured the Apple documents and the rest of the web to no avail. I've also posted this same question to the apple dev forums ...
0
votes
1answer
339 views

Creating ADTS frame on iPhone… problem

I am getting raw aac data from web stream and try to put it in ADTS frame in order to play it on iPhone. It works for 10 seconds then sound stops and restart but seems accelerated or mixed with ...