我正在将下载的文件保存到filemanager中,我需要在脱机期间播放该文件。我正在获取网址,但除了AVPlaye之外我不知道如何付款。我正在使用Iuke的自动存储塔作为音频播放器和控件。
我附加了从文件管理器中找到的URL。
/ Users / im038 / Library / Developer / CoreSimulator / Devices / 5E2B9097-576A-4636-B397-0283EC29D72C / data / Containers / Data / Application / F5CBBBB6-B4ED-4260-91D1-3422228338DF / Documents / 01-PURUSHARTHA。 mp3
我已附上JUKEBOX GitHub链接以供您参考 https://github.com/teodorpatras/Jukebox
我还没有使用destinationURL.lastpathcomponents我已经将整个URL传递给了自动存储塔,但是它没有帮助我。
jukebox = Jukebox(delegate: self, items: [
JukeboxItem(URL: URL(string: "/Users/im038/Library/Developer/CoreSimulator/Devices/5E2B9097-576A-4636-B397-0283EC29D72C/data/Containers/Data/Application/F5CBBBB6-B4ED-4260-91D1-3422228338DF/Documents/01-PURUSHARTHA.mp3")!) ])!
print(constantsList.playTypeArray.musicFile)
switch jukebox.state {
case .ready :
jukebox.play(atIndex: 0)
case .playing :
jukebox.playNext()
case .paused :
jukebox.play()
default:
jukebox.stop()
}