mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-16 07:32:31 +00:00
5eb032a3d4
This is not allowed [by spec](https://xiph.org/flac/format.html#def_VORBIS_COMMENT), but is still possible to encounter in the wild. Now we will just tag whichever tag happens to be latest in the stream and use it, they **will not be merged** like other formats (such as ID3v2 in MP3) where multiple tags are valid.
12 lines
134 B
Rust
12 lines
134 B
Rust
mod aac;
|
|
mod aiff;
|
|
mod ape;
|
|
mod flac;
|
|
mod mp4;
|
|
mod mpc;
|
|
mod mpeg;
|
|
mod ogg;
|
|
pub(crate) mod util;
|
|
mod wav;
|
|
mod wavpack;
|
|
mod zero_sized;
|