播放遠程視頻

  • 使用AVPlayer 播放遠程視頻

  • ViewController


// ViewController.h
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end

// ViewController.m
#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>

@interface ViewController ()
/** 播放器 */
@property (nonatomic, strong) AVPlayer *player;
/** 圖層*/
@property (nonatomic, weak) AVPlayerLayer *layer;
@end

@implementation ViewController

#pragma mark - 懶加載
- (AVPlayerLayer *)layer
{
    if (_layer == nil) {
        // 獲取遠程視頻資源
        // 0.獲取遠程視頻url
        NSURL *remoteURL = [NSURL URLWithString:@"http://v1.mukewang.com/57de8272-38a2-4cae-b734-ac55ab528aa8/L.mp4"];
        // 1.根據url資源創(chuàng)建一個播放器
        self.player = [[AVPlayer alloc] initWithURL:remoteURL];
        // 2.根據播放器對象, 創(chuàng)建一個圖層, 展示視頻內容給用戶看
        _layer = [AVPlayerLayer playerLayerWithPlayer:self.player];
    }
    return _layer;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.view.layer addSublayer:self.layer];
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    [self.player play];
}

// 不加下面的方法,雖然可以放視頻,可以聽到聲音
// 但是不能看到畫面,得添加到相應的圖層上去
- (void)viewDidLayoutSubviews
{
    [super viewDidLayoutSubviews];
    self.layer.frame = self.view.bounds;
}

@end

  • 使用MPMoviePlayerViewController播放視頻

  • ViewController


// ViewController.h
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end

// ViewController.m
#import "ViewController.h"
#import <MediaPlayer/MediaPlayer.h>

@interface ViewController ()

/** 播放器*/
@property (nonatomic, strong) MPMoviePlayerController *pc;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    // 0.獲取資源路徑
    NSURL *remoteURL = [NSURL URLWithString:@"http://v1.mukewang.com/57de8272-38a2-4cae-b734-ac55ab528aa8/L.mp4"];
    // 1.創(chuàng)建播放器對象
    self.pc = [[MPMoviePlayerController alloc] initWithContentURL:remoteURL];
    [self.view addSubview:self.pc.view];
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    [self.pc play];
}

- (void)viewDidLayoutSubviews
{
    [super viewDidLayoutSubviews];
    self.pc.view.frame = self.view.bounds;
}

@end

  • 使用MPMoviePlayerViewController播放視頻

  • ViewController


// ViewController.h
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end

// ViewController.m
#import "ViewController.h"
#import <MediaPlayer/MediaPlayer.h>

@interface ViewController ()
/** 播放器 */
@property (nonatomic ,strong) MPMoviePlayerViewController *pvc;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // 0.獲取遠程視頻url
    NSURL *remoteURL = [NSURL URLWithString:@"http://v1.mukewang.com/57de8272-38a2-4cae-b734-ac55ab528aa8/L.mp4"];
    self.pvc = [[MPMoviePlayerViewController alloc] initWithContentURL:remoteURL];
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    if (self.presentedViewController) { // 已經有指向的控制器了
        return;
    }

    [self presentViewController:self.pvc animated:YES completion:^{
        [self.pvc.moviePlayer play];
    }];
}

@end

  • iOS9.0之后, 需要使用AVPlayerViewController

  • ViewController


// ViewController.h
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end

// ViewController.m
#import "ViewController.h"
#import <AVKit/AVKit.h>
#import <AVFoundation/AVFoundation.h>

@interface ViewController ()
/** 播放器 */
@property (nonatomic ,strong) AVPlayerViewController *playerVC;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    self.playerVC = [[AVPlayerViewController alloc] init];
    // 0.獲取遠程視頻url
    NSURL *remoteURL = [NSURL URLWithString:@"http://v1.mukewang.com/57de8272-38a2-4cae-b734-ac55ab528aa8/L.mp4"];
    AVPlayer *player = [[AVPlayer alloc] initWithURL:remoteURL];
    self.playerVC.player = player;
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    if (self.presentedViewController) { // 已經有指向的控制器
        return;
    }
    [self presentViewController:self.playerVC animated:YES completion:^{
        [self.playerVC.player play];
    }];
}

@end


最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末缨伊,一起剝皮案震驚了整個濱河市谴忧,隨后出現的幾起案子,更是在濱河造成了極大的恐慌柳琢,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件锐极,死亡現場離奇詭異腥椒,居然都是意外死亡梧宫,警方通過查閱死者的電腦和手機,發(fā)現死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門蛇尚,熙熙樓的掌柜王于貴愁眉苦臉地迎上來芽唇,“玉大人,你說我怎么就攤上這事取劫〈殷裕” “怎么了?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵谱邪,是天一觀的道長炮捧。 經常有香客問我,道長惦银,這世上最難降的妖魔是什么咆课? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任末誓,我火速辦了婚禮,結果婚禮上书蚪,老公的妹妹穿的比我還像新娘喇澡。我一直安慰自己,他們只是感情好殊校,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布撩幽。 她就那樣靜靜地躺著,像睡著了一般箩艺。 火紅的嫁衣襯著肌膚如雪窜醉。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天艺谆,我揣著相機與錄音榨惰,去河邊找鬼。 笑死静汤,一個胖子當著我的面吹牛琅催,可吹牛的內容都是我干的。 我是一名探鬼主播虫给,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼藤抡,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了抹估?” 一聲冷哼從身側響起缠黍,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎药蜻,沒想到半個月后瓷式,有當地人在樹林里發(fā)現了一具尸體,經...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡语泽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年贸典,在試婚紗的時候發(fā)現自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片踱卵。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡廊驼,死狀恐怖,靈堂內的尸體忽然破棺而出惋砂,到底是詐尸還是另有隱情妒挎,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布班利,位于F島的核電站绩郎,受9級特大地震影響莲组,放射性物質發(fā)生泄漏倦炒。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一积蜻、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧彻消,春花似錦竿拆、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至煌贴,卻和暖如春御板,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背牛郑。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工怠肋, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人淹朋。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓笙各,卻偏偏與公主長得像,于是被迫代替她去往敵國和親础芍。 傳聞我的和親對象是個殘疾皇子杈抢,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內容