iOS
AVPlayer en AVPlayerViewController
Zoeken…
Opmerkingen
import AVKit, import AVFoundation.
Media afspelen met AVPlayerViewController
Doelstelling C
NSURL *url = [[NSURL alloc] initWithString:@"YOUR URL"]; // url can be remote or local
AVPlayer *player = [AVPlayer playerWithURL:url];
// create a player view controller
AVPlayerViewController *controller = [[AVPlayerViewController alloc] init];
[self presentViewController:controller animated:YES completion:nil];
controller.player = player;
[player play];
Snel
let player = AVPlayer(URL: url) // url can be remote or local
let playerViewController = AVPlayerViewController()
// creating a player view controller
playerViewController.player = player
self.presentViewController(playerViewController, animated: true) {
playerViewController.player!.play()
}
Media afspelen met AVPlayer en AVPlayerLayer
Doelstelling C
NSURL *url = [NSURL URLWithString:@"YOUR URL"];
AVPlayer *player = [AVPlayer playerWithURL:videoURL];
AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];
playerLayer.frame = self.view.bounds;
[self.view.layer addSublayer:playerLayer];
[player play];
Snel
let url = NSURL(string: "YOUR URL")
let player = AVPlayer(URL: videoURL!)
let playerLayer = AVPlayerLayer(player: player)
playerLayer.frame = self.view.bounds
self.view.layer.addSublayer(playerLayer)
player.play()
AVPlayer-voorbeeld
AVPlayer * avPlayer = [AVPlayer playerWithURL: [NSURL URLWithString: @ "UW URL"]];
AVPlayerViewController *avPlayerCtrl = [[AVPlayerViewController alloc] init];
avPlayerCtrl.view.frame = self.view.frame;
avPlayerCtrl.player = avPlayer;
avPlayerCtrl.delegate = self;
[avPlayer play];
[self presentViewController:avPlayerCtrl animated:YES completion:nil
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow