https://github.com/luzifer/id3patch
Utility to manipulate ID3v2 tags on the CLI without having to install dependencies
https://github.com/luzifer/id3patch
golang id3 id3v2
Last synced: 3 months ago
JSON representation
Utility to manipulate ID3v2 tags on the CLI without having to install dependencies
- Host: GitHub
- URL: https://github.com/luzifer/id3patch
- Owner: Luzifer
- License: apache-2.0
- Created: 2019-09-08T10:55:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T02:24:52.000Z (over 2 years ago)
- Last Synced: 2025-02-10T15:41:53.012Z (5 months ago)
- Topics: golang, id3, id3v2
- Language: Go
- Size: 18.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://goreportcard.com/report/github.com/Luzifer/id3patch)



# Luzifer / id3patch
`id3patch` is a small CLI wrapper around [bogem/id3v2](https://github.com/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](https://github.com/Luzifer/id3patch/releases).
It can be used to quickly check or adjust tags:
```console
# 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"
```