#bindings #ogg #flac #vorbis #tag-lib #tag-lib-rust

sys taglib-sys

Raw TagLib bindings for Rust, used internally by TagLib-Rust

2 releases (1 stable)

Uses old Rust 2015

1.0.0 Aug 27, 2018
0.2.0 Mar 10, 2016

#1075 in Audio

Download history 42/week @ 2024-11-13 27/week @ 2024-11-20 20/week @ 2024-11-27 61/week @ 2024-12-04 48/week @ 2024-12-11 27/week @ 2024-12-18 3/week @ 2024-12-25 9/week @ 2025-01-01 47/week @ 2025-01-08 42/week @ 2025-01-15 18/week @ 2025-01-22 19/week @ 2025-01-29 95/week @ 2025-02-05 33/week @ 2025-02-12 25/week @ 2025-02-19 52/week @ 2025-02-26

208 downloads per month
Used in 5 crates (via taglib)

MIT license

6KB
67 lines

TagLib-Rust Build Status

TagLib-Rust is a library that allows accessing audio meta-data in Rust, by using the TagLib library.

TagLib-Rust supports reading and editing the meta-data of several popular audio formats. Currently there is support for:

  • ID3v1 and ID3v2 for MP3 files
  • Ogg Vorbis and FLAC
  • MPC
  • Speex
  • WavPack
  • TrueAudio
  • MP4
  • ASF

Requirements

You need TagLib installed on your system to build. This can be found in the following packages:

The pkg-config Rust module can also be optionally used to find the location of the TagLib library when building.

Using TagLib-Rust

If you're using cargo to manage your project, you can download through Crates.io:

[dependencies]
taglib = "*"

Alternatively, you can pull it from GitHub:

[dependencies]
taglib = { git = "https://github.com/ebassi/taglib-rust" }

Otherwise, clone the Git repository, and run cargo:

$ cargo build

Examples

TagLib-Rust comes with some examples on how to use it, see the examples directory in the the Git repository.

Documentation

The API reference for TagLib-Rust is available online.

License

TagLib-Rust is licensed under the terms of the MIT/X11 license.

See the LICENSE file for more details.

Dependencies

~44KB