gpt4 book ai didi

ios - 在 iOS 7 和 8 中通过 AVPlayer 使用远程控制

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:21:31 25 4
gpt4 key购买 nike

我正在尝试编写一个简单的个人广播应用程序,但遇到了一个烦人的问题。

我尝试使用 AVPlayer 从远程服务器播放 .pls(流)文件,我成功地让它工作了。我现在可以播放流,但正如我在标题中提到的,当应用程序处于后台时,我无法远程控制播放/暂停选项。

我在 Internet 上搜索了很多有关该主题的内容,并找到了两个解决方案。

1- 如 Apple 的 Remote Control Events文档,使用“MPRemoteCommandCenter”类来处理这个问题,但是对于这个解决方案,我找不到任何好的解释来说明我将如何使用 AVPlayer。这让我想到了第二个解决方案,因为我不知道如何使用 MPRemoteCommandCenter 类。

2- 几乎所有人都提到过remoteControlReceivedWithEvent: 方法。但是,当我尝试使用该方法时,我无法得到回应。我的 remoteControlReceivedWithEvent: 方法从未被调用过。这是我实现行为的代码:

我有两个类,一个名为 EGPlayRadio.m,其中包含 AVPlayer 和 AVAudioSession 内容,另一个是 EGMainMenuViewController.m,它显示播放按钮和暂停按钮以流式传输 radio 。

  • 我注意在调用 [[UIApplication sharedApplication] beginReceivingRemoteControlEvents] 方法之前先调用 [AVSession sharedInstance]

  • 我还注意到从项目的build设置中授予应用后台音频播放权限。

但是,在网上搜索了很多之后,我找不到适合我的问题的解决方案。这是我实现的两个类:

EGPlayRadio.m

#import "EGPlayRadio.h"
#import <MediaPlayer/MediaPlayer.h>
#import <AVFoundation/AVFoundation.h>

@interface EGPlayRadio () <AVAudioPlayerDelegate>

@property (nonatomic, strong) AVAudioSession *audioSession;
@property (nonatomic, strong) AVPlayer *player;

@end

@implementation EGPlayRadio

- (id)initDefault
{
self = [super init];
if (self)
{
_audioSession = [AVAudioSession sharedInstance];
[_audioSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker error:nil];
[[AVAudioSession sharedInstance] setActive: YES error: nil];
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionMixWithOthers error:nil];
NSURL *url = [[NSURL alloc] initWithString:@"http://LINK-OF-THE-PLS-FILE"];
_player = [[AVPlayer alloc] initWithURL:url];
}
return self;
}

- (void)playRadio
{
[self.player play];
}

- (void)pauseRadio
{
[self.player pause];
}

EGMainMenuViewController.m

@interface EGRMainMenuViewController ()

@property (nonatomic, strong) IBOutlet UIButton *playButton;
@property (nonatomic, strong) IBOutlet UIButton *pauseButton;
@property (nonatomic, strong) EGPlayRadio *radioControl;

@end

@implementation EGRMainMenuViewController

- (void)viewDidLoad {
[super viewDidLoad];
self.radioControl = [[EGPlayRadio alloc] initDefault];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[self becomeFirstResponder];
self.pauseButton.enabled = NO;
self.pauseButton.alpha = 0.3f;
}

- (BOOL)canBecomeFirstResponder
{
return YES;
}

- (IBAction)musicInteracted:(id)sender
{
if (sender == self.playButton)
{
self.pauseButton.enabled = YES;
self.pauseButton.alpha = 1.0f;
self.playButton.enabled = NO;
self.playButton.alpha = 0.3f;
[self.radioControl playRadio];
}
else
{
self.pauseButton.enabled = NO;
self.pauseButton.alpha = 0.3f;
self.playButton.enabled = YES;
self.playButton.alpha = 1.0f;
[self.radioControl pauseRadio];
}

}

-(void)remoteControlReceivedWithEvent:(UIEvent *)event
{
switch (event.subtype) {
case UIEventSubtypeRemoteControlTogglePlayPause:
//[streamer pause];
break;
case UIEventSubtypeRemoteControlPlay:
//[streamer start];
break;
case UIEventSubtypeRemoteControlPause:
//[streamer pause];
break;
case UIEventSubtypeRemoteControlStop:
//[streamer stop];
break;
default:
break;
}

}

@end

最佳答案

感谢@Onur Şahindur,经过几年的努力,我终于有了这个工作。不敢相信这在任何地方都没有记录。正如 Onur 所说,在 stackoverflow 上我们中有很多人都为此苦苦挣扎,但这是第一个真正有效的解决方案。

我还使用“MPRemoteCommandCenter”类进行了此操作。我通过对管理我的 AVPlayer 的单例的方法调用在 appDelegate 中实现了所有内容。这是我的解决方案:

_audioSession = [AVAudioSession sharedInstance];

// Previously, I used [_audioSession setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionMixWithOthers error:&setCategoryError];
// As noted by @Onur, it has to be the following (without options)
[_audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];

// Apple documentation says you don't need the following if you are using
// the MPRemoteCommandCenter, but that is not true. It is needed.
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[self becomeFirstResponder];


MPRemoteCommandCenter *commandCenter = [MPRemoteCommandCenter sharedCommandCenter];
[commandCenter.togglePlayPauseCommand setEnabled:YES];
[commandCenter.playCommand setEnabled:YES];
[commandCenter.pauseCommand setEnabled:YES];
[commandCenter.nextTrackCommand setEnabled:YES];
[commandCenter.previousTrackCommand setEnabled:YES];
[commandCenter.togglePlayPauseCommand addTargetWithHandler: ^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent * _Nonnull event) {
[[MediaController sharedInstance] playOrPauseMusic]; // Begin playing the current track.
return MPRemoteCommandHandlerStatusSuccess;
}];

[commandCenter.playCommand addTargetWithHandler: ^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent * _Nonnull event) {
[[MediaController sharedInstance] playOrPauseMusic]; // Begin playing the current track.
return MPRemoteCommandHandlerStatusSuccess;
}];

[commandCenter.pauseCommand addTargetWithHandler: ^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent * _Nonnull event) {
[[MediaController sharedInstance] playOrPauseMusic]; // Begin playing the current track.
return MPRemoteCommandHandlerStatusSuccess;
}];

[commandCenter.nextTrackCommand addTargetWithHandler: ^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent * _Nonnull event) {
[[MediaController sharedInstance] fastForward]; // forward to next track.
return MPRemoteCommandHandlerStatusSuccess;
}];

[commandCenter.previousTrackCommand addTargetWithHandler: ^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent * _Nonnull event) {
[[MediaController sharedInstance] rewind]; // back to previous track.
return MPRemoteCommandHandlerStatusSuccess;
}];

[commandCenter.stopCommand setEnabled:NO];
[commandCenter.skipForwardCommand setEnabled:NO];
[commandCenter.skipBackwardCommand setEnabled:NO];
[commandCenter.enableLanguageOptionCommand setEnabled:NO];
[commandCenter.disableLanguageOptionCommand setEnabled:NO];
[commandCenter.changeRepeatModeCommand setEnabled:NO];
[commandCenter.changePlaybackRateCommand setEnabled:NO];
[commandCenter.changeShuffleModeCommand setEnabled:NO];
// Seek Commands
[commandCenter.seekForwardCommand setEnabled:NO];
[commandCenter.seekBackwardCommand setEnabled:NO];
[commandCenter.changePlaybackPositionCommand setEnabled:NO];
// Rating Command
[commandCenter.ratingCommand setEnabled:NO];

// Feedback Commands
// These are generalized to three distinct actions. Your application can provide
// additional context about these actions with the localizedTitle property in
// MPFeedbackCommand.
[commandCenter.likeCommand setEnabled:NO];
[commandCenter.dislikeCommand setEnabled:NO];
[commandCenter.bookmarkCommand setEnabled:NO];

除了上述内容(我将其放入 appDelegate - application:didFinishLaunchingWithOptions)之外,还将其添加到您的 appDelegate 中:

- (BOOL) canBecomeFirstResponder
{
return YES;
}

然后,每次您更改要播放的媒体项目时,我都会从我的媒体 Controller 单例中执行以下代码:

ipodControlArtwork = [[MPMediaItemArtwork alloc]initWithImage:artworkImage];
if (artworkImage != nil && nowPlayingArtist != nil && nowPlayingTitle != nil && ipodControlArtwork != nil) {

[MPNowPlayingInfoCenter defaultCenter].nowPlayingInfo = [NSMutableDictionary dictionaryWithObjectsAndKeys:
nowPlayingTitle, MPMediaItemPropertyTitle,
nowPlayingArtist, MPMediaItemPropertyArtist,
ipodControlArtwork, MPMediaItemPropertyArtwork,
[NSNumber numberWithDouble:0.0], MPNowPlayingInfoPropertyPlaybackRate, nil];
}

关于ios - 在 iOS 7 和 8 中通过 AVPlayer 使用远程控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29332001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com