문제

I need to implement iphone streaming functionality for WMA audio files from the server. iPhone can support only mp3, wav, aac audio files. But I need to play wma audio streaming for the iphone radio application.

Can anyone tell me how to do this things. I really thankful for your help. Thanks in advance.

도움이 되었습니까?

해결책

Basically impossible unless you feel like writing your own decoder. The iPhone doesn't support WMA and that's kind of the end of it.

다른 팁

I totally agree with Noah Witherspoon. Just adding one step, for handling audio streaming you should look at this

Hope this helps.

For wma you should use the FFmpeg library. FFmpeg will be able to decode wma audio streams and also connect to mms audio streams.

If you do a little research you'll find ways to compile static FFmpeg libraries for the iOS platform. Once you have the static FFmpeg libraries in place you can connect to audio streams and start decoding. To play the decoded audio packets you'll need to use the AudioQueue framework. Basically you pass the decoded audio data to AudioQueue and tell it to play the buffers filled with the decoded data FFmpeg gave you.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top