Skip to content

Instantly share code, notes, and snippets.

@leepfrog
Created September 17, 2013 16:55
Show Gist options
  • Select an option

  • Save leepfrog/6597176 to your computer and use it in GitHub Desktop.

Select an option

Save leepfrog/6597176 to your computer and use it in GitHub Desktop.
NSURL *url = [NSURL URLWithString:@"file:////path_to_my.mp4"];
AVPlayer *player = [AVPlayer playerWithURL:url];
AVPlayerLayer *layer = [AVPlayerLayer playerLayerWithPlayer:player];
[[self.playerView layer] insertSublayer:layer atIndex:0];
[player play];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment