2012-01-27 13 views
6

MPMoviePlayerController reproduce airPlay con éxito cuando voy a la pantalla de inicio y la aplicación está en segundo plano. Pero cuando toco dos veces el botón de inicio, la aplicación falla. Esto sucede en iOS 5, pero no está en 4.3.MPMoviePlayerController jugando airPlay en el fondo, se bloquea al tocar dos veces el botón de inicio

Para excluir otro código, he creado un nuevo proyecto vacío que solo ejecuta el código de abajo al presionar un botón.

moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:@"http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8"]]; 

NSError *setCategoryError = nil; 
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: &setCategoryError]; 

[[NSNotificationCenter defaultCenter] addObserver:self 
             selector:@selector(moviePlaybackComplete:) 
              name:MPMoviePlayerPlaybackDidFinishNotification 
              object:moviePlayerController]; 

[moviePlayerController setMovieSourceType:MPMovieSourceTypeStreaming]; 
[self addObservers]; 
[self.delegate addSubview:moviePlayerController.view]; 
if([moviePlayerController respondsToSelector:@selector(setAllowsAirPlay:)]) 
{ 
    [moviePlayerController setAllowsAirPlay:YES]; 
} 

moviePlayerController.fullscreen = YES; 

moviePlayerController.scalingMode = MPMovieScalingModeAspectFit; 
[moviePlayerController prepareToPlay]; 
[moviePlayerController play]; 

En la consola me sale el siguiente salida en accidente:

Jan 27 12:08:01 unknown mediaserverd[295] <Error>: <<<<FIGSERVER>>>> FigPlayerRemoteServer_KillAndForceCrashReport: RPCTimeout message received to terminate [295] with reason 'fig rpc timeout -- FigSharedRemote_VolumeCategoryForAudioCategory' 
Jan 27 12:08:01 unknown ReportCrash[308] <Notice>: MS:Notice: Installing: (null) [ReportCrash] (675.00) 
Jan 27 12:08:01 unknown ReportCrash[308] <Error>: Saved crashreport to /Library/Logs/CrashReporter/mediaserverd-2012-01-27-120801.plist using uid: 0 gid: 0, synthetic_euid: 0 egid: 0 
Jan 27 12:08:01 unknown mediaserverd[295] <Error>: <<<<FIGSERVER>>>> FigPlayerRemoteServer_KillAndForceCrashReport: RPCTimeout message received; stackshot generated 
Jan 27 12:08:01 unknown mediaserverd[295] <Error>: <<<<FIGSERVER>>>> FigPlayerRemoteServer_KillAndForceCrashReport: TERMINATING our process [295] 
Jan 27 12:08:02 unknown com.apple.launchd[1] <Notice>: (com.apple.mediaserverd) Exited: Killed: 9 
Jan 27 12:08:02 unknown mediaserverd[310] <Notice>: MS:Notice: Installing: com.apple.mediaserverd [mediaserverd] (675.00) 
Jan 27 12:08:02 unknown kernel[0] <Debug>: Sandbox: ignoring builtin profile for platform app: /usr/sbin/mediaserverd 
Jan 27 12:08:02 unknown kernel[0] <Debug>: Sandbox: ignoring builtin profile for platform app: /usr/sbin/mediaserverd 
Jan 27 12:08:03 unknown mediaserverd[310] <Error>: 12:08:03.383370 com.apple.AVConference: /SourceCache/GameKitServices/GameKitServices-344.3/AVConference.subproj/Sources/AVConferenceServer.m:1862: AVConferenceServerStart aborting - device doesn't support conferencing 

y en el crashreport:

Exception Type: EXC_CRASH (SIGABRT) 
Exception Codes: 0x00000000, 0x00000000 
Crashed Thread: 0 

Last Exception Backtrace: 
0 CoreFoundation     0x33bab8bf 0x33af2000 + 759999 
1 libobjc.A.dylib     0x31bcd1e5 0x31bc4000 + 37349 
2 AVFoundation     0x374f6cb5 -[AVPlayerItem _attachToPlayer:forImmediateEnqueueing:shouldAppendItem:] + 341 
3 AVFoundation     0x374e71f7 -[AVPlayer _insertPlaybackItemOfItem:inPlayerQueueAfterPlaybackItemOfItem:] + 43 
4 AVFoundation     0x374eebf3 __-[AVPlayer _attachItem:andPerformOperation:withObject:]_block_invoke_2 + 1099 
5 libdispatch.dylib    0x3641cd55 0x3641c000 + 3413 
6 libdispatch.dylib    0x36427e8d 0x3641c000 + 48781 
7 CoreFoundation     0x33b7e2dd 0x33af2000 + 574173 
8 CoreFoundation     0x33b014dd 0x33af2000 + 62685 
9 CoreFoundation     0x33b013a5 0x33af2000 + 62373 
10 GraphicsServices    0x31f56fcd 0x31f53000 + 16333 
11 UIKit       0x36d57743 0x36d26000 + 202563 
12 AirplayTest      0x00002e45 main (main.m:16) 
13 AirplayTest      0x00002dd4 start + 40 

Alguna pista lo que podría estar mal?

+0

Tuve el mismo problema. No sucedió todas las veces, por lo general si lancé otras aplicaciones mientras tanto. Supuse que se debía a que la vista principal de la vista MPMoviePlayerController se había descargado incorrectamente cuando el dispositivo necesitaba más recursos – reddersky

+0

¿Tiene algún código en ejecución cuando entra en segundo plano? – Bot

+0

También teniendo este bloqueo, ¿lo arregló? –

Respuesta

0

Esto parece ser un error en iOS versión 5.0. Con el lanzamiento de iOS 5.1 parece que se ha corregido.

Gracias a @Cyril por la confirmación de esto.

0

¿Ha intentado establecer la propiedad useApplicationAudioSession de su controlador de reproducción de película en NO (es decir, para simular el comportamiento predeterminado de iOS 3.1) solo para iOS 5? Parece que hay algunos errores en el manejo de la sesión de audio en iOS 5 que pueden causar la muerte del servidor de audio cuando cambia de aplicación, maneja interrupciones, etc.

Si esto lo soluciona, envíe un informe de error a Apple, como es más un truco que una solución.

Cuestiones relacionadas