AVQueuePlayer play but no sound

后端 未结 2 668
半阙折子戏
半阙折子戏 2021-01-26 11:45
- (void)playVideoInteractionNarration:(NSString *)vNarr{

[self pauseActionExecution];

NSURL *u = [NSURL fileURLWithPath:vNarr];
AVQueuePlayer *player = [[AVQueuePlayer         


        
2条回答
  •  甜味超标
    2021-01-26 12:36

    the right answer is this:

      [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
    

提交回复
热议问题