Skip to content
/ amded Public

List and modify audio file meta data

License

Notifications You must be signed in to change notification settings

ft/amded

Folders and files

NameName
Last commit message
Last commit date

Latest commit

de8d01c · Mar 22, 2025
Jan 2, 2023
Mar 22, 2025
Sep 12, 2015
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Jun 9, 2017
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Nov 2, 2013
Mar 22, 2025
Mar 22, 2025
Jun 9, 2017
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Nov 5, 2013
Jun 9, 2017
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Mar 22, 2025
Oct 19, 2013
Nov 2, 2013

Repository files navigation

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>