忘不了的石楠花 2015-12-18 08:03 采纳率: 0%
浏览 1601

视频播放抖动(播放一小段然后再从头播放完)

下面是放在pageViewController里面的子VC来播放视频。
模仿微信做的图片选择器,在浏览图片的时候,如果遇到视频,可以在浏览过程中播放视频。本人新手,希望遇到过这种情况的大神指教一下,谢谢了。

#import "CHVideoPlayerViewController.h"
#import

@interface CHVideoPlayerViewController ()
{
MPMoviePlayerViewController _movie;
UITapGestureRecognizer *_tap;
/
*
* 播放按钮
*/
UIImageView *_playerView;

}
@end

@implementation CHVideoPlayerViewController

  • (void)viewDidLoad {
    [super viewDidLoad];

    _tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapAction:)];

    /**

    • 视频播放对象 */ _movie = [[MPMoviePlayerViewController alloc] initWithContentURL:_url]; _movie.moviePlayer.controlStyle = MPMovieControlStyleNone; [_movie.view setFrame:self.view.bounds]; _movie.view.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth; _movie.moviePlayer.scalingMode = MPMovieScalingModeAspectFit; _movie.moviePlayer.shouldAutoplay = NO; [_movie.view.subviews.firstObject addGestureRecognizer:_tap];

    _playerView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"bofang64"]];
    _playerView.backgroundColor = [UIColor clearColor];
    // [_playerView addGestureRecognizer:_tap];
    _playerView.center = _movie.view.center;
    [_movie.view addSubview:_playerView];

    [self.view addSubview:_movie.view];

    [[NSNotificationCenter defaultCenter] addObserver:self
    selector:@selector(myMovieFinishedCallback:)
    name:MPMoviePlayerPlaybackDidFinishNotification
    object:nil];

}

  • (void)myMovieFinishedCallback:(NSNotification*)notification
    {
    _playerView.alpha = 1;
    self.navigationController.navigationBar.alpha = 0.5;
    self.navigationController.toolbar.alpha = 0.5;
    }

  • (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    }

  • (void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    [_movie.moviePlayer prepareToPlay];

    if (_movie.moviePlayer.playbackState == MPMoviePlaybackStatePlaying) {
    self.navigationController.navigationBar.alpha = 0;
    self.navigationController.toolbar.alpha = 0;
    _playerView.alpha = 0;
    }else {
    self.navigationController.navigationBar.alpha = 0.5;
    self.navigationController.toolbar.alpha = 0.5;
    _playerView.alpha = 1;
    }

}

  • (void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    }

  • (void)viewDidDisappear:(BOOL)animated{
    [super viewDidDisappear:animated];
    [_movie.moviePlayer stop];
    }

  • (void)tapAction:(UITapGestureRecognizer *)tap {
    if (_movie.moviePlayer.playbackState == MPMoviePlaybackStatePlaying) {
    [_movie.moviePlayer pause];
    self.navigationController.navigationBar.alpha = 0.5;
    self.navigationController.toolbar.alpha = 0.5;
    _playerView.alpha = 1;
    }else {
    self.navigationController.navigationBar.alpha = 0;
    self.navigationController.toolbar.alpha = 0;
    [UIView animateWithDuration:0.5 animations:^{
    _playerView.alpha = 0;
    _playerView.transform = CGAffineTransformMakeScale(5, 5);
    } completion:^(BOOL finished) {
    _playerView.transform = CGAffineTransformIdentity;
    [_movie.moviePlayer play];
    }];

    }
    }

  • 写回答

1条回答 默认 最新

  • devmiao 2016-02-13 23:28
    关注
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!