What I need are at least these formats (or at least some of them):
Ogg / Vorbis
WMA over MMS/ASF
AAC / AAC+
Matt seems to use some of the Apple frameworks for audio playback, so I wonder if it would be too hard to add support for additional formats other than only MP3?
...
I'm building an app using Matt Gallagher's AudioStreamer class. It works just fine for 64 and 128 kbps streams but it keeps failing for 32 kbps stream. Content type is audio/aacp.
Thanks for any tips that can bring me back on track.
...
Hi, I use Matt Galagher's AudioStreamer http://github.com/mattgallagher/AudioStreamer/ It works fine, however how to make in work at background on IPhone OS4?
...
I'm a completely n00b when talking about audio. I'm using Matt Gallagher's audio streamer on my radio app. How may I use progressive download? Also, ExtAudioFile is a good idea too :)
Edit:
Used this:
length = CFReadStreamRead(stream, bytes, kAQDefaultBufSize);
if(!data)
data =[[NSMutableData alloc] initWithLength:0]; ...
I'm using Matt Gallagher's Audio Streaming Project. I downloaded the code/project and it runs/compiles/links just fine.
The problem is when I try to integrate the AudioStreamer class into my own project. I added all the necessary frameworks and checked over the project settings to make sure they match Matt's project as much as possibl...