Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dreifragezeichen.de, Apple Music and Spotify URLs #42

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions code/dreimetadaten/MetadataModel/MetadataObjectModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ extension MetadataObjectModel {
var cover: String?
var cover_itunes: String?
var cover_kosmos: String?
var dreifragezeichen: String?
var appleMusic: String?
var spotify: String?
}

struct Medium: Codable {
Expand Down Expand Up @@ -177,7 +180,10 @@ extension MetadataObjectModel {
"ffmetadata",
"cover",
"cover_itunes",
"cover_kosmos"
"cover_kosmos",
"dreifragezeichen",
"appleMusic",
"spotify"
]
static func prefixedKeyString(keyString: String) -> String {
let number = Self.ordering.firstIndex(of: keyString) ?? 99
Expand Down Expand Up @@ -445,7 +451,10 @@ extension MetadataObjectModel {
ffmetadata: !hörspiel.unvollständig ? "ffmetadata.txt" : nil,
cover: hörspiel.cover ? "cover.png" : nil,
cover_itunes: hörspiel.urlCoverApple,
cover_kosmos: hörspiel.urlCoverKosmos
cover_kosmos: hörspiel.urlCoverKosmos,
dreifragezeichen: hörspiel.urlDreifragezeichen,
appleMusic: hörspiel.urlAppleMusic,
spotify: hörspiel.urlSpotify
)
hörspielObject.unvollständig = hörspiel.unvollständig ? true : nil

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ extension MetadataRelationalModel {
var cover: Bool
var urlCoverApple: String?
var urlCoverKosmos: String?
var urlDreifragezeichen: String?
var urlAppleMusic: String?
var urlSpotify: String?
}

struct HörspielTeil: Codable {
Expand Down Expand Up @@ -278,6 +281,9 @@ extension MetadataRelationalModel {
.notNull()
t.column("urlCoverApple", .text)
t.column("urlCoverKosmos", .text)
t.column("urlDreifragezeichen", .text)
t.column("urlAppleMusic", .text)
t.column("urlSpotify", .text)
}
// HörspielTeil
try db.create(table: HörspielTeil.databaseTableName) { t in
Expand Down
617 changes: 310 additions & 307 deletions metadata/db.sql

Large diffs are not rendered by default.

19 changes: 15 additions & 4 deletions metadata/json/Kurzgeschichten.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,10 @@
],
"links" : {
"json" : "http://dreimetadaten.de/data/Kurzgeschichten/und-die-Geisterlampe/metadata.json",
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/und-die-Geisterlampe/cover.png"
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/und-die-Geisterlampe/cover.png",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-die-geisterlampe",
"appleMusic" : "https://music.apple.com/de/album/und-die-geisterlampe/1092546618",
"spotify" : "https://open.spotify.com/intl-de/album/1nL3AddBvZ845zMyXRowgs"
},
"medien" : [
{
Expand Down Expand Up @@ -893,7 +896,10 @@
],
"links" : {
"json" : "http://dreimetadaten.de/data/Kurzgeschichten/Das-Raetsel-der-Sieben/metadata.json",
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/Das-Raetsel-der-Sieben/cover.png"
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/Das-Raetsel-der-Sieben/cover.png",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/das-ratsel-der-sieben",
"appleMusic" : "https://music.apple.com/de/album/das-r%C3%A4tsel-der-sieben/1092549930",
"spotify" : "https://open.spotify.com/intl-de/album/2AEzTekSWfyfzJH56jmhET"
},
"medien" : [
{
Expand Down Expand Up @@ -1618,7 +1624,10 @@
],
"links" : {
"json" : "http://dreimetadaten.de/data/Kurzgeschichten/und-der-Zeitgeist/metadata.json",
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/und-der-Zeitgeist/cover.png"
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/und-der-Zeitgeist/cover.png",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-der-zeitgeist-sechs-kurzgeschichten",
"appleMusic" : "https://music.apple.com/de/album/und-der-zeitgeist-sechs-kurzgeschichten/1149379770",
"spotify" : "https://open.spotify.com/intl-de/album/4lLOJQU6QBH5cxmERE77La"
},
"medien" : [
{
Expand Down Expand Up @@ -2260,7 +2269,9 @@
],
"links" : {
"json" : "http://dreimetadaten.de/data/Kurzgeschichten/und-der-schwarze-Tag/metadata.json",
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/und-der-schwarze-Tag/cover.png"
"cover" : "http://dreimetadaten.de/data/Kurzgeschichten/und-der-schwarze-Tag/cover.png",
"appleMusic" : "https://music.apple.com/de/album/und-der-schwarze-tag-sechs-kurzgeschichten/1436692770",
"spotify" : "https://open.spotify.com/intl-de/album/7ehMwTyKuIM4zdiltMxE4X"
},
"medien" : [
{
Expand Down
1,139 changes: 911 additions & 228 deletions metadata/json/Serie.json

Large diffs are not rendered by default.

82 changes: 65 additions & 17 deletions metadata/json/Spezial.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@
"links" : {
"json" : "http://dreimetadaten.de/data/Spezial/und-der-Super-Papagei-2004/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-der-Super-Papagei-2004/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-der-Super-Papagei-2004/cover.png"
"cover" : "http://dreimetadaten.de/data/Spezial/und-der-Super-Papagei-2004/cover.png",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/super-papagei-2004",
"spotify" : "https://open.spotify.com/intl-de/album/4KXnXnpFRnQsjeZHpNC7X9"
},
"medien" : [
{
Expand Down Expand Up @@ -420,7 +422,10 @@
"links" : {
"json" : "http://dreimetadaten.de/data/Spezial/und-der-dreiTag/metadata.json",
"cover" : "http://dreimetadaten.de/data/Spezial/und-der-dreiTag/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music49/v4/9a/dd/ec/9addece3-1886-3728-fd48-67a93c04e5f0/886445749281.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music49/v4/9a/dd/ec/9addece3-1886-3728-fd48-67a93c04e5f0/886445749281.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-der-dreitag",
"appleMusic" : "https://music.apple.com/de/album/und-der-dreitag/1092548111",
"spotify" : "https://open.spotify.com/intl-de/album/3JJeehFIJTxhrltC6e44VT"
},
"medien" : [
{
Expand Down Expand Up @@ -1367,7 +1372,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/Brainwash-Gefangene-Gedanken/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/Brainwash-Gefangene-Gedanken/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/Brainwash-Gefangene-Gedanken/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music49/v4/b9/f2/a8/b9f2a801-34a1-4d5d-c745-5ef921fba6cb/886445749403.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music49/v4/b9/f2/a8/b9f2a801-34a1-4d5d-c745-5ef921fba6cb/886445749403.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/brainwash",
"appleMusic" : "https://music.apple.com/de/album/brainwash-gefangene-gedanken/1092529878",
"spotify" : "https://open.spotify.com/intl-de/album/5RBu5WK95Q6BtWfA4o3Vgs"
},
"medien" : [
{
Expand Down Expand Up @@ -1866,7 +1874,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/House-of-Horrors-Haus-der-Angst/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/House-of-Horrors-Haus-der-Angst/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/House-of-Horrors-Haus-der-Angst/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music114/v4/87/73/89/877389c8-2c6a-c40c-7bf1-b3498a8678fb/884977708189.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music114/v4/87/73/89/877389c8-2c6a-c40c-7bf1-b3498a8678fb/884977708189.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/house-of-horrors",
"appleMusic" : "https://music.apple.com/de/album/house-of-horrors-haus-der-angst/452658930",
"spotify" : "https://open.spotify.com/intl-de/album/249qkyRcqMAoKJhXwrTYtE"
},
"medien" : [
{
Expand Down Expand Up @@ -2418,7 +2429,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/High-Strung-Unter-Hochspannung/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/High-Strung-Unter-Hochspannung/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/High-Strung-Unter-Hochspannung/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music49/v4/30/a3/5b/30a35bd3-ae05-4a15-cd1b-674753aee0e2/886445749465.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music49/v4/30/a3/5b/30a35bd3-ae05-4a15-cd1b-674753aee0e2/886445749465.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/high-strung",
"appleMusic" : "https://music.apple.com/de/album/high-strung-unter-hochspannung/1092538532",
"spotify" : "https://open.spotify.com/intl-de/album/2Bxdn8Gn8vEy4UiTOc8cBK"
},
"medien" : [
{
Expand Down Expand Up @@ -2667,7 +2681,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-der-5-Advent/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-der-5-Advent/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-der-5-Advent/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music71/v4/96/1c/ed/961ced16-8515-10f4-6a56-02a2bc5bc285/886446100562.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music71/v4/96/1c/ed/961ced16-8515-10f4-6a56-02a2bc5bc285/886446100562.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/der-5-advent",
"appleMusic" : "https://music.apple.com/de/album/der-5-advent/1174866876",
"spotify" : "https://open.spotify.com/intl-de/album/2qFuUJMx8w4VEO0Zdf8jFJ"
},
"medien" : [
{
Expand Down Expand Up @@ -3013,7 +3030,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/Stille-Nacht-duestere-Nacht/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/Stille-Nacht-duestere-Nacht/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/Stille-Nacht-duestere-Nacht/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music118/v4/05/41/31/05413108-b81c-9d3b-b874-3d9ce5a4f8f7/886446100609.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music118/v4/05/41/31/05413108-b81c-9d3b-b874-3d9ce5a4f8f7/886446100609.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/adventskalender-stille-nacht-dustere-nacht",
"appleMusic" : "https://music.apple.com/de/album/adventskalender-stille-nacht-d%C3%BCstere-nacht/1295117431",
"spotify" : "https://open.spotify.com/intl-de/album/5iobM2gNVymvP8XqnRnHVR"
},
"medien" : [
{
Expand Down Expand Up @@ -3348,7 +3368,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/O-du-finstere/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/O-du-finstere/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/O-du-finstere/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/ea/13/9b/ea139be5-bf25-69b9-42db-7d77c8e27c35/886447878439.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/ea/13/9b/ea139be5-bf25-69b9-42db-7d77c8e27c35/886447878439.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/o-du-finstere",
"appleMusic" : "https://music.apple.com/de/album/die-drei-adventskalender-o-du-finstere/1529420801",
"spotify" : "https://open.spotify.com/intl-de/album/7ynXpeQRwzqKiv8WVh7c7B"
},
"medien" : [
{
Expand Down Expand Up @@ -3749,7 +3772,9 @@
"json" : "http://dreimetadaten.de/data/Spezial/Eine-schreckliche-Bescherung/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/Eine-schreckliche-Bescherung/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/Eine-schreckliche-Bescherung/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music122/v4/d6/bf/a6/d6bfa640-de36-a2cb-3790-74a9e1ce511b/886449413263.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music122/v4/d6/bf/a6/d6bfa640-de36-a2cb-3790-74a9e1ce511b/886449413263.jpg",
"appleMusic" : "https://music.apple.com/de/album/adventskalender-eine-schreckliche-bescherung/1695696461",
"spotify" : "https://open.spotify.com/intl-de/album/5u2wd0lYukcINw8dUFCREq"
},
"medien" : [
{
Expand Down Expand Up @@ -4092,7 +4117,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/Boeser-die-Glocken-nie-klingen/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/Boeser-die-Glocken-nie-klingen/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/Boeser-die-Glocken-nie-klingen/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music126/v4/3b/22/be/3b22befa-c875-e76b-b8a1-ff5d5122d062/196871057332.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music126/v4/3b/22/be/3b22befa-c875-e76b-b8a1-ff5d5122d062/196871057332.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/boser-die-glocken-nie-klingen-adventskalender",
"appleMusic" : "https://music.apple.com/de/album/adventskalender-b%C3%B6ser-die-glocken-nie-klingen/1752450018",
"spotify" : "https://open.spotify.com/intl-de/album/0oZaQfEwMWY2TfviD4fEdV"
},
"medien" : [
{
Expand Down Expand Up @@ -4400,7 +4428,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/Das-Grab-der-Inka-Mumie/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/Das-Grab-der-Inka-Mumie/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/Das-Grab-der-Inka-Mumie/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/ee/4e/3e/ee4e3e55-9e99-6e6c-b30b-a3c08f0d04e9/886444438483.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/ee/4e/3e/ee4e3e55-9e99-6e6c-b30b-a3c08f0d04e9/886444438483.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/das-grab-der-inka-mumie",
"appleMusic" : "https://music.apple.com/de/album/das-grab-der-inka-mumie/1219257238",
"spotify" : "https://open.spotify.com/intl-de/album/7osWCNCcvGfqP31G7281iL"
},
"medien" : [
{
Expand Down Expand Up @@ -4614,7 +4645,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-der-Tornadojaeger/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-der-Tornadojaeger/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-der-Tornadojaeger/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music127/v4/5c/bd/e2/5cbde282-7308-b942-a2d6-e7fd717b9f47/886444438681.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music127/v4/5c/bd/e2/5cbde282-7308-b942-a2d6-e7fd717b9f47/886444438681.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-der-tornadojager",
"appleMusic" : "https://music.apple.com/de/album/specialfolge-und-der-tornadoj%C3%A4ger/1235580462",
"spotify" : "https://open.spotify.com/intl-de/album/7mH8vdj0TkiPO6fMHBCvYj"
},
"medien" : [
{
Expand Down Expand Up @@ -4863,7 +4897,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-das-kalte-Auge/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-das-kalte-Auge/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-das-kalte-Auge/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music128/v4/af/f8/9a/aff89a25-8c32-e047-08e0-5b55e66187ae/886444438667.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music128/v4/af/f8/9a/aff89a25-8c32-e047-08e0-5b55e66187ae/886444438667.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-das-kalte-auge",
"appleMusic" : "https://music.apple.com/de/album/specialfolge-und-das-kalte-auge/1263882229",
"spotify" : "https://open.spotify.com/intl-de/album/3egVVb6Zt0LdS6agBMGsiJ"
},
"medien" : [
{
Expand Down Expand Up @@ -5107,7 +5144,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-die-schwarze-Katze/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-die-schwarze-Katze/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-die-schwarze-Katze/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/0a/a9/1c/0aa91c6a-4119-4d0a-b039-7019411de671/886447191804.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/0a/a9/1c/0aa91c6a-4119-4d0a-b039-7019411de671/886447191804.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-die-schwarze-katze-neufassung",
"appleMusic" : "https://music.apple.com/de/album/und-die-schwarze-katze/1456265306",
"spotify" : "https://open.spotify.com/intl-de/album/39K0Sczt1mIbW33lB5RNer"
},
"medien" : [
{
Expand Down Expand Up @@ -5351,7 +5391,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-das-versunkene-Schiff/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-das-versunkene-Schiff/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-das-versunkene-Schiff/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music125/v4/29/80/09/29800971-253c-1a01-fce6-9080236cee2e/886447335307.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music125/v4/29/80/09/29800971-253c-1a01-fce6-9080236cee2e/886447335307.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/die-drei-und-das-versunkene-schiff",
"appleMusic" : "https://music.apple.com/de/album/und-das-versunkene-schiff/1480675865",
"spotify" : "https://open.spotify.com/intl-de/album/6UN8m07SmIzyDe63H0oljL"
},
"medien" : [
{
Expand Down Expand Up @@ -5591,7 +5634,10 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-der-dreiaeugige-Totenkopf/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-der-dreiaeugige-Totenkopf/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-der-dreiaeugige-Totenkopf/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music123/v4/26/93/df/2693df4e-9555-a979-a62e-80a70c845c84/886447878415.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music123/v4/26/93/df/2693df4e-9555-a979-a62e-80a70c845c84/886447878415.jpg",
"dreifragezeichen" : "https://dreifragezeichen.de/produktwelt/details/und-der-dreiaugige-totenkopf",
"appleMusic" : "https://music.apple.com/de/album/und-der-drei%C3%A4ugige-totenkopf/1492053303",
"spotify" : "https://open.spotify.com/intl-de/album/76M62o1rdKEqTN1JIbGdGV"
},
"medien" : [
{
Expand Down Expand Up @@ -5831,7 +5877,9 @@
"json" : "http://dreimetadaten.de/data/Spezial/und-das-Grab-der-Maya/metadata.json",
"ffmetadata" : "http://dreimetadaten.de/data/Spezial/und-das-Grab-der-Maya/ffmetadata.txt",
"cover" : "http://dreimetadaten.de/data/Spezial/und-das-Grab-der-Maya/cover.png",
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/80/ac/b8/80acb833-cbf8-6f17-a96a-fc6e02553e42/886448741374.jpg"
"cover_itunes" : "http://a1.mzstatic.com/r40/Music124/v4/80/ac/b8/80acb833-cbf8-6f17-a96a-fc6e02553e42/886448741374.jpg",
"appleMusic" : "https://music.apple.com/de/album/und-das-grab-der-maya/1535920186",
"spotify" : "https://open.spotify.com/intl-de/album/4vj4Dq2q7fyvwY7UCj2vin"
},
"medien" : [
{
Expand Down
Loading