mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-12 21:52:33 +00:00
Fix spacing
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
30d62a9064
commit
845456b9c7
2 changed files with 11 additions and 10 deletions
20
src/lib.rs
20
src/lib.rs
|
@ -8,16 +8,16 @@
|
|||
//!
|
||||
//! # Supported Formats
|
||||
//!
|
||||
//!| File Format | Extensions | Read | Write | Metadata Format(s) |
|
||||
//!|-------------|-------------------------------------------|------|-------|---------------------|
|
||||
//!| Ape | `ape` |**X** |**X** |`APEv2` |
|
||||
//!| AIFF | `aiff`, `aif` |**X** |**X** |`ID3v2` |
|
||||
//!| FLAC | `flac` |**X** |**X** |`Vorbis Comments` |
|
||||
//!| MP3 | `mp3` |**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` |
|
||||
//! | File Format | Extensions | Read | Write | Metadata Format(s) |
|
||||
//! |-------------|-------------------------------------------|------|-------|---------------------|
|
||||
//! | Ape | `ape` |**X** |**X** |`APEv2` |
|
||||
//! | AIFF | `aiff`, `aif` |**X** |**X** |`ID3v2` |
|
||||
//! | FLAC | `flac` |**X** |**X** |`Vorbis Comments` |
|
||||
//! | MP3 | `mp3` |**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` |
|
||||
//!
|
||||
//! # Examples
|
||||
//!
|
||||
|
|
|
@ -43,6 +43,7 @@ fn test_inner() {
|
|||
minute: None,
|
||||
second: None,
|
||||
};
|
||||
|
||||
id3tag_inner.set_date_recorded(timestamp);
|
||||
|
||||
// Write id3::Tag to `a.mp3`
|
||||
|
|
Loading…
Reference in a new issue