gpt4 book ai didi

swift - 使用 Swift 的 ID3 标签

转载 作者:IT王子 更新时间:2023-10-29 05:27:11 31 4
gpt4 key购买 nike

我正在寻找一种使用 Swift 修改 ID3 标签的方法。更具体地说,我想将专辑封面图像写入 mp3/m4a 文件。

Swift 库会是最好的,但我会采用任何可以在 Swift 中本地完成的事情。我不想依赖其他语言的库。

我快速浏览了一下 AVFoundation,但它看起来只是用于音频/视频播放和转换。这是我从 ID3 标签中找到的最接近的:https://developer.apple.com/library/mac/documentation/AVFoundation/Reference/AVAsset_Class/

有什么建议吗?

最佳答案

我一遍又一遍地面对同样的问题,所以我决定为它制作一个快速的框架。您可以在这里找到它:https://github.com/philiphardy/ID3Edit

将它添加到您的 Xcode 项目中,然后通过转到您的项目设置 > 常规 > 嵌入式二进制文件确保将其嵌入

以下是如何在您的代码中实现它:

import ID3Edit
...
do
{
// Open the file
let mp3File = try MP3File(path: "/Users/Example/Music/example.mp3")
// Use MP3File(data: data) data being an NSData object
// to load an MP3 file from memory
// NOTE: If you use the MP3File(data: NSData?) initializer make
// sure to set the path before calling writeTag() or an
// exception will be thrown

// Get song information
print("Title:\t\(mp3File.getTitle())")
print("Artist:\t\(mp3File.getArtist())")
print("Album:\t\(mp3File.getAlbum())")
print("Lyrics:\n\(mp3File.getLyrics())")

let artwork = mp3File.getArtwork()

// Write song information
mp3File.setTitle("The new song title")
mp3File.setArtist("The new artist")
mp3File.setAlbum("The new album")
mp3File.setLyrics("Yeah Yeah new lyrics")

if let newArt = NSImage(contentsOfFile: "/Users/Example/Pictures/example.png")
{
mp3File.setArtwork(newArt, isPNG: true)
}
else
{
print("The artwork referenced does not exist.")
}

// Save the information to the mp3 file
mp3File.writeTag() // or mp3.getMP3Data() returns the NSData
// of the mp3 file
}
catch ID3EditErrors.FileDoesNotExist
{
print("The file does not exist.")
}
catch ID3EditErrors.NotAnMP3
{
print("The file you attempted to open was not an mp3 file.")
}
catch {}

关于swift - 使用 Swift 的 ID3 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30263980/

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