zoukankan      html  css  js  c++  java
  • AVAudioPlayer ,MPMoviePlayerController,简单使用

    1、音频播放,

    需要引入系统库文件AVFoundation.framework,并加上头文件:

    #import <AVFoundation/AVFoundation.h>

    - (void)readPoemVoiceAtIndex:(NSInteger )index

    {

        NSString *poemVoice = [_poemVoiceArray objectAtIndex:index];

        //    NSLog(@"%@",read);

        NSString *path = [[NSBundle mainBundle]pathForResource:poemVoice ofType:@"wav"];

        if (!path) {  return;    }//AVAudioPlayer的初始化任务可以放到一个一步线程中,这样有益于用户体验。

        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

            NSURL *url = [NSURL fileURLWithPath:path];

            NSError *error;

            self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];

            [_player prepareToPlay];

            dispatch_async(dispatch_get_main_queue(), ^{

                self.player.volume =0.5;// _poemSet.volume;

               [_player play];

            });

        });

    }

    1、视频播放,

    进行视频操作需要引入库MediaPlayer.framework,并加入头文件:

    #import <MediaPlayer/MediaPlayer.h>

    -(void)moveStep1

    {

    #pragma mark - make appStar animation

        /*添加视屏播放开启界面,使用到通知中心的方法,用于监听视频播放完毕*/

        //    NSString *url=[[NSBundle mainBundle]pathForResource:@"Comp 9" ofType:@"mov"];

        NSString *url=[[NSBundle mainBundle]pathForResource:@"mov_bbb" ofType:@"mp4"];

        _player=[[MPMoviePlayerController alloc]initWithContentURL:[NSURL fileURLWithPath:url]];

        _player.view.transform = CGAffineTransformMakeRotation(1.57);

        [[NSNotificationCenter defaultCenter]

         addObserver:self

         selector:@selector(beginView) name:MPMoviePlayerPlaybackDidFinishNotification object:_player];

        _player.scalingMode=MPMovieScalingModeAspectFill;  

      _player.controlStyle=MPMovieControlStyleNone;

      _player.view.frame=CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen]   bounds].size.height);

      [_player setFullscreen:YES animated:YES];

      [self.window addSubview:_player.view];

      [_player play];

    }

    -(void)beginView

    {    [[NSNotificationCenter defaultCenter]removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:_player];

        [_player.view removeFromSuperview];  

    //    self.window.rootViewController = xueIntbc;

    }

     

     

  • 相关阅读:
    P1182 数列分段`Section II`
    算法整理:Floyd_多源最短路
    【FBI WARNING】递归(高级数据结构的基础)
    【FBI WARNING】DP 从看透到看开
    两个例题
    结构体
    环状序列(Circular Sequence, ACM/ICPC Seoul 2004, UVa1584)
    生成元(Digit Generator, ACM/ICPC Seoul 2005, UVa1583)
    猜数字游戏的提示(Master-Mind Hints, UVa 340)
    回文词(Palindromes, UVa401)
  • 原文地址:https://www.cnblogs.com/longtaozi/p/3836512.html
Copyright © 2011-2022 走看看