Tagged Questions

10
votes
5answers
650 views

AAC/MP3 Licensing

If I use the audio decoding libraries included in iPhoneOS (ex. AVAudioPlayer). Do I still have to pay for a license from Thomson, or VIA Licensing to legally decode AAC or MP3 files in my app? Edit: ...
4
votes
2answers
744 views

How can I append to a recorded MPEG4 AAC file?

I'm recording audio on an iPhone, using an AVAudioRecorder with the following settings: NSMutableDictionary *recordSettings = [[NSDictionary alloc] initWithObjectsAndKeys: [NSNumber ...
2
votes
1answer
377 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 ...
2
votes
1answer
367 views

iPhone: streaming WMA, MP3 and AAC

I need to create a simple media player that can stream internet radio stations in WMA, MP3 and AAC formats as part of a bigger app. I was wondering if someone could please give me some pointers on ...
2
votes
1answer
572 views

AAC header and other info in IPhone

I'm building an IPhone Application that records sound. I'm using Audio Queue Services, and everything works great for recording. The thing is, I'm using AudioFileWritePackets for file writing, and ...
1
vote
0answers
67 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 ...
1
vote
2answers
843 views

What is the smallest audio file format?

I know this is not a specific programming question but I hope someone can give me a suggestion. My applications (iPhone and Blackberry applications) use a lot of audio files. I need a solution for my ...
1
vote
1answer
261 views

iPhone - How to convert aiff audio files into aac?

I'm developing an iphone app that records audio, right now it records aiff files, I need to convert these files to aac... any idea how to do this?
0
votes
0answers
41 views

How to Encode AAC from PCM in iPhone SDK?

I want aac streaming service like telephone call, voice chat. (interactive, realtime) How do I implement it?
0
votes
0answers
58 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
1answer
255 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
0answers
425 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
0answers
107 views

On-the-fly transcoding of IMA4 data using ffmpeg

Right now I have a server-client architecture where iPhone captures data in Linear PCM format and keeps sending it to a Java server (TCP Socket). The Java server then transcodes the data using JNI ...
0
votes
0answers
135 views

How to get an adts package with afconvert

i would like to get an atds package with aacp inside with the help of afconvert. This seems to work afconvert -f 'adts' -d 'aach@44100' -b 52600 in.mp3 out.aac however this don“t afconvert -f ...
0
votes
1answer
108 views

(iphone) audio format to play voice sound?

Is there a preferred audio format to play voice recording? play time is about 1-5secs. AAC is considered bad for this? I'm trying to play aac with AVAudioPlayer but having -1 error. AVAudioplayer ...
0
votes
1answer
111 views

iPhone/iPod access music file please advice [closed]

IPhone to access all the music files, play music files, and convert the file to convert mp3 to aac file and it will try to stream as mpeg2-ts/rtsp Packet. It would be possible? Please explain ...
0
votes
1answer
430 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 ...
0
votes
1answer
389 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
1k views

How do you use afconvert to convert from wav to aac caf WITHOUT RESAMPLING

I'm making an Iphone game, we need to use a compressed format for sound, and we want to be able to loop SEAMLESSLY back to a specific sample in the audio file (so there is an intro, then it loops back ...
0
votes
1answer
341 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 ...