Unbewohnte
3 years ago
commit
3fb875f3a3
5 changed files with 142 additions and 0 deletions
@ -0,0 +1,9 @@
|
||||
The MIT License (MIT) |
||||
|
||||
Copyright © 2021 Unbewohne | Nikolay Kasyanov |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,4 @@
|
||||
# ID3ED (ID3- Encoder - Decoder) |
||||
## Library for encoding/decoding ID3 tags |
||||
|
||||
# Under construction ! |
@ -0,0 +1,109 @@
|
||||
package id3ed |
||||
|
||||
import ( |
||||
"bytes" |
||||
"fmt" |
||||
"io" |
||||
"strconv" |
||||
) |
||||
|
||||
// https://id3.org/ID3v1 - documentation
|
||||
|
||||
const ID3V1SIZE int = 128 |
||||
|
||||
type ID3v1Tags struct { |
||||
SongName string |
||||
Artist string |
||||
Album string |
||||
Year int |
||||
Comment string |
||||
Genre int |
||||
} |
||||
|
||||
// Retrieves ID3v1 field values of provided io.ReadSeeker (usually a file)
|
||||
func GetID3v1Tags(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 := read(rs, 3) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
if !bytes.Equal(tag, []byte("TAG")) { |
||||
// no TAG, given file does not use ID3v1
|
||||
return nil, fmt.Errorf("does not use ID3v1") |
||||
} |
||||
|
||||
songname, err := read(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
artist, err := read(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
album, err := read(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
yearBytes, err := read(rs, 4) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
year, err := strconv.Atoi(string(yearBytes)) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("could not convert yearbytes into int: %s", err) |
||||
} |
||||
|
||||
comment, err := read(rs, 30) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
genreByte, err := read(rs, 1) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
// genre is one byte by specification
|
||||
genre := int(genreByte[0]) |
||||
|
||||
return &ID3v1Tags{ |
||||
SongName: string(songname), |
||||
Artist: string(artist), |
||||
Album: string(album), |
||||
Year: year, |
||||
Comment: string(comment), |
||||
Genre: genre, |
||||
}, nil |
||||
} |
||||
|
||||
func (t *ID3v1Tags) GetSongName() string { |
||||
return t.SongName |
||||
} |
||||
|
||||
func (t *ID3v1Tags) GetArtist() string { |
||||
return t.Artist |
||||
} |
||||
|
||||
func (t *ID3v1Tags) GetAlbum() string { |
||||
return t.Album |
||||
} |
||||
|
||||
func (t *ID3v1Tags) GetYear() int { |
||||
return t.Year |
||||
} |
||||
|
||||
func (t *ID3v1Tags) GetComment() string { |
||||
return t.Comment |
||||
} |
||||
|
||||
func (t *ID3v1Tags) GetGenre() int { |
||||
return t.Genre |
||||
} |
@ -0,0 +1,17 @@
|
||||
package id3ed |
||||
|
||||
import ( |
||||
"fmt" |
||||
"io" |
||||
) |
||||
|
||||
// Shortcut function to read n bytes from reader. Peeked from here: https://github.com/dhowden/tag/blob/master/util.go
|
||||
func read(rs io.Reader, n int) ([]byte, error) { |
||||
read := make([]byte, n) |
||||
_, err := rs.Read(read) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("could not read from reader: %s", err) |
||||
} |
||||
|
||||
return read, nil |
||||
} |
Loading…
Reference in new issue