Skip to content

meiraka/musictagz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MusicTagz

Yaml based audio tag editor for Flac.

Usage

  1. Make yaml file from audio file.
> musictagz --dump > tracks.yaml
  1. Edit yaml file.
  2. Write yaml file to audio file.
> cat tracks.yaml | musictagz

Format

'*.flac':  # filepath
  plain:  # plain text field
    ALBUM: Foo  # tag key: value
    ALBUMARTIST: Bar
./01 Qux.flac:
  plain:
    ARTIST: Bar and Buz
    ARTISTS:
    - Bar
    - Buz
    TITLE: Qux
    TRACKNUMBER: '1'
./02 Foo.flac:
  plain:
    ARTIST: Bar
    TITLE: Foo
    TRACKNUMBER: '2'