2021-04-23 18:12:55 -04:00
|
|
|
|
//! [](https://github.com/Serial-ATA/lofty-rs/actions/workflows/ci.yml)
|
|
|
|
|
//! [](https://crates.io/crates/lofty)
|
|
|
|
|
//! [](https://crates.io/crates/lofty)
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-03 23:32:54 -04:00
|
|
|
|
//! This is a fork of [Audiotags](https://github.com/TianyiShi2001/audiotags), adding support for more file types and (optionally) duration.
|
|
|
|
|
//!
|
2021-04-03 11:44:33 -04: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 11:44:33 -04: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 11:44:33 -04:00
|
|
|
|
//! # Supported Formats
|
|
|
|
|
//!
|
2021-05-16 01:32:25 -04:00
|
|
|
|
//! | File Format | Extensions | Read | Write | Duration | Metadata Format(s) |
|
|
|
|
|
//! |-------------|-------------------------------------------|------|-------|----------|----------------------|
|
|
|
|
|
//! | Ape | `ape` |**X** |**X** | | `APEv2` |
|
|
|
|
|
//! | AIFF | `aiff`, `aif` |**X** |**X** | | `ID3v2` |
|
|
|
|
|
//! | FLAC | `flac` |**X** |**X** | | `Vorbis Comments` |
|
|
|
|
|
//! | MP3 | `mp3` |**X** |**X** |**X** | `ID3v2` |
|
|
|
|
|
//! | MP4 | `mp4`, `m4a`, `m4b`, `m4p`, `m4v`, `isom` |**X** |**X** | | `Vorbis Comments` |
|
|
|
|
|
//! | Opus | `opus` |**X** |**X** | | `Vorbis Comments` |
|
|
|
|
|
//! | Ogg | `ogg`, `oga` |**X** |**X** | | `Vorbis Comments` |
|
|
|
|
|
//! | WAV | `wav`, `wave` |**X** |**X** | | `RIFF INFO`, `ID3v2` |
|
2021-04-03 11:44:33 -04:00
|
|
|
|
//!
|
|
|
|
|
//! # Examples
|
|
|
|
|
//!
|
|
|
|
|
//! ```
|
2021-04-22 18:01:09 -04:00
|
|
|
|
//! use lofty::{Tag, TagType};
|
2021-04-03 11:44:33 -04:00
|
|
|
|
//!
|
|
|
|
|
//! // Guess the format from the extension, in this case `mp3`
|
2021-04-22 18:01:09 -04:00
|
|
|
|
//! let mut tag = Tag::new().read_from_path("tests/assets/a.mp3").unwrap();
|
2021-04-03 11:44:33 -04:00
|
|
|
|
//! tag.set_title("Foo");
|
|
|
|
|
//!
|
2021-04-22 18:01:09 -04:00
|
|
|
|
//! // You can also guess the format from the file signature
|
|
|
|
|
//! let mut tag_sig = Tag::new().read_from_path_signature("tests/assets/a.wav").unwrap();
|
|
|
|
|
//! tag_sig.set_artist("Foo artist");
|
|
|
|
|
//!
|
2021-04-03 11:44:33 -04:00
|
|
|
|
//! // You can convert the tag type and save the metadata to another file.
|
2021-04-06 16:37:31 -04: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 11:44:33 -04:00
|
|
|
|
//! // You can specify the tag type, but when you want to do this
|
|
|
|
|
//! // also consider directly using the concrete type
|
2021-04-22 18:01:09 -04:00
|
|
|
|
//! let tag = Tag::new().with_tag_type(TagType::Mp4).read_from_path("tests/assets/a.m4a").unwrap();
|
2021-04-03 11:44:33 -04:00
|
|
|
|
//! assert_eq!(tag.title(), Some("Foo"));
|
|
|
|
|
//! ```
|
2020-10-27 02:08:05 +00:00
|
|
|
|
//!
|
2021-04-03 13:03:40 -04:00
|
|
|
|
//! # Features
|
|
|
|
|
//!
|
2021-04-06 20:57:30 -04:00
|
|
|
|
//! By default, `full` (`all_tags` and `duration`) are enabled.
|
2021-04-03 13:03:40 -04:00
|
|
|
|
//!
|
2021-04-21 13:03:06 -04:00
|
|
|
|
//! `all_tags` provides all tag types (ID3, RIFF, Vorbis, etc).
|
2021-04-03 13:03:40 -04:00
|
|
|
|
//!
|
2021-04-21 13:03:06 -04:00
|
|
|
|
//! `duration` provides the `duration` field in each tag (ex. Tag.duration).
|
2021-04-03 13:03:40 -04:00
|
|
|
|
//!
|
|
|
|
|
//! Either one can be disabled if it doesn't fit your use case.
|
|
|
|
|
//!
|
2021-04-06 20:57:30 -04:00
|
|
|
|
//! In addition to this, each format can be individually enabled.
|
2021-04-22 18:04:48 -04:00
|
|
|
|
//! All features are: `ape, flac, id3, mp4, opus, vorbis, riff`.
|
2021-04-06 20:57:30 -04:00
|
|
|
|
//!
|
2021-04-03 11:44:33 -04: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 11:44:33 -04: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-02 20:47:44 -04:00
|
|
|
|
#![warn(clippy::pedantic)]
|
2021-05-16 00:39:19 -04:00
|
|
|
|
#![warn(missing_docs)]
|
2021-04-02 20:47:44 -04:00
|
|
|
|
#![allow(
|
|
|
|
|
clippy::too_many_lines,
|
|
|
|
|
clippy::cast_precision_loss,
|
|
|
|
|
clippy::cast_sign_loss,
|
|
|
|
|
clippy::cast_possible_wrap,
|
|
|
|
|
clippy::clippy::cast_possible_truncation,
|
2021-04-14 12:17:38 -04:00
|
|
|
|
clippy::module_name_repetitions,
|
|
|
|
|
clippy::must_use_candidate,
|
|
|
|
|
clippy::doc_markdown,
|
2021-04-15 11:53:10 -04:00
|
|
|
|
clippy::let_underscore_drop,
|
|
|
|
|
clippy::match_wildcard_for_single_variants
|
2021-04-02 20:47:44 -04:00
|
|
|
|
)]
|
|
|
|
|
|
2021-04-03 11:44:33 -04:00
|
|
|
|
#[doc(hidden)]
|
2021-04-02 21:07:28 -04:00
|
|
|
|
mod macros;
|
2020-10-27 11:40:51 +00:00
|
|
|
|
|
2021-04-03 12:19:21 -04:00
|
|
|
|
mod types;
|
2021-04-03 12:29:51 -04:00
|
|
|
|
pub use crate::types::{
|
|
|
|
|
album::Album,
|
|
|
|
|
anytag::AnyTag,
|
2021-05-15 23:43:31 -04:00
|
|
|
|
picture::{MimeType, Picture, PictureType},
|
2021-04-03 12:29:51 -04:00
|
|
|
|
};
|
2020-10-26 02:14:28 +00:00
|
|
|
|
|
2021-04-03 12:19:21 -04:00
|
|
|
|
mod tag;
|
2021-04-22 22:50:13 -04:00
|
|
|
|
pub use crate::tag::{Id3Format, Tag, TagType, VorbisFormat};
|
2021-04-02 20:47:44 -04:00
|
|
|
|
|
2021-04-03 12:19:21 -04:00
|
|
|
|
mod error;
|
|
|
|
|
pub use crate::error::{Error, Result};
|
2020-10-29 18:01:21 +00:00
|
|
|
|
|
2021-04-03 12:19:21 -04:00
|
|
|
|
mod components;
|
2021-04-13 23:29:13 -04:00
|
|
|
|
pub use crate::components::tags::*;
|
2020-10-29 18:01:21 +00:00
|
|
|
|
|
2021-04-03 12:19:21 -04:00
|
|
|
|
mod traits;
|
|
|
|
|
pub use crate::traits::{AudioTag, AudioTagEdit, AudioTagWrite, ToAny, ToAnyTag};
|