iOS AVPlayer 后台播放问题自动停止问题 防止应用被后台挂起方法

Posted ios4

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS AVPlayer 后台播放问题自动停止问题 防止应用被后台挂起方法相关的知识,希望对你有一定的参考价值。

 

iOS AVPlayer 后台播放问题自动停止问题 防止应用被后台挂起方法 

技术分享 分类:
 

目录(?)[+]

 

1、创建播放器时创建AVAudioSession

[objc] view plain copy
  1. AVAudioSession *session = [AVAudioSessionsharedInstance];  
  2. [session setCategory:AVAudioSessionCategoryPlaybackerror:nil];  
  3. [session setActive:YES error:nil];  

2、在plist文件中添加字段

Required background modes

在这里添加后台播放:

App plays audio or streams audio/video using AirPlay

3、在设备将要挂起app时添加下面代码

 

[objc] view plain copy
  1. - (void)applicationWillResignActive:(UIApplication *)application {  
  2.       
  3.     if ([MediaPlayerplayer].playStatus == MediaPlayerPlayStatusPlaying) {  
  4.         UIDevice* device = [UIDevicecurrentDevice];  
  5.         if ([devicerespondsToSelector:@selector(isMultitaskingSupported)]) {  
  6.             if(device.multitaskingSupported) {  
  7.                 if(device.multitaskingSupported) {  
  8.                     if ([MediaPlayerplayer].bgTaskId ==UIBackgroundTaskInvalid) {  
  9.                         [MediaPlayerplayer].bgTaskId = [[UIApplicationsharedApplication]beginBackgroundTaskWithExpirationHandler:NULL];  
  10.                     }  
  11.                 }  
  12.             }  
  13.         }  
  14.     }  
  15. }  

在设备进入前台时添加下面代码

 

[objc] view plain copy
  1. if ([MediaPlayerplayer].bgTaskId !=UIBackgroundTaskInvalid) {  
  2.         [[UIApplicationsharedApplication]endBackgroundTask:[MediaPlayerplayer].bgTaskId];  
  3.         [MediaPlayerplayer].bgTaskId =UIBackgroundTaskInvalid;  
  4.     }  

使用这三步基本可以保证在后台的长时间播放问题,且不会因为后台挂起APP导致的播放停止问题。

以上是关于iOS AVPlayer 后台播放问题自动停止问题 防止应用被后台挂起方法的主要内容,如果未能解决你的问题,请参考以下文章

iOS AvPlayer AvAudioPlayer音频的后台播放问题

向上滑动(将应用程序置于后台)并且视频在自定义 AVPLayer 中播放时如何停止画中画?

IOS后台运行 之 后台播放音乐

AVPlayer 从 iOS 7 后台通知播放音频

iOS:如何停止直播 AVPlayer?

播放电影停止 avcapturesession 录制