-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
61 lines (39 loc) · 1.44 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
amded - Basic command line tagging engine for audio files
What it is:
Amded is based on KDE's taglib[1]. It is a very basic program,
that lists and modifies meta information found in audio files.
What it is NOT:
Amded is *not* an automatic tagging utility. But it can be used
as a tagging backend in higher-level applications.
Requirements:
In order to build amded, you will need:
- a C++11-able C++ compiler
- taglib installed on the system (including its headers)
- jsoncpp for JSON formatted output
- libb64 for base64 encoded string payload in JSON output
- pkg-config to figure out where taglib lives on the system
- txt2tags to generate amded's manual
- exuberant ctags if you're planning to use `make tags'
Current File Type Support:
- Ogg Vorbis
- FLAC
- MP3 (id3v2, id3v1 and apetag support)
- MP4
- OPUS
Building:
For users:
% make all doc
The default compiler in Makefile is ‘g++’. You can change the default by
supplying a CXX parameter for ‘make’:
% make all doc CXX=clang++
For developers:
% make depend tags
% make all doc
% make apidoc
Installation:
% make install
Name
Yes, this program was once called "taggit". But there's another program
by that name with a similar purpose (it's a GUI tagging utility).
For user-visible changes see the CHANGES file.
[1] <http://taglib.github.io>