Add id3 tags to mp3 files #1
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Use the metadata from the YouTube page to populate the tags.
In Rust, you can use the
id3
crate to update an MP3 file with ID3 metadata. Theid3
crate provides methods to read, write, and manipulate ID3 metadata in MP3 files.If you want to modify an existing tag, you can use the
Tag::read_from_path
method to read the existing tag from the file. If there is no existing tag, you can create a new one using theTag::new
method. To update the metadata, you can use theset_album
method and then write the updated tag back to the file using thewrite_to_path
method. Here is an example:docs.rs/id3