Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmck-code/wav-tagger
A utility to tag .wav tunes, backed by ffmpeg
https://github.com/tmck-code/wav-tagger
Last synced: 15 days ago
JSON representation
A utility to tag .wav tunes, backed by ffmpeg
- Host: GitHub
- URL: https://github.com/tmck-code/wav-tagger
- Owner: tmck-code
- License: bsd-3-clause
- Created: 2022-02-21T11:21:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T23:33:39.000Z (3 months ago)
- Last Synced: 2024-08-05T00:51:09.976Z (3 months ago)
- Language: Python
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wav-tagger
A utility to tag .wav tunes, backed by ffmpeg## WAV Metadata
### LIST Metadata
This format is the most basic available
It essentially has 5 fields that are readable by music players
- INAM / title
- IART / artist
- IPRD / album
- IGNR / genre
- ICMT / commentThe ffmpeg tool actually supports writing some others, but these aren't
recognised/read on the music players I've tested so far> `https://wiki.multimedia.cx/index.php/FFmpeg_Metadata`
(see the "AVI" section")
```
"IARL"
"IART", "artist"
"ICMS"
"ICMT", "comment"
"ICOP", "copyright"
"ICRD", "date"
"ICRP"
"IDIM"
"IDPI"
"IENG"
"IGNR", "genre"
"IKEY"
"ILGT"
"ILNG", "language"
"IMED"
"INAM", "title"
"IPLT"
"IPRD", "album"
"IPRT", "track"
"ISBJ"
"ISFT", "encoder" - note that this is automatically filled in by libavformat
"ISHP"
"ISRC"
"ISRF"
"ITCH", "encoded_by"
```