An open API service indexing awesome lists of open source software.

https://github.com/iolanguage/taglib


https://github.com/iolanguage/taglib

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# TagLib
Used to set meta data tags on the following audio formats:

```
ape
flac
mp3
mpc
mpeg
ogg
```

Supports reading and writing the following attributes:

```
title
artist
album
year
track
genre
```

And reading the attributes:
```
bitRate
sampleRate
channels
length
```

Example use (load and modify a track genre):

```Io
t := TagLib clone setPath("foo.mp3") load
writeln("genre = ", t genre)
t setGenre("ambient")
t save
```

# Installation
[`TagLib`](http://taglib.org) should be installed and foundable in your system. Then:
```
eerie install https://github.com/IoLanguage/TagLib.git
```