gpt4 book ai didi

swift - 映射 Documents 目录下的 mp3 并转换为 AVPlayerItems

转载 作者:搜寻专家 更新时间:2023-11-01 06:27:28 25 4
gpt4 key购买 nike

我正在使用此方法将主包路径中的 mp3 转换为 avplayer 项目:

let path = Bundle.main.path(forResource: "Baroon", ofType: "mp3")
let url = URL(fileURLWithPath: path!)
let asset = AVAsset(url: url)
let item = AVPlayerItem(asset: asset)

如何自动转换 Documents 目录中存在的每个 mp3?

最佳答案

您可以使用 FileManager 的 contentsOfDirectory(of: URL) 方法获取文档目录中的所有文件并映射包含 mp3 路径扩展的文件:

let documents = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
do {
let playesItems = try FileManager.default.contentsOfDirectory(at: documents, includingPropertiesForKeys: nil).compactMap {
$0.pathExtension == "mp3" ? $0.asset.playerItem : nil
}
for item in playesItems {
print(item.asset.duration)
}
} catch { print(error) }

不要忘记将这些助手添加到您的项目中:

import UIKit
import AVKit

extension URL {
var asset: AVAsset {
return AVAsset(url: self)
}
}
extension AVAsset {
var playerItem: AVPlayerItem {
return AVPlayerItem(asset: self)
}
}

关于swift - 映射 Documents 目录下的 mp3 并转换为 AVPlayerItems,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52141731/

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