codecamp

iOS AVplayer 基本使用方法

*说明:利用AVPlayer可以制作视频播放器、音频播放器;使用AVPlayer播放过的格式有 .mp4  .m3u8   .mp3

1、创建播放器:

  1. _player = [[AVPlayer alloc] initWithPlayerItem:[AVPlayerItem playerItemWithURL:[NSURL URLWithString:@""]]];  

2、切换播放地址

  1. AVPlayerItem *item = [AVPlayerItem playerItemWithURL:mediaUrl];  
  2. [_player replaceCurrentItemWithPlayerItem:item];  

3、跳转进度, 参数second秒

  1. CMTime changedTime = CMTimeMakeWithSeconds(second, 1);  
  2. [_player seekToTime:changedTime completionHandler:^(BOOL finished) {  
  3. }];  

4、改变播放速率 0.5为正常速度的一半 默认rate是1 

  1. [_player setRate:0.5];  

5、暂停/继续

  1. [_player pause];  
  2. [_player play];  

6、播放时间(单位:秒)

  1. CGFloat currentPlayTime =_player.currentItem.currentTime.value/_player.currentItem.currentTime.timescale;  

7、缓冲时间

  1. NSArray *loadedTimeRanges = [[_player currentItem] loadedTimeRanges];  
  2. CMTimeRange timeRange = [loadedTimeRanges.firstObject CMTimeRangeValue];//获取缓冲区域  
  3. float startSeconds = CMTimeGetSeconds(timeRange.start);  
  4. float durationSeconds = CMTimeGetSeconds(timeRange.duration);  
  5. NSTimeInterval result = startSeconds + durationSeconds;//计算缓冲总进度  
缺少各种framework会报的错误
关于iOS音效问题
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }