1
0
mirror of https://github.com/Luzifer/id3patch.git synced 2024-09-07 18:39:13 +00:00
Utility to manipulate ID3v2 tags on the CLI without having to install dependencies
Go to file
2019-09-08 13:00:56 +02:00
.gitignore Initial version 2019-09-08 12:48:58 +02:00
.repo-runner.yaml Add auto-build 2019-09-08 12:59:17 +02:00
go.mod Initial version 2019-09-08 12:48:58 +02:00
go.sum Initial version 2019-09-08 12:48:58 +02:00
History.md prepare release v0.1.0 2019-09-08 13:00:56 +02:00
LICENSE Add META 2019-09-08 12:57:11 +02:00
main.go Initial version 2019-09-08 12:48:58 +02:00
Makefile Add auto-build 2019-09-08 12:59:17 +02:00
README.md Add META 2019-09-08 12:57:11 +02:00

Go Report Card

Luzifer / id3patch

id3patch is a small CLI wrapper around bogem/id3v2 to manipulate ID3v2 tag values on the CLI without having to install dependencies.

To install just go get -u github.com/Luzifer/id3patch it or download a release binary.

It can be used to quickly check or adjust tags:

# id3patch -f Seelennacht\ -\ \ Die\ Nächtliche\ Stadt.mp3
WARN[0000] No supported ID3v2 tags found                 file="Seelennacht -  Die Nächtliche Stadt.mp3"
INFO[0000] File opened successfully                      album= artist= file="Seelennacht -  Die Nächtliche Stadt.mp3" tag_version=4 title= year=
INFO[0000] No tags changed, no write needed              file="Seelennacht -  Die Nächtliche Stadt.mp3"

# id3patch -f Seelennacht\ -\ \ Die\ Nächtliche\ Stadt.mp3 --artist Seelennacht --album Gaslichtromantik --title 'Die Nächtliche Stadt' --year 2014
WARN[0000] No supported ID3v2 tags found                 file="Seelennacht -  Die Nächtliche Stadt.mp3"
INFO[0000] File opened successfully                      album= artist= file="Seelennacht -  Die Nächtliche Stadt.mp3" tag_version=4 title= year=
INFO[0000] Tags written successfully                     file="Seelennacht -  Die Nächtliche Stadt.mp3"

# id3patch -f Seelennacht\ -\ \ Die\ Nächtliche\ Stadt.mp3
INFO[0000] File opened successfully                      album=Gaslichtromantik artist=Seelennacht file="Seelennacht -  Die Nächtliche Stadt.mp3" tag_version=4 title="Die Nächtliche Stadt" year=2014
INFO[0000] No tags changed, no write needed              file="Seelennacht -  Die Nächtliche Stadt.mp3"