https://github.com/iolanguage/taglib
https://github.com/iolanguage/taglib
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iolanguage/taglib
- Owner: IoLanguage
- License: bsd-3-clause
- Created: 2018-03-11T12:01:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T09:48:52.000Z (about 8 years ago)
- Last Synced: 2026-01-01T01:44:36.096Z (6 months ago)
- Language: C
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```