你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS 關於相機膠卷,視頻庫,app內部中的視頻播放方法

iOS 關於相機膠卷,視頻庫,app內部中的視頻播放方法

編輯:IOS開發綜合

1.iOS 關於相機膠卷,視頻庫


Apple suggests:

Uses AVPlayer to play videos from the iPod Library, Camera Roll, or via iTunes File Sharing. Also displays metadata.

可以參考官方的AVPlayerDemo。

 


2. 播放app本地的視頻文件。

Code:


NSString *path = [[NSBundle mainBundle] pathForResource:@"testvideo" ofType:@"mov"];

#if 1

    _playView = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:path]];

    _playView.view.frame = self.view.bounds;

    _playView.movieSourceType = MPMovieSourceTypeFile;

    [_playView prepareToPlay];

 


// todo

// resolve the notification

//

    [self.view addSubview:_playView.view];

    [_playView play];

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved