No description
Find a file
Per-Victor Persson a66c0ada84 update
2020-12-17 17:52:51 +01:00
bin Add empty bin folder to repo 2017-03-26 14:56:37 +02:00
lib Initial half working version 2016-11-17 22:37:39 +01:00
src Clean up cover reading 2017-03-26 14:59:57 +02:00
.gitignore Remove read-cover, use only read now 2017-02-06 00:01:48 +01:00
CMakeLists.txt update 2020-12-17 17:52:51 +01:00
Dockerfile update 2020-12-17 17:52:51 +01:00
README.md Clean up cover reading 2017-03-26 14:59:57 +02:00

music-tagger

This is a small command line app that returns the tags from an music file. It is written in c++ and uses the taglib library, and returns the tags as json on stdout for easy parsing.

Usage

music-tagger read asd.mp3
music-tagger update <file> TITLE="New title"

Support

All of the formats that taglib supports work and it will return the extended tags (ALBUMARTIST, etc). However support for reading the coverart is only available for mp3 and flac at the moment.

The important ones being:

  • mp3
  • flac
  • m4a (No covers)
  • wav (No covers)
  • ogg/opus (No covers)

Build

cd bin
cmake ..; make

Todo

  • Update album cover
  • Sane error handling
  • Clean up