taglib-rust icon indicating copy to clipboard operation
taglib-rust copied to clipboard

TagLib bindings for Rust

Results 4 taglib-rust issues
Sort by recently updated
recently updated
newest added

All strings from tags are leaked since ll::taglib_tag_free_strings() is not called on drop. Can be reproduced in the existing unit tests. CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="valgrind --leak-check=full" cargo test

Is it possible to expose a getter and setter function on `Tag` to read and write custom tags by supplying the tag name as a parameter?

I just ran a quick scan over my music library and noticed that two of my songs aren't picked up by taglib. It Throws an error when calling the `tag()`...

Previously a handle to `File` was kept around in `Tag` and `AudioProperties` so that the raw file pointer wouldn't be dropped while it was being used. This made it difficult...