小编Eth*_*han的帖子

AVPlayer删除背景音乐

我一直在使用giffycat在我的应用程序中解码,存储和播放GIF.我正在制作它,以便它可以轻松地在UICollectionView的单元格中加载一个gif,所以我决定让每个gif模型都拥有自己的AVPlayer.我注意到,只需创建一个AVPlayer,如下所示,来自其他应用程序的音频就会被杀死!对用户和创作者都很烦人!

// Create an AVURLAsset with an NSURL containing the path to the video
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:[NSURL URLWithString:_mp4] options:nil];
// Create an AVPlayerItem using the asset
AVPlayerItem *item = [AVPlayerItem playerItemWithAsset:asset];
_player = [AVPlayer playerWithPlayerItem:item]; //if this line is commented out, I hear audio, else audio from Spotify is quickly killed...
Run Code Online (Sandbox Code Playgroud)

由于这些视频只是GIF,我想知道是否有某种方法可以取消分配音频会话.我对此并不了解.ples帮忙!

ios avplayer

12
推荐指数
1
解决办法
2442
查看次数

标签 统计

avplayer ×1

ios ×1