Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var FileCommand = Command{Name: "FILE", ExactParams: 2}
View Source
var PerformerCommand = Command{Name: "PERFORMER", MinParams: 1}
View Source
var RemCommand = Command{Name: "REM", MinParams: 1}
View Source
var RemDateCommand = Command{Name: "DATE", MinParams: 1}
View Source
var RemGenreCommand = Command{Name: "GENRE", MinParams: 1}
View Source
var TitleCommand = Command{Name: "TITLE", MinParams: 1}
View Source
var TrackCommand = Command{Name: "TRACK", ExactParams: 2}
View Source
var TrackIndexCommand = Command{Name: "INDEX", ExactParams: 2}
Functions ¶
This section is empty.
Types ¶
type CueSheet ¶
type CueSheet struct { AlbumPerformer string AlbumTitle string Date string Format string FileName string Genre string Tracks []*Track }
CueSheet represents the contents of a cue sheet file. Required fields: FileName, Format, Tracks.
type IndexPoint ¶
type Track ¶
type Track struct { Title string Type string Index01 IndexPoint }
Track represents a single track in a cue sheet file. Required fields: Index01, Type.
Click to show internal directories.
Click to hide internal directories.