3 releases (1 stable)

Uses old Rust 2015

1.0.0 Aug 27, 2018
0.2.0 Mar 10, 2016
0.1.0 May 22, 2015

#507 in Audio

Download history 31/week @ 2023-11-30 31/week @ 2023-12-07 8/week @ 2023-12-14 2/week @ 2023-12-21 9/week @ 2023-12-28 23/week @ 2024-01-04 33/week @ 2024-01-11 42/week @ 2024-01-18 45/week @ 2024-01-25 28/week @ 2024-02-01 29/week @ 2024-02-08 44/week @ 2024-02-15 85/week @ 2024-02-22 57/week @ 2024-02-29 46/week @ 2024-03-07 66/week @ 2024-03-14

258 downloads per month
Used in 2 crates

MIT license

21KB
315 lines

TagLib-Rust Build Status

Simple bindings for TagLib in Rust

Overview

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

TagLib-Rust requires:

  • Rust 1.0
  • TagLib
  • the libc Rust module

It also optionally depends on the pkg-config Rust module 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 = "0.1.0"

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

~43KB