swift – 使用AVAudioPlayer播放本地音频文件

swift – 使用AVAudioPlayer播放本地音频文件,第1张

概述我在模拟器中测试我的应用程序. 我正在下载文件并获取它的本地方式,如下所示: 文件:///Users/administrator/Library/Developer/CoreSimulator/Devices/4CDF286B-543F-4137-B5E2-C312E19B992F/data/Containers/Data/Application/E5F13797-A6A8-48A1-B3C3-F 我在模拟器中测试我的应用程序.

我正在下载文件并获取它的本地方式,如下所示:
文件:///Users/administrator/library/Developer/CoreSimulator/Devices/4CDF286B-543F-4137-B5E2-C312E19B992F/data/Containers/Data/Application/E5F13797-A6A8-48A1-B3C3-FBC3D7A03151/documents/4d13e04980d3.mp3

现在我想用AVAudioPlayer播放这个文件,但我总是收到这个错误:

file:///Error Domain=NSOsstatusErrorDomain Code=2003334207 "(null)"

比赛代码:

var alertSound = NSURL(fileURLWithPath: "file:///Users/administrator/library/Developer/CoreSimulator/Devices/4CDF286B-543F-4137-B5E2-C312E19B992F/data/Containers/Data/Application/E5F13797-A6A8-48A1-B3C3-FBC3D7A03151/documents/4d13e04980d3.mp3")        print(alertSound)        var error:NSError?        do {            try audioPlayer = AVAudioPlayer(contentsOfURL: alertSound)            audioPlayer.preparetoPlay()            audioPlayer.play()        } catch {            print(error)        }

我该怎么玩呢?

在iOS8下,您保存的路径在启动时无效.您看到的ID“E5F13797-A6A8-48A1-B3C3-FBC3D7A03151”将随每次发布而变化.

解决方案是保存文件名而不是完整路径,并通过获取documents(或tmp)文件夹的路径并将文件名附加到其中来重新创建URL或完整路径.

总结

以上是内存溢出为你收集整理的swift – 使用AVAudioPlayer播放本地音频文件全部内容,希望文章能够帮你解决swift – 使用AVAudioPlayer播放本地音频文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1029875.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存