kepstin / magicisrc

JS web tool to batch-submit ISRCs to MusicBrainz
18 stars 6 forks source link

Track 0 on releases with pre-gap tracks is not displayed #8

Closed kepstin closed 2 years ago

kepstin commented 3 years ago

An example release: https://magicisrc.kepstin.ca/?mbid=ab9e6f50-b248-4ed2-a591-1f175e609e44

kepstin commented 3 years ago

It turns out that the pre-gap track is not actually stored in the tracks array at all, but gets a separate entry outside it.

{
  "position": 1,
  "tracks": [
    {
      "id": "34bea9c8-d1c5-4f09-be61-7afba7b3af2e",
      "recording": {
        "id": "4d2224d8-ad44-4f12-8cdd-5450618fa75f",
        "title": "You Think I Ain’t Worth a Dollar, but I Feel Like a Millionaire",
        "length": 192493,
        "isrcs": [
          "USIR10211009"
        ],
        "disambiguation": "album version",
        "artist-credit": [
          {
            "name": "Queens of the Stone Age",
            "artist": {
              "id": "7dc8f5bd-9d0b-4087-9f73-dc164950bbd8",
              "sort-name": "Queens of the Stone Age",
              "disambiguation": "",
              "type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
              "type": "Group",
              "name": "Queens of the Stone Age"
            },
            "joinphrase": ""
          }
        ],
        "first-release-date": "2002-08-17",
        "video": false
      },
      "position": 1,
      "artist-credit": [
        {
          "joinphrase": "",
          "artist": {
            "sort-name": "Queens of the Stone Age",
            "id": "7dc8f5bd-9d0b-4087-9f73-dc164950bbd8",
            "name": "Queens of the Stone Age",
            "type": "Group",
            "disambiguation": "",
            "type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
          },
          "name": "Queens of the Stone Age"
        }
      ],
      "length": 192493,
      "title": "You Think I Ain’t Worth a Dollar, but I Feel Like a Millionaire",
      "number": "1"
    },
    { ... }
  ],
  "format-id": "9712d52a-4509-3d4b-a1a2-67c88c643e31",
  "track-count": 15,
  "pregap": {
    "number": "0",
    "title": "The Real Song for the Deaf",
    "length": 93000,
    "artist-credit": [
      {
        "joinphrase": "",
        "name": "Queens of the Stone Age",
        "artist": {
          "type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
          "disambiguation": "",
          "type": "Group",
          "name": "Queens of the Stone Age",
          "id": "7dc8f5bd-9d0b-4087-9f73-dc164950bbd8",
          "sort-name": "Queens of the Stone Age"
        }
      }
    ],
    "position": 0,
    "id": "32f2c395-d1ed-4d44-9c27-2367a88dc9c2",
    "recording": {
      "length": 93000,
      "title": "The Real Song for the Deaf",
      "artist-credit": [
        {
          "name": "Queens of the Stone Age",
          "artist": {
            "type": "Group",
            "type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
            "disambiguation": "",
            "name": "Queens of the Stone Age",
            "id": "7dc8f5bd-9d0b-4087-9f73-dc164950bbd8",
            "sort-name": "Queens of the Stone Age"
          },
          "joinphrase": ""
        }
      ],
      "isrcs": [
        "USIR10211295"
      ],
      "disambiguation": "",
      "video": false,
      "first-release-date": "2002-08-17",
      "id": "f1013671-4a22-4801-b398-dc4655114eae"
    }
  },
  "title": "",
  "track-offset": 0,
  "format": "CD"
}