mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
33 lines
604 B
Go
33 lines
604 B
Go
package scanner
|
|
|
|
import "time"
|
|
|
|
type Metadata interface {
|
|
Title() string
|
|
Album() string
|
|
Artist() string
|
|
AlbumArtist() string
|
|
SortTitle() string
|
|
SortAlbum() string
|
|
SortArtist() string
|
|
SortAlbumArtist() string
|
|
Composer() string
|
|
Genre() string
|
|
Year() int
|
|
TrackNumber() (int, int)
|
|
DiscNumber() (int, int)
|
|
DiscSubtitle() string
|
|
HasPicture() bool
|
|
Comment() string
|
|
Compilation() bool
|
|
Duration() float32
|
|
BitRate() int
|
|
ModificationTime() time.Time
|
|
FilePath() string
|
|
Suffix() string
|
|
Size() int64
|
|
}
|
|
|
|
type MetadataExtractor interface {
|
|
Extract(files ...string) (map[string]Metadata, error)
|
|
}
|