#!/bin/bash
# Razzia quiz-audio downloader - 40 fragmenten van 60 sec, vanaf het begin
OUT=/mnt/md2/Complete/Quiz-Audio
IMG=jauderho/yt-dlp:latest

dl () {
  local name="$1"; local query="$2"
  echo "=== $name ==="
  docker run --rm -v "$OUT":/downloads "$IMG" \
    -x --audio-format mp3 --audio-quality 5 --force-overwrite --no-continue \
    --postprocessor-args "-ss 0 -t 60" \
    -o "/downloads/${name}.%(ext)s" \
    "ytsearch1:${query}" || echo "!! MISLUKT: $name"
}

dl aha            "a-ha Take On Me official audio"
dl king           "King Love and Pride 1985 audio"
dl mjackson       "Michael Jackson Ben official audio"
dl madonna        "Madonna Borderline audio"
dl queen          "Queen Bohemian Rhapsody audio"
dl whitney        "Whitney Houston I Wanna Dance with Somebody audio"
dl eurythmics     "Eurythmics Sweet Dreams Are Made of This official audio"
dl prince         "Prince Purple Rain audio"
dl nirvana        "Nirvana Smells Like Teen Spirit audio"
dl bonjovi        "Bon Jovi Livin on a Prayer audio"
dl apt            "ROSE Bruno Mars APT official audio"
dl diewithasmile  "Bruno Mars Lady Gaga Die With a Smile audio"
dl bensonboone    "Benson Boone Beautiful Things audio"
dl espresso       "Sabrina Carpenter Espresso audio"
dl shaboozey      "Shaboozey A Bar Song Tipsy audio"
dl billie         "Billie Eilish Birds of a Feather audio"
dl alexwarren     "Alex Warren Ordinary audio"
dl golden         "HUNTRX Golden KPop Demon Hunters audio"
dl et             "ET theme John Williams"
dl jurassic       "Jurassic Park theme John Williams"
dl indiana        "Indiana Jones Raiders March theme"
dl bttf           "Back to the Future main theme Silvestri"
dl ghostbusters   "Ghostbusters theme Ray Parker Jr"
dl starwars       "Star Wars main title theme"
dl lotr           "Lord of the Rings Concerning Hobbits theme"
dl knightrider    "Knight Rider theme song"
dl ateam          "A-Team theme song"
dl airwolf        "Airwolf theme 1984"
dl miamivice      "Miami Vice theme Jan Hammer"
dl bigbang        "Big Bang Theory theme Barenaked Ladies"
dl friends        "Friends theme Ill Be There For You"
dl got            "Game of Thrones main title theme"
dl alf            "ALF theme song 1986"
dl cheers         "Cheers theme Where Everybody Knows Your Name"
dl marriedwc      "Married with Children Love and Marriage intro"
dl strangerthings "Stranger Things main theme"
dl mandalorian    "The Mandalorian theme Ludwig Goransson"
dl wednesday      "Wednesday Netflix main theme"
dl lastofus       "The Last of Us HBO main theme Santaolalla"
dl squidgame      "Squid Game Netflix theme"

echo "=== KLAAR ==="
ls -1 "$OUT"/*.mp3 | wc -l
