我已直接在firebase Storage中上传了一些歌曲,我只想在AVAudioPlayer中播放这首歌。 以下是我正在尝试的代码:
var mainRef: FIRStorageReference {
return FIRStorage.storage().reference(forURL: "gs://musicapp-d840c.appspot.com")
}
var audioStorageRef: FIRStorageReference{
return mainRef.child("SongsPath")
}
audioStorageRef.downloadURL { url, error in
if let error = error {
print(error.localizedDescription)
} else {
if let url = url {
do {
self.audioPlayer = try AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: String(describing: url)) as URL)
self.audioPlayer.play()
} catch {}
let storyboard = UIStoryboard(name: "AudioPlayer", bundle: nil)
let audioVc = storyboard.instantiateViewController(withIdentifier: "AudioPlayerViewController") as! AudioPlayerViewController
audioVc.playThisSong = String(describing: url)
self.present(audioVc, animated: false, completion: nil)
}
}
}
此处firebase
的歌曲网址正在传递,但它正在跳过self.audioPlayer.play
。 ,我只想流式传输音频。我可以为此获得适当的解决方案吗?
答案 0 :(得分:0)
这不是流媒体的答案。
这是下载文件,在本地存储以及文件下载完毕后播放音频的答案。
使用带有文件扩展名 的路径字符串 获取Firebase存储参考。获取文件网址,使用我们用于Firebase存储参考的相同路径字符串将其存储在设备上。
使用write(toFile:URL)启动下载任务。将下载任务存储在变量中以添加观察者。下载成功后,播放音频。
在Swift 4中:
var player: AVAudioPlayer?
let pathString = "SongsPath.mp3"
let storageReference = Storage.storage().reference().child(pathString)
let fileUrls = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
guard let fileUrl = fileUrls.first?.appendingPathComponent(pathString) else {
return
}
let downloadTask = storageReference.write(toFile: fileUrl)
downloadTask.observe(.success) { _ in
do {
self.player = try AVAudioPlayer(contentsOf: fileUrl)
self.player?.prepareToPlay()
self.player?.play()
} catch let error {
print(error.localizedDescription)
}
}
这是最小的代码。根据需要实施错误处理。