I want to play a video file from server but my server is supporting application/octet-stream. I am not able to play file. Does AVPlayer support application/octet-stream or I did some mistake. Here is my code block.
NSURL *videoURL = [NSURL URLWithString:@"http:serverPath/SampleVideo.mp4"]; AVPlayer *player = [AVPlayer playerWithURL:videoURL]; AVPlayerViewController *playerViewController = [AVPlayerViewController new]; playerViewController.player = player; playerViewController.delegate = (id)self; [player play]; [self presentViewController:playerViewController animated:YES completion:nil];