gpt4 book ai didi

core-audio - AKAudioPlayer : No sound in speakers, 仅带耳机

转载 作者:行者123 更新时间:2023-12-02 07:20:22 26 4
gpt4 key购买 nike

使用 AudioKit 进行声音管理时,我注意到这段非常简单的代码存在问题(错误?)。

import AudioKit

class MainViewController: UIViewController {

var audioFile: AKAudioFile?
var audioPlayer: AKAudioPlayer?

override func viewDidLoad() {
super.viewDidLoad()
}

@IBAction func onPlayButtonClick(_ sender: Any) {

do {
audioFile = try AKAudioFile(forReading: Bundle.main.url(forResource: "3e", withExtension: "mp3")!)

audioPlayer = try AKAudioPlayer(file: audioFile!)

AudioKit.output = audioPlayer
AudioKit.start()

audioPlayer!.play()


} catch {
print(error)
}
}
}

当用play()方法启动播放时,日志和进程(播放时长,currentTime)一切正常。但是我听不到扬声器的声音(只有一种风声)。一旦我插入耳机并再次点击按钮,我通常会听到音频。然后,我拔下耳机并点击按钮,我听不到声音(只有风声)。

我在 iPhone 5S 上遇到过这个问题

在 iPad5 上面对这个,我在模拟器上面对这个。我没有其他设备可以尝试重现。

两种设备:iOS 11.1.2 和 AudioKit:v4.0.4

注意:我的扬声器与任何其他应用程序一起正常工作,我已经检查了音量。未插入耳机时,默认输出设备设置为扬声器。

最佳答案

根据Configuring an Audio Session指南,默认情况下,AVAudioSessionCategory 设置为

In iOS, setting the Ring/Silent switch to silent mode silences any audio being played by the app.

由于 iPad 和模拟器没有此开关,它们将始终通过扬声器播放,但在硬件 iPhone 的情况下,它们只会在静音模式下通过耳机播放而不通过扬声器播放,除非 session 类别已更改。

您可以直接使用 AVAudioSession 更改 session 类别:

do {
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
catch {
print("failed to set category")
}

或者您可以使用 AudioKit 的 AKSettings 包装器:

AudioKit.start()
do {
try AKSettings.setSession(category: AKSettings.SessionCategory.playback)
} catch {
print("failed to set category")
}

根据AVSessionCategory docs , 播放类别是

The category for playing recorded music or other sounds that are central to the successful use of your app.

因此它会假定用户希望在使用该应用程序时覆盖静音模式。

关于core-audio - AKAudioPlayer : No sound in speakers, 仅带耳机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47684764/

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