mirror of https://github.com/tiyn/wiki
parent
348b00afeb
commit
cefb9e2e99
@ -0,0 +1,51 @@
|
||||
# Cue sheet
|
||||
|
||||
A cue sheet is a metadata file containing information for the tracks of a CD or
|
||||
a file [ripped](./audio.md#extract-audio-files-from-cds) from it.
|
||||
|
||||
## Example file
|
||||
|
||||
To understand the structure of a cue file the following lines show the contents
|
||||
of an example cue file. All lines starting with `REM`, `PERFORMER` or `TITLE`
|
||||
are optional. The following example is taken from the
|
||||
[wikipedia article](https://en.wikipedia.org/wiki/Cue_sheet_(computing)):
|
||||
|
||||
```cue
|
||||
REM GENRE Electronica
|
||||
REM DATE 1998
|
||||
PERFORMER "Faithless"
|
||||
TITLE "Live in Berlin"
|
||||
FILE "Faithless - Live in Berlin.mp3" MP3
|
||||
TRACK 01 AUDIO
|
||||
TITLE "Reverence"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 00:00:00
|
||||
TRACK 02 AUDIO
|
||||
TITLE "She's My Baby"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 06:42:00
|
||||
TRACK 03 AUDIO
|
||||
TITLE "Take the Long Way Home"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 10:54:00
|
||||
TRACK 04 AUDIO
|
||||
TITLE "Insomnia"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 17:04:00
|
||||
TRACK 05 AUDIO
|
||||
TITLE "Bring the Family Back"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 25:44:00
|
||||
TRACK 06 AUDIO
|
||||
TITLE "Salva Mea"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 30:50:00
|
||||
TRACK 07 AUDIO
|
||||
TITLE "Dirty Old Man"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 38:24:00
|
||||
TRACK 08 AUDIO
|
||||
TITLE "God Is a DJ"
|
||||
PERFORMER "Faithless"
|
||||
INDEX 01 42:35:00
|
||||
```
|
Loading…
Reference in new issue