基于AVPlayer簡單封裝的播放器

基于AVPlayer簡單封裝的播放器

時間 2014-03-03 22:16:07? CSDN博客

原文? http://blog.csdn.net/ioswyl88219/article/details/20403025

主題 iOS開發(fā)

直接貼源碼吧,也沒有很復雜

@interface PlayView : UIView

@property(nonatomic,strong)AVPlayer *player;

@property(nonatomic,strong)UIView *bottom;

@property(nonatomic,strong)AVPlayerItem *playerItem;

@property(nonatomic,strong)UISlider *slider;

- (id)initWithFrame:(CGRect)frame WithVideoStr:(NSString *)videoStr;

- (void)PlayOrPause;

@end

//

//? PlayView.m

//? AVPlayerDemo

//

//? Created by 王顏龍 on 14-2-25.

//? Copyright (c) 2014年 longyan. All rights reserved.

//

#import "PlayView.h"

static void *PlayViewCMTimeValue = &PlayViewCMTimeValue;

static void *AVPlayerDemoPlaybackViewControllerStatusObservationContext = &AVPlayerDemoPlaybackViewControllerStatusObservationContext;

@implementation PlayView

- (id)initWithFrame:(CGRect)frame

{

self = [super initWithFrame:frame];

if (self) {

// Initialization code

}

return self;

}

- (id)initWithFrame:(CGRect)frame WithVideoStr:(NSString *)videoStr{

self = [super init];

if (self) {

self.frame = frame;

NSURL *sourceMovieURL = [NSURL fileURLWithPath:videoStr];

AVAsset *movieAsset = [AVURLAsset URLAssetWithURL:sourceMovieURL options:nil];

self.playerItem = [AVPlayerItem playerItemWithAsset:movieAsset];

self.player = [AVPlayer playerWithPlayerItem:self.playerItem];

AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:self.player];

playerLayer.frame = self.layer.bounds;

playerLayer.videoGravity = AVLayerVideoGravityResizeAspect;

[self.layer addSublayer:playerLayer];

[self.player play];

self.bottom = [[UIView alloc]initWithFrame:CGRectMake(0, self.frame.size.height - 40, self.frame.size.width, 40)];

self.bottom.backgroundColor = [UIColor grayColor];

UIButton *playBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

[playBtn addTarget:self action:@selector(PlayOrPause) forControlEvents:UIControlEventTouchUpInside];

playBtn.frame = CGRectMake(5, 5, 30, 30);

playBtn.backgroundColor = [UIColor redColor];

[self.bottom addSubview:playBtn];

[self addSubview:self.bottom];

self.slider = [[UISlider alloc]initWithFrame:CGRectMake(45, 5, 200, 30)];

self.slider.minimumValue = 0.0;

self.slider.maximumValue = CMTimeGetSeconds(movieAsset.duration);

self.slider.value = 0.0;//指定初始值

[self.slider addTarget:self action:@selector(updateValue:) forControlEvents:UIControlEventTouchUpInside];//設置響應事件

[self.bottom addSubview:self.slider];

// 單擊的 Recognizer

UITapGestureRecognizer* singleRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTapFrom)];

singleRecognizer.numberOfTapsRequired = 1; // 單擊

[self addGestureRecognizer:singleRecognizer];

[self.playerItem addObserver:self

forKeyPath:@"status"

options:NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionNew

context:AVPlayerDemoPlaybackViewControllerStatusObservationContext];

[self initScrubberTimer];

}

return self;

}

- (double)duration

{

AVPlayerItem *playerItem = [[self player] currentItem];

if ([playerItem status] == AVPlayerItemStatusReadyToPlay)

return CMTimeGetSeconds([[playerItem asset] duration]);

else

return 0.f;

}

- (double)currentTime

{

return CMTimeGetSeconds([[self player] currentTime]);

}

- (void)setCurrentTime:(double)time

{

[[self player] seekToTime:CMTimeMakeWithSeconds(time, 1)];

}

- (void)PlayOrPause{

if ([[self player] rate] != 1.f) {

if ([self currentTime] == [self duration])

[self setCurrentTime:0.f];

[[self player] play];

} else {

[[self player] pause];

}

CMTime time = [self.player currentTime];

NSLog(@"%lld",self.playerItem.duration.value/self.playerItem.duration.timescale);

NSLog(@"%lld",time.value/time.timescale);

}

#pragma mark - 手勢方法

- (void)handleSingleTapFrom{

[UIView animateWithDuration:0.5 animations:^{

if (self.bottom.alpha == 0.0) {

self.bottom.alpha = 1.0;

}else{

self.bottom.alpha = 0.0;

}

} completion:^(BOOL finish){

}];

}

#pragma mark - slider

- (void)updateValue:(UISlider *)slider{

[self.player seekToTime:CMTimeMakeWithSeconds(slider.value, 1)];

}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{

/* AVPlayerItem "status" property value observer. */

if (context == AVPlayerDemoPlaybackViewControllerStatusObservationContext)

{

AVPlayerStatus status = [[change objectForKey:NSKeyValueChangeNewKey] integerValue];

switch (status)

{

/* Indicates that the status of the player is not yet known because

it has not tried to load new media resources for playback */

case AVPlayerStatusUnknown:

{

}

break;

case AVPlayerStatusReadyToPlay:

{

/* Once the AVPlayerItem becomes ready to play, i.e.

[playerItem status] == AVPlayerItemStatusReadyToPlay,

its duration can be fetched from the item. */

[self initScrubberTimer];

}

break;

case AVPlayerStatusFailed:

{

}

break;

}

}

}

#pragma? maik - 監(jiān)聽

-(void)initScrubberTimer

{

double interval = .1f;

CMTime playerDuration = [self playerItemDuration];

if (CMTIME_IS_INVALID(playerDuration))

{

return;

}

double duration = CMTimeGetSeconds(playerDuration);

if (isfinite(duration))

{

CGFloat width = CGRectGetWidth([self.slider bounds]);

interval = 0.5f * duration / width;

}

NSLog(@"interva === %f",interval);

__weak typeof(self) weakSelf = self;

/* Update the scrubber during normal playback. */

[weakSelf.player addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(interval, NSEC_PER_SEC)

queue:NULL /* If you pass NULL, the main queue is used. */

usingBlock:^(CMTime time)

{

[self syncScrubber];

}];

}

/* Set the scrubber based on the player current time. */

- (void)syncScrubber

{

NSLog(@"syncScrubber");

CMTime playerDuration = [self playerItemDuration];

if (CMTIME_IS_INVALID(playerDuration))

{

self.slider.minimumValue = 0.0;

return;

}

double duration = CMTimeGetSeconds(playerDuration);

if (isfinite(duration))

{

float minValue = [self.slider minimumValue];

float maxValue = [self.slider maximumValue];

double time = CMTimeGetSeconds([self.player currentTime]);

NSLog(@"時間 :: %f",(maxValue - minValue) * time / duration + minValue);

[self.slider setValue:(maxValue - minValue) * time / duration + minValue];

}

}

- (CMTime)playerItemDuration

{

AVPlayerItem *playerItem = [self.player currentItem];

NSLog(@"%ld",playerItem.status);

if (playerItem.status == AVPlayerItemStatusReadyToPlay)

{

return([playerItem duration]);

}

return(kCMTimeInvalid);

}

@end

源碼: http://download.csdn.net/detail/woshiwls/6988449

分享? ? ? ? 收藏? ? 糾錯

推薦文章

1. 你真的了解iOS代理設計模式嗎?

2. ObjC 基于上下文的設計

3. Stevia:一款開源、簡單、直觀的純代碼自動布局類庫

4. iOS開發(fā)調(diào)試技巧總結(持續(xù)更新中)

5. 【iOS】CoreBluetooth2 作為 Central 時的數(shù)據(jù)讀寫

6. 一步一步構建iOS持續(xù)集成:Jenkins+GitLab+蒲公英+FTP

相關推刊

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容