1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
// Copyright 2013 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package taglib provides utilities for parsing audio tags in
// various formats.
package taglib
import (
"bytes"
"errors"
"fmt"
"io"
"time"
"github.com/hjfreyer/taglib-go/taglib/id3"
)
// GenericTag is implemented by all the tag types in this project. It
// gives an incomplete view of the information in each tag type, but
// is good enough for most purposes.
type GenericTag interface {
Title() string
Artist() string
Album() string
Comment() string
Genre() string
Year() time.Time
Track() uint32
Disc() uint32
// CustomFrames returns non-standard, user-defined frames as a map from
// descriptions (e.g. "PERFORMER", "MusicBrainz Album Id", etc.) to
// values.
CustomFrames() map[string]string
// TagSize returns the total size of the tag's header and frames,
// i.e. the position at which audio data starts.
TagSize() uint32
}
// Decode reads r and determines which tag format the data is in, if
// any, and calls the decoding function for that format. size
// indicates the total number of bytes accessible through r.
func Decode(r io.ReaderAt, size int64) (GenericTag, error) {
magic := make([]byte, 4)
if _, err := r.ReadAt(magic, 0); err != nil {
return nil, err
}
if !bytes.Equal(magic[:3], []byte("ID3")) {
return nil, errors.New("taglib: format not recognised (not ID3)")
}
switch magic[3] {
case 2:
return nil, errors.New("taglib: format not supported (ID3 v2.2)")
case 3:
return id3.Decode23(r)
case 4:
return id3.Decode24(r)
default:
return nil, fmt.Errorf("taglib: format not supported (ID3 %d)", magic[3])
}
}
|