2021-04-03 00:47:44 +00:00
|
|
|
|
//! [![Crate](https://img.shields.io/crates/v/lofty.svg)](https://crates.io/crates/lofty)
|
|
|
|
|
//! [![Crate](https://img.shields.io/crates/d/lofty.svg)](https://crates.io/crates/lofty)
|
|
|
|
|
//! [![Crate](https://img.shields.io/crates/l/lofty.svg)](https://crates.io/crates/lofty)
|
|
|
|
|
//! [![Documentation](https://docs.rs/lofty/badge.svg)](https://docs.rs/lofty/)
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-04 03:32:54 +00:00
|
|
|
|
//! This is a fork of [Audiotags](https://github.com/TianyiShi2001/audiotags), adding support for more file types and (optionally) duration.
|
|
|
|
|
//!
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! Parse, convert, and write metadata to audio files of different file types.
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2020-10-27 14:38:31 +00:00
|
|
|
|
//! This crate aims to provide a unified trait for parsers and writers of different audio file formats.
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! Without this crate, you would otherwise need to learn the different APIs in **id3**, **mp4ameta**, etc.
|
|
|
|
|
//! in order to parse metadata in different file formats.
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! # Supported Formats
|
|
|
|
|
//!
|
|
|
|
|
//! | File Format | Metadata Format | Backend |
|
|
|
|
|
//! |---------------|-----------------|-------------------------------------------------------------|
|
|
|
|
|
//! | `mp3` | ID3v2.4 | [**id3**](https://github.com/polyfloyd/rust-id3) |
|
|
|
|
|
//! | `wav` | TODO | TODO |
|
|
|
|
|
//! | `ape` | TODO | TODO |
|
|
|
|
|
//! | `opus` | Vorbis Comment | [**opus_headers**](https://github.com/zaethan/opus_headers) |
|
|
|
|
|
//! | `ogg` | Vorbis Comment | [**lewton**](https://github.com/RustAudio/lewton) |
|
|
|
|
|
//! | `flac` | Vorbis Comment | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
|
|
|
|
|
//! | `m4a/mp4/...` | Vorbis Comment | [**mp4ameta**](https://github.com/Saecki/rust-mp4ameta) |
|
|
|
|
|
//!
|
|
|
|
|
//! # Examples
|
|
|
|
|
//!
|
|
|
|
|
//! ```
|
|
|
|
|
//! use lofty::{Tag, TagType};
|
|
|
|
|
//!
|
|
|
|
|
//! // Guess the format from the extension, in this case `mp3`
|
2021-04-06 20:37:31 +00:00
|
|
|
|
//! let mut tag = Tag::new().read_from_path("tests/assets/a.mp3").unwrap();
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! tag.set_title("Foo");
|
|
|
|
|
//!
|
|
|
|
|
//! // You can convert the tag type and save the metadata to another file.
|
2021-04-06 20:37:31 +00:00
|
|
|
|
//! tag.to_dyn_tag(TagType::Mp4).write_to_path("tests/assets/a.m4a");
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! // You can specify the tag type, but when you want to do this
|
|
|
|
|
//! // also consider directly using the concrete type
|
2021-04-06 20:37:31 +00:00
|
|
|
|
//! let tag = Tag::new().with_tag_type(TagType::Mp4).read_from_path("tests/assets/a.m4a").unwrap();
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! assert_eq!(tag.title(), Some("Foo"));
|
|
|
|
|
//! ```
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-03 17:03:40 +00:00
|
|
|
|
//! # Features
|
|
|
|
|
//!
|
2021-04-07 00:57:30 +00:00
|
|
|
|
//! By default, `full` (`all_tags` and `duration`) are enabled.
|
2021-04-03 17:03:40 +00:00
|
|
|
|
//!
|
2021-04-07 00:57:30 +00:00
|
|
|
|
//! `all_tags` provides all the track metadata (`artists`, `album`, etc.) in [AnyTag].
|
2021-04-03 17:03:40 +00:00
|
|
|
|
//!
|
|
|
|
|
//! `duration` provides the `duration` field in [AnyTag].
|
|
|
|
|
//!
|
|
|
|
|
//! Either one can be disabled if it doesn't fit your use case.
|
|
|
|
|
//!
|
2021-04-07 00:57:30 +00:00
|
|
|
|
//! In addition to this, each format can be individually enabled.
|
|
|
|
|
//! All features are: `opus, ogg, flac, mp4, mp3, wav`.
|
|
|
|
|
//!
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! ## Performance
|
|
|
|
|
//!
|
|
|
|
|
//! Using lofty incurs a little overhead due to vtables if you want to guess the metadata format (from file extension).
|
|
|
|
|
//! Apart from this, the performance is almost the same as directly calling the function provided from those ‘specialized’ crates.
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! No copies will be made if you only need to read and write metadata of one format. If you want to convert between tags, copying is
|
|
|
|
|
//! unavoidable, no matter if you use lofty or use getters and setters provided by specialized libraries. Lofty is not making additional
|
|
|
|
|
//! unnecessary copies.
|
2020-10-25 14:58:50 +00:00
|
|
|
|
//!
|
2021-04-03 15:44:33 +00:00
|
|
|
|
//! Theoretically, it is possible to achieve zero-copy conversions if all parsers can parse into a unified struct.
|
|
|
|
|
//! However, this is going to be a lot of work.
|
2020-10-25 14:58:50 +00:00
|
|
|
|
|
2021-04-03 00:47:44 +00:00
|
|
|
|
//#![forbid(unused_crate_dependencies, unused_import_braces)]
|
|
|
|
|
#![warn(clippy::pedantic)]
|
|
|
|
|
#![allow(
|
|
|
|
|
clippy::too_many_lines,
|
|
|
|
|
clippy::cast_precision_loss,
|
|
|
|
|
clippy::cast_sign_loss,
|
|
|
|
|
clippy::cast_possible_wrap,
|
|
|
|
|
clippy::clippy::cast_possible_truncation,
|
|
|
|
|
clippy::module_name_repetitions
|
|
|
|
|
)]
|
|
|
|
|
|
2021-04-03 15:44:33 +00:00
|
|
|
|
#[doc(hidden)]
|
2021-04-03 01:07:28 +00:00
|
|
|
|
mod macros;
|
2020-10-27 11:40:51 +00:00
|
|
|
|
|
2021-04-03 16:19:21 +00:00
|
|
|
|
mod types;
|
2021-04-03 16:29:51 +00:00
|
|
|
|
pub use crate::types::{
|
|
|
|
|
album::Album,
|
|
|
|
|
anytag::AnyTag,
|
|
|
|
|
picture::{MimeType, Picture},
|
|
|
|
|
};
|
2020-10-26 02:14:28 +00:00
|
|
|
|
|
2021-04-03 16:19:21 +00:00
|
|
|
|
mod tag;
|
|
|
|
|
pub use crate::tag::{Tag, TagType};
|
2021-04-03 00:47:44 +00:00
|
|
|
|
|
2021-04-03 16:19:21 +00:00
|
|
|
|
mod error;
|
|
|
|
|
pub use crate::error::{Error, Result};
|
2020-10-29 18:01:21 +00:00
|
|
|
|
|
2021-04-03 16:19:21 +00:00
|
|
|
|
mod components;
|
2021-04-07 00:57:30 +00:00
|
|
|
|
pub use crate::components::*;
|
2020-10-29 18:01:21 +00:00
|
|
|
|
|
2021-04-03 16:19:21 +00:00
|
|
|
|
mod traits;
|
|
|
|
|
pub use crate::traits::{AudioTag, AudioTagEdit, AudioTagWrite, ToAny, ToAnyTag};
|