yujean
yujean

Reputation: 795

I'm implement http live streaming video from my webserver to iPhone. Will I get rejected for bandwidth?

Apache webserver setup

added:

AddType application/x-mpegURL .m3u8
AddType video/MP2T .ts

to "httpd.conf" file.

Movie file preparation

iPhone App implementation

Question

Thank you in advance,

Eugene

Upvotes: 0

Views: 1507

Answers (2)

Michael Morrison
Michael Morrison

Reputation: 1323

We were rejected when we first submitted our mp3 streamer to the app store for excessive bandwidth use. Then we hobbled the app to limit its downloads to 4.5 meg in 5 min, which was accepted by Apple.

You can review that thread for more info on the issue.

Upvotes: 3

bpapa
bpapa

Reputation: 21497

To answer your second bullet-point first, the SDK does that all for you. Determining what quality to stream is not the concern of the developer.

To answer your first bullet-point, I haven't submitted my Live Streaming app so I don't know for sure, but I believe you will be rejected if you don't have a 64k stream. To be sure, check out Requirements for Apps, which is as definitive a list of requirements that you could probably get.

Upvotes: 1

Related Questions