iPhone Radio Streaming for WMA audio files

2019-05-15 05:52发布

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.

3条回答
Evening l夕情丶
2楼-- · 2019-05-15 06:01

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

Hope this helps.

查看更多
等我变得足够好
3楼-- · 2019-05-15 06:10

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.

查看更多
混吃等死
4楼-- · 2019-05-15 06:12

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.

查看更多
登录 后发表回答