zoukankan      html  css  js  c++  java
  • iOS 调用音乐播放以及视频播放器

    音乐播放

    NSString *path = [[NSBundle mainBundle] pathForResource:@"预谋" ofType:@"mp3"];

        if (path) {

            NSURL *url = [NSURL fileURLWithPath:path];

            player= [[AVAudioPlayer alloc]initWithContentsOfURL:url error:nil];

            [player setDelegate:self];

            player.volume = 1;

            player.pan = 1;

            player.numberOfLoops = -1;

            if ([player prepareToPlay]) {

                NSLog(@"prepareToPlay:%@",path);

                [player play];

            } else {

                NSLog(@"no prepareToPlay");

            }

            //[player release];

        }

    一定要注意player的引用,假设直接在函数内部申请一个暂时变量。那么这个player会在函数运行完毕,运行release 会被释放掉,假设须要在函数内部使用。那么请sleep下。只是这样会阻塞主线程的运作

    视频播放器

    NSURL * movieurl = [NSURL URLWithString:@"http://v.youku.com/player/getRealM3U8/vid/XNDUwNjc4MzA4/type/video.m3u8"];

        MPMoviePlayerViewController *player = [[MPMoviePlayerViewController alloc] initWithContentURL:movieurl];

        [self presentMoviePlayerViewControllerAnimated:player];


  • 相关阅读:
    Eclipse安装SVN插件(转载)
    推荐eclipse插件Properties Editor(转)
    Eclipse快捷键(转载)
    添加路由命令
    oracle 随机数(转载)
    《图解CSS3——第1章 揭开CSS3的面纱》
    css高度自适应
    JS生成随机数
    判断IE浏览器版本
    IE下SCRIPT5009: “JSON”未定义
  • 原文地址:https://www.cnblogs.com/yfceshi/p/6784912.html
Copyright © 2011-2022 走看看