项目作者: Luzifer

项目描述 :
Utility to manipulate ID3v2 tags on the CLI without having to install dependencies
高级语言: Go
项目地址: git://github.com/Luzifer/id3patch.git
创建时间: 2019-09-08T10:55:23Z
项目社区:https://github.com/Luzifer/id3patch

开源协议:Apache License 2.0

下载


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:

  1. # id3patch -f Seelennacht\ -\ \ Die\ Nächtliche\ Stadt.mp3
  2. WARN[0000] No supported ID3v2 tags found file="Seelennacht - Die Nächtliche Stadt.mp3"
  3. INFO[0000] File opened successfully album= artist= file="Seelennacht - Die Nächtliche Stadt.mp3" tag_version=4 title= year=
  4. INFO[0000] No tags changed, no write needed file="Seelennacht - Die Nächtliche Stadt.mp3"
  5. # id3patch -f Seelennacht\ -\ \ Die\ Nächtliche\ Stadt.mp3 --artist Seelennacht --album Gaslichtromantik --title 'Die Nächtliche Stadt' --year 2014
  6. WARN[0000] No supported ID3v2 tags found file="Seelennacht - Die Nächtliche Stadt.mp3"
  7. INFO[0000] File opened successfully album= artist= file="Seelennacht - Die Nächtliche Stadt.mp3" tag_version=4 title= year=
  8. INFO[0000] Tags written successfully file="Seelennacht - Die Nächtliche Stadt.mp3"
  9. # id3patch -f Seelennacht\ -\ \ Die\ Nächtliche\ Stadt.mp3
  10. 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
  11. INFO[0000] No tags changed, no write needed file="Seelennacht - Die Nächtliche Stadt.mp3"