您的位置:首页 > 游戏 > 手游 > 微信小程序怎么做广告推广_组织建设求是网_短视频营销推广方案_网站免费制作

微信小程序怎么做广告推广_组织建设求是网_短视频营销推广方案_网站免费制作

2024/12/23 12:28:12 来源:https://blog.csdn.net/a787188834/article/details/144363455  浏览:    关键词:微信小程序怎么做广告推广_组织建设求是网_短视频营销推广方案_网站免费制作
微信小程序怎么做广告推广_组织建设求是网_短视频营销推广方案_网站免费制作

本地文件、网络文件,区别就是URL创建方式

1、使用AVPlayerItem与AVPlayer(这个简单,只需要设置回调),而不是AVAudioPlayer(这个麻烦,需要设置代理、计时器等等)

2、设置AVPlayerItem的url,然后AVPlayer播放这个AVPlayerItem,在AVPlayer播放AVPlayerItem回调读取播放完毕后,重新设置进度,具体如图

NSString *document=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)firstObject];
    NSString *audioPath = [document stringByAppendingPathComponent:@"voice"];
    NSString *toUrl =  [audioPath stringByAppendingPathComponent:self.filepatch];
    
    NSURL *musicURL = [NSURL fileURLWithPath:toUrl];
    NSError *error;
    self.player = [[AVPlayer alloc] initWithPlayerItem:nil];
    AVPlayerItem * songItem = [[AVPlayerItem alloc]initWithURL:musicURL];
    __weak typeof(songItem) weakSong =songItem;
    [self.player replaceCurrentItemWithPlayerItem:songItem];
    self.player.volume = 1.0;
    weakify(self)
    [_player addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(1, 1) queue:NULL usingBlock:^(CMTime time) {
                //进度 当前时间/总时间
        wSelf.progress.progress =CMTimeGetSeconds(wSelf.player.currentItem.currentTime)/CMTimeGetSeconds(wSelf.player.currentItem.duration);
        NSLog(@"per:%f-%f",CMTimeGetSeconds(wSelf.player.currentItem.currentTime),CMTimeGetSeconds(wSelf.player.currentItem.duration));
        if ( wSelf.progress.progress==1) {
            [weakSong seekToTime:kCMTimeZero];
            [wSelf.player play];
        }
        wSelf.label.text = [NSString stringWithFormat:@"%.2f秒|%.2f秒",CMTimeGetSeconds(wSelf.player.currentItem.currentTime),CMTimeGetSeconds(wSelf.player.currentItem.duration)];
        
    }];
    
    [self.player play];

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com