Unbewohnte
3 years ago
13 changed files with 259 additions and 195 deletions
Binary file not shown.
@ -0,0 +1,97 @@
|
||||
package v1 |
||||
|
||||
import ( |
||||
"bytes" |
||||
"fmt" |
||||
"io" |
||||
"strconv" |
||||
|
||||
"github.com/Unbewohnte/id3ed/util" |
||||
) |
||||
|
||||
// Retrieves ID3v1.1 field values of provided io.ReadSeeker
|
||||
func Getv11Tags(rs io.ReadSeeker) (*ID3v11Tags, error) { |
||||
// set reader to the last 128 bytes
|
||||
_, err := rs.Seek(-int64(ID3v1SIZE), io.SeekEnd) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("could not seek: %s", err) |
||||
} |
||||
|
||||
tag, err := util.Read(rs, 3) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
if !bytes.Equal(tag, []byte(ID3v1IDENTIFIER)) { |
||||
// no TAG, given file does not use ID3v1
|
||||
return nil, fmt.Errorf("does not use ID3v1: expected %s; got %s", ID3v1IDENTIFIER, tag) |
||||
} |
||||
|
||||
songname, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
artist, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
album, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
yearStr, err := util.ReadToString(rs, 4) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
year, err := strconv.Atoi(yearStr) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("could not convert yearbytes into int: %s", err) |
||||
} |
||||
|
||||
comment, err := util.ReadToString(rs, 28) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
// skip 1 null byte
|
||||
_, err = util.Read(rs, 1) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
trackByte, err := util.Read(rs, 1) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
track, err := util.BytesToInt(trackByte) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("cannot convert bytes to int: %s", err) |
||||
} |
||||
|
||||
genreByte, err := util.Read(rs, 1) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
genreInt, err := util.BytesToInt(genreByte) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("cannot convert bytes to int: %s", err) |
||||
} |
||||
genre, exists := id3v1genres[int(genreInt)] |
||||
if !exists { |
||||
genre = "" |
||||
} |
||||
|
||||
return &ID3v11Tags{ |
||||
SongName: songname, |
||||
Artist: artist, |
||||
Album: album, |
||||
Year: year, |
||||
Comment: comment, |
||||
Track: int(track), |
||||
Genre: genre, |
||||
}, nil |
||||
} |
@ -0,0 +1,15 @@
|
||||
package v1 |
||||
|
||||
type ID3v11Tags struct { |
||||
SongName string |
||||
Artist string |
||||
Album string |
||||
Year int |
||||
Comment string |
||||
Track int |
||||
Genre string |
||||
} |
||||
|
||||
func (tags *ID3v11Tags) Version() int { |
||||
return 11 |
||||
} |
@ -0,0 +1,80 @@
|
||||
package v1 |
||||
|
||||
import ( |
||||
"bytes" |
||||
"fmt" |
||||
"io" |
||||
"strconv" |
||||
|
||||
"github.com/Unbewohnte/id3ed/util" |
||||
) |
||||
|
||||
// Retrieves ID3v1 field values of provided io.ReadSeeker (usually a file)
|
||||
func Getv1Tags(rs io.ReadSeeker) (*ID3v1Tags, error) { |
||||
// set reader to the last 128 bytes
|
||||
_, err := rs.Seek(-int64(ID3v1SIZE), io.SeekEnd) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("could not seek: %s", err) |
||||
} |
||||
|
||||
tag, err := util.Read(rs, 3) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
if !bytes.Equal(tag, []byte(ID3v1IDENTIFIER)) { |
||||
// no TAG, given file does not use ID3v1
|
||||
return nil, fmt.Errorf("does not use ID3v1: expected %s; got %s", ID3v1IDENTIFIER, tag) |
||||
} |
||||
|
||||
songname, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
artist, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
album, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
yearStr, err := util.ReadToString(rs, 4) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
year, err := strconv.Atoi(yearStr) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("could not convert yearbytes into int: %s", err) |
||||
} |
||||
|
||||
comment, err := util.ReadToString(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
genreByte, err := util.Read(rs, 1) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
genreInt, err := util.BytesToInt(genreByte) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("cannot convert bytes to int: %s", err) |
||||
} |
||||
genre, exists := id3v1genres[int(genreInt)] |
||||
if !exists { |
||||
genre = "" |
||||
} |
||||
|
||||
return &ID3v1Tags{ |
||||
SongName: songname, |
||||
Artist: artist, |
||||
Album: album, |
||||
Year: year, |
||||
Comment: comment, |
||||
Genre: genre, |
||||
}, nil |
||||
} |
@ -0,0 +1,16 @@
|
||||
package v1 |
||||
|
||||
// https://id3.org/ID3v1 - documentation
|
||||
|
||||
type ID3v1Tags struct { |
||||
SongName string |
||||
Artist string |
||||
Album string |
||||
Year int |
||||
Comment string |
||||
Genre string |
||||
} |
||||
|
||||
func (tags *ID3v1Tags) Version() int { |
||||
return 10 |
||||
} |
@ -0,0 +1,34 @@
|
||||
package v2 |
||||
|
||||
// Reads ID3v2 frames from rs. NOT TESTED !!!!
|
||||
// func GetFrames(rs io.ReadSeeker) ([]*Frame, error) {
|
||||
// header, err := GetHeader(rs)
|
||||
// if err != nil {
|
||||
// return nil, fmt.Errorf("could not get header: %s", err)
|
||||
// }
|
||||
// tagsize := header.Size
|
||||
|
||||
// var frames []*Frame
|
||||
// var read uint64 = 0
|
||||
// for {
|
||||
// if read == uint64(tagsize) {
|
||||
// break
|
||||
// }
|
||||
|
||||
// frame, err := ReadFrame(rs)
|
||||
// if err != nil {
|
||||
// return frames, fmt.Errorf("could not read frame: %s", err)
|
||||
// }
|
||||
// frames = append(frames, frame)
|
||||
|
||||
// // counting how many bytes has been read
|
||||
// read += 10 // frame header
|
||||
// if frame.Flags.InGroup {
|
||||
// // header has 1 additional byte
|
||||
// read += 1
|
||||
// }
|
||||
// read += uint64(frame.Size) // and the contents itself
|
||||
// }
|
||||
|
||||
// return frames, nil
|
||||
// }
|
@ -0,0 +1,13 @@
|
||||
package v2 |
||||
|
||||
// func TestGetFrames(t *testing.T) {
|
||||
// f, err := os.Open(filepath.Join(TESTDATAPATH, "testreadv2.mp3"))
|
||||
// if err != nil {
|
||||
// t.Errorf("%s", err)
|
||||
// }
|
||||
|
||||
// _, err = GetFrames(f)
|
||||
// if err != nil {
|
||||
// t.Errorf("GetFrames failed: %s", err)
|
||||
// }
|
||||
// }
|
Loading…
Reference in new issue