Do I need to make any code-level changes to play my videos over HTTP Live Streaming protocol? or is it more a server issue, where i need to re-encode the videos etc?

We've reviewed your application, but cannot post this version to the App Store because it is not using the HTTP Live Streaming protocol, which is required for broadcasting streaming video over the cellular networks for longer than ten minutes. We have included additional details below to help explain the issue, and hope you’ll consider revising and resubmitting your application.

Here is how I am playing the video. It is just pointing to a CloudFront URL:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    STVideo *mySTVideo;
    mySTVideo = [items objectAtIndex:indexPath.row];

    moviePlayerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:mySTVideo.video_url]];

    moviePlayerViewController.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"st-screen.png"]];
    [self presentMoviePlayerViewControllerAnimated:moviePlayerViewController];

    [moviePlayerViewController release];

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

}
link|improve this question

What was the exact rejection message? – Shaggy Frog Sep 2 '10 at 1:24
updated my question w/ rejection msg – Sheehan Alam Sep 2 '10 at 4:50
Could you post the code you're using to play the video, including the way you construct the URL. – VdesmedT Sep 2 '10 at 5:00
updated with code. – Sheehan Alam Sep 2 '10 at 6:10
@Shaeeham Alam, I have faced same problem and got rejected same reason. You have to implement HTTP Live streaming and solved this problem. And you need to work some server side work also. see my question:" stackoverflow.com/questions/2719958/… ". – Pugal Sep 2 '10 at 10:48
show 1 more comment
feedback

1 Answer

up vote 5 down vote accepted

It all seems quite straight forward to me. You are playing a stream for more than 10 minutes across the cell network without using HTTP live streaming. Having read through Apple's documentation on live streaming, I would guess the issue is entirely server side i.e. if you point the media player object at a live streaming URL, it'll figure it out automatically.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.