Sha256: c92b7a79aa9ff2b801eda191bb5fc1d9f0693bcd69f66b0a3380829b9e2a6d72

Contents?: true

Size: 990 Bytes

Versions: 7

Compression:

Stored size: 990 Bytes

Contents

CD_DA

// global CD-TEXT data

CD_TEXT {

  // Mapping from language number (0..7) used in 'LANGUAGE' statements 
  // to language code.
///  LANGUAGE_MAP {
///    0 : EN  // 9 is the code for ENGLISH,
///            // I don't know any other language code, yet
///  }

  // Language number should always start with 0
  LANGUAGE 0 {
    // Required fields - at least all CD-TEXT CDs I've seen so far have them.
    TITLE "CD Title"
    PERFORMER "Performer"
    DISC_ID "XY12345"
    UPC_EAN "" // usually empty

    // Further possible items, all of them are optional
    ARRANGER ""
    SONGWRITER ""
    MESSAGE "" 
    GENRE "" // I'm not sure if this should be really ascii data
  }
}


TRACK AUDIO
// track specific CD-TEXT data
CD_TEXT {
  LANGUAGE 0 {
    // if an item is defined for one track it should be defined for all tracks
    TITLE "Track Title"

    PERFORMER "Performer"
    ISRC "US-XX1-98-01234"

    ARRANGER ""
    SONGWRITER ""
    MESSAGE "" 
  }
}

SILENCE 1:0:0

Version data entries

7 entries across 4 versions & 1 rubygems

Version Path
rb_cdio-0.1.0 test/data/cdtext.toc
rb_cdio-0.1.1 ./test/data/cdtext.toc
rb_cdio-0.1.1 test/data/cdtext.toc
rb_cdio-0.2.0 ./test/data/cdtext.toc
rb_cdio-0.2.1 test/data/cdtext.toc
rb_cdio-0.2.1 ./test/data/cdtext.toc
rb_cdio-0.2.0 test/data/cdtext.toc