⬥ ID3 encoding/decoding library in Go ⬥
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
246 B

package v1
const ID3v1IDENTIFIER string = "TAG"
const ID3v1SIZE int = 128
const ID3v1INVALIDGENRE int = 255
const ID3v1ENHANCEDIDENTIFIER string = "TAG+"
const ENHANCEDSIZE int = 227
const V1_0 string = "ID3v1.0"
const V1_1 string = "ID3v1.1"