audiotags icon indicating copy to clipboard operation
audiotags copied to clipboard

Unified IO for different types of audio metadata

Results 18 audiotags issues
Sort by recently updated
recently updated
newest added

closes: #9 closes: #8 closes: #7

I couldn't find for now any crate/method to get how long is music/video.

currently, extensions are handled like this: ```rust path.as_ref() .extension() .unwrap() .to_string_lossy() .to_string() .to_lowercase() .as_str(), ``` Which could panic due to the `unwrap()`. as `try_from_ext` already handles extensions, maybe we could...

Hi, I'm new to Rust and started working on a program which iterates through the id3 tags of my iTunes purchased music. I checked iTunes for the Year tag, which...

This fixes https://github.com/TianyiShi2001/audiotags/issues/5 Example FLAC metadata using this style: comment[0]: album=Chosen Lords comment[1]: discid=820d4b0a comment[2]: title=Reunion 2 comment[3]: artist=Aphex Twin comment[4]: tracknumber=2/10

I am trying yo use this library to parse the data from some files, and everything works perfectly fine expect the cover data. I cannot get to understant what data...

question

All the tag types currently are `Send` and `Sync`, so it would be useful to also pass this down.

I have FLAC files which look like this: ``` $ metaflac --list Aphex_Twin/Chosen_Lords/02-Reunion_2.flac METADATA block #0 type: 0 (STREAMINFO) is last: false length: 34 minimum blocksize: 4608 samples maximum blocksize:...

- [ ] get some minimal test files - [ ] write tests

Hello, Its been a while since #21 has been merged in; along with four more PR's merged in this year adding features. Would be great to have a new release...