我需要重现一个MP3文件,我正在使用这段代码:
import AVFoundation
var player: AVAudioPlayer?
@IBAction func playSound(sender: UIButton) {
//Making the phone vibrate
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
//Playing a sound
let url = Bundle.main.url(forResource: "audio_file_name", withExtension: "mp3")!
do {
self.player = try AVAudioPlayer(contentsOf: url)
self.player?.delegate = self
self.player?.prepareToPlay()
self.player?.play()
} catch let error {
print(error.localizedDescription)
}
}
我没有收到任何错误,但没有再现声音。我还在App Capabilities中启用了Inter-App音频,在“Copy Bundle Resources”中添加了MP3文件,我正在真实设备上进行测试。 有什么建议吗?我已尝试过此类其他问题中提供的所有其他解决方案......
答案 0 :(得分:0)
我已经解决了。
一切都不起作用,因为我在后台队列中重现了这段代码。 将其移至主队列只是解决了问题。
答案 1 :(得分:-1)
这段代码对我很有用
func playAudio(){
let audioUrl = URL(fileURLWithPath: value, relativeTo: someBasePath)
do{
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
try AVAudioSession.sharedInstance().setActive(true)
audioPlayer = try AVAudioPlayer(contentsOf: audioUrl, fileTypeHint: AVFileTypeMPEGLayer3)
audioPlayer.prepareToPlay()
audioPlayer.play()
}catch{
print(error.localizedDescription)
}
}
并且您必须将audioPlayer
定义为类成员,否则它将超出范围,并且它将无法正常工作。
var audioPlayer: AVAudioPlayer!
多数民众赞成