Is there any third party frameworks for streaming audio form network server/ web server? I need to implement audio streaming functionality in my new project
Asked
Active
Viewed 9,723 times
2 Answers
1
The framework StreamingKit from Thong Nguyen works very well for streaming audio https://github.com/tumtumtum/StreamingKit

Damien Romito
- 9,801
- 13
- 66
- 84
0
It's not third party. You need to use Apple's HTTP Live Streaming framework if you want to be approved in the app store to stream over 3G.
-
Thanks for the reply, but how can we play audio through RTSP streaming, I googled it a lot but nothing understandable came up :( – Krrish Feb 01 '11 at 05:36
-
I Googled for "iPhone RTSP" and there are a couple of things that come up, most of which say it's very difficult to do since RTSP isn't really made for mobile devices that switch between cell towers and network types frequently. Remember, RTSP is a Real® technology, so you shouldn't expect full support in an Apple product. – Marc W Feb 01 '11 at 14:26
-
Check out this SO question, too. http://stackoverflow.com/questions/750501/is-that-possible-to-stream-mms-asx-rtsp-stream-on-iphone – Marc W Feb 01 '11 at 14:42
-
Thanks Marc,i am also getting same results only, so decided i will go for http streaming. – Krrish Feb 02 '11 at 06:41
-
It's not true that you need to use Live Streaming to be approved in the app store for 3G. You just need to make sure your data usage when streaming over 3G is less than 5MB over 5 minutes. – tumtumtum Jan 31 '14 at 22:33