我正在开发一个可以通过HFP设备播放音乐的项目。但这是一个问题,我想检测音乐播放时是否连接了HFP或A2DP。
现在我正在使用AVFoundation框架来执行此操作。这是代码:
- (BOOL)isConnectedToBluetoothPeripheral
{
BOOL isMatch = NO;
NSString* categoryString = [AVAudioSession sharedInstance].category;
AVAudioSessionCategoryOptions categoryOptions = [AVAudioSession sharedInstance].categoryOptions;
if ((![categoryString isEqualToString:AVAudioSessionCategoryPlayAndRecord] &&
![categoryString isEqualToString:AVAudioSessionCategoryRecord]) ||
categoryOptions != AVAudioSessionCategoryOptionAllowBluetooth)
{
NSError * error = nil;
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord
withOptions:AVAudioSessionCategoryOptionAllowBluetooth
error:&error];
if (error) {
[[AVAudioSession sharedInstance] setCategory:categoryString
withOptions:categoryOptions
error:&error];
return isMatch;
}
}
NSArray * availableInputs = [AVAudioSession sharedInstance].availableInputs;
for (AVAudioSessionPortDescription *desc in availableInputs)
{
if ([[desc portType] isEqualToString:AVAudioSessionPortBluetoothA2DP] || [[desc portType] isEqualToString:AVAudioSessionPortBluetoothHFP])
{
isMatch = YES;
break;
}
}
if (!isMatch)
{
NSArray * outputs = [[[AVAudioSession sharedInstance] currentRoute] outputs];
for (AVAudioSessionPortDescription * desc in outputs)
{
if ([[desc portType] isEqualToString:AVAudioSessionPortBluetoothA2DP] || [[desc portType] isEqualToString:AVAudioSessionPortBluetoothHFP])
{
isMatch = YES;
break;
}
}
}
NSError * error = nil;
[[AVAudioSession sharedInstance] setCategory:categoryString
withOptions:categoryOptions
error:&error];
return isMatch;
}
效果不错但引起另一个问题:播放音乐时,使用此方法检测HFP连接会使音乐播放中断约两秒钟。
所以我尝试了另一种可以降低检测HFP连接效果的方法。我正在使用旗帜
static BOOL isHFPConnectedFlag
表示是否连接了HFP或A2DP。我使用以前的方法只检测一次连接(当应用程序启动时)并将结果保存到isHFPConnectedFlag。还有什么,我观察AudioSessionRouteChange来同步连接状态:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleAudioSessionRouteChangeWithState:) name:AVAudioSessionRouteChangeNotification object:nil];
当路由更改原因为AVAudioSessionRouteChangeReasonNewDeviceAvailable
或AVAudioSessionRouteChangeReasonOldDeviceUnavailable
时,我可以知道HFP已连接或已断开连接。不幸的是,当我在iPhone中连接一些HFP时,系统不会发布此通知,因此在这种情况下我无法检测到连接。
有没有人知道实现这个的原因或更好的方法(在没有音乐播放中断的情况下检测HFP连接)?先谢谢
答案 0 :(得分:2)
-(BOOL) bluetoothDeviceA2DPAvailable {
BOOL available = NO;
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
AVAudioSessionRouteDescription *currentRoute = [audioSession currentRoute];
for (AVAudioSessionPortDescription *output in currentRoute.outputs) {
if (([[output portType] isEqualToString:AVAudioSessionPortBluetoothA2DP] ||
[[output portType] isEqualToString:AVAudioSessionPortBluetoothHFP])) {
available = YES;
break;
}
}
return available;
}
答案 1 :(得分:0)
Swift 5 版本:
string username = Console.ReadLine();
string place = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string date = DateTime.Now.ToString("h:mm:ss");
StreamWriter FajlW = new StreamWriter(Path.Combine(place,username + "_" + date + ".txt"));