{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "c666bc86",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:00:39.776818Z",
     "start_time": "2024-02-16T05:00:39.648020Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "a10-yul-dev-node-444\r\n"
     ]
    }
   ],
   "source": [
    "!echo $HOSTNAME"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "08218f19",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:00:39.899486Z",
     "start_time": "2024-02-16T05:00:39.896004Z"
    }
   },
   "outputs": [],
   "source": [
    "import os\n",
    "os.environ[\"CUDA_VISIBLE_DEVICES\"] = \"\""
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "76fc0b2c",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:00:40.531393Z",
     "start_time": "2024-02-16T05:00:40.528780Z"
    }
   },
   "outputs": [],
   "source": [
    "# vocab: \n",
    "#   0-60_000 text\n",
    "#   1x0-3999   semantic\n",
    "#   8x0-4095  coarse\n",
    "\n",
    "#   4000 semantic pad token\n",
    "#   4001 semantic infer token\n",
    "#   2048 coarse pad token\n",
    "#   2049 coarse infer token\n",
    "\n",
    "# Memmaps:\n",
    "#   Nx9x3584 for audio tokens\n",
    "# Jsons:\n",
    "#   N*Dict with meta keys \n",
    "#     \"dataset\"\n",
    "#     \"original_id\", \"original_duration_s\",\n",
    "#     \"start_s\", \"end_s\", \n",
    "#     \"text_segments\", \"private_text_segments\",\n",
    "#     \"text\", \"private_text\",\n",
    "#     \"tags\", \"private_tags\",\n",
    "#     \"views\",\n",
    "#   Dict with meta keys {\"dataset\": [\"idx_list\"]}\n",
    "\n",
    "# Bundles (mert_v2_2x1k & dac_2c_25_8):\n",
    "# s3://suno-data/datasets/bundles/\n",
    "#  v1/youtube_music\n",
    "#  v1/genius_hq\n",
    "#  v1/jamendo\n",
    "#  v1/imslp\n",
    "#  v2/pond5\n",
    "#  v2/deezer\n",
    "#  v2/ytm_tagged\n",
    "#  v2/ytm_mb"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "ce43e8ad",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:00:43.006930Z",
     "start_time": "2024-02-16T05:00:41.047673Z"
    }
   },
   "outputs": [],
   "source": [
    "from matplotlib import pyplot as plt\n",
    "\n",
    "import sys\n",
    "\n",
    "sys.path.insert(0, \"/home/tony/Work/glockenspiel/sunoGPT/scripts/\")\n",
    "\n",
    "from data_preparation_7b import *"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "5164dde2",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:00:43.010975Z",
     "start_time": "2024-02-16T05:00:43.008916Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "4000 2048\n"
     ]
    }
   ],
   "source": [
    "print(SEMANTIC_CODEBOOK_SIZE, COARSE_CODEBOOK_SIZE)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "27f54cb0",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:01:06.251095Z",
     "start_time": "2024-02-16T05:01:06.248637Z"
    }
   },
   "outputs": [],
   "source": [
    "OUT_DATA_DIR = \"/app/suno/data/chirp_v3_ft_classical_4min\"\n",
    "os.makedirs(OUT_DATA_DIR, exist_ok=True)\n",
    "METAS_DIR = os.path.join(os.getcwd(), \"metadata\")\n",
    "NJOBS = 60\n",
    "CHUNKSIZE = 60"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "d188ba34",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:01:09.890213Z",
     "start_time": "2024-02-16T05:01:09.887957Z"
    }
   },
   "outputs": [],
   "source": [
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/genius_hq.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/youtube_music.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/jamendo.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/imslp.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/pond5_music.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/deezer.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/ytm_tagged.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/musescore.jsonl /app/suno/data/chirp_v3/metadata/\n",
    "# aws s3 cp s3://suno-data/georg/data/chirp_v2_5/filtered_metas/ytm_mb.jsonl /app/suno/data/chirp_v3/metadata/"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "b30bfb77",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:01:12.064058Z",
     "start_time": "2024-02-16T05:01:10.421274Z"
    }
   },
   "outputs": [],
   "source": [
    "# load manifests of IDs and text and tags etc\n",
    "meta_info_map = {\n",
    "    # \"genius_hq\": {m[\"id\"]: m for m in read_jsonl(os.path.join(\"/app/suno/data/chirp_v3_ft_v1\", \"genius_hq_v13.jsonl\"))},\n",
    "    # \"youtube_music\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"youtube_music.jsonl\"))},\n",
    "    # \"jamendo\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"jamendo.jsonl\"))},\n",
    "    \"imslp\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"imslp_filtered.jsonl\"))},\n",
    "    \"pond5_music\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"pond5_music_filtered.jsonl\"))},\n",
    "    # \"deezer\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"deezer.jsonl\"))},\n",
    "    # \"ytm_tagged\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"ytm_tagged.jsonl\"))},\n",
    "    # \"musescore\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"musescore.jsonl\"))},\n",
    "    # \"ytm_mb\": {m[\"id\"]: m for m in read_jsonl(os.path.join(METAS_DIR, \"ytm_mb.jsonl\"))},\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "1b551c83",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:01:14.122852Z",
     "start_time": "2024-02-16T05:01:14.120728Z"
    }
   },
   "outputs": [],
   "source": [
    "meta_cutoff_freq = {}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "2a01e35c",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:02:17.426753Z",
     "start_time": "2024-02-16T05:02:10.724702Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "start prepare data\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:03<00:00,  3.55s/it]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1 hours of pond5_music\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:03<00:00,  3.03s/it]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "7 hours of imslp\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    }
   ],
   "source": [
    "# (start_idx, end_idx), n_archives_semantic, n_archives_coarse\n",
    "datasets = [\n",
    "#     (\"youtube_music\", \"v1\", (0, 1), 1, 1),\n",
    "#     (\"genius_hq\", \"v1\", (0, 1), 1, 1),\n",
    "     (\"pond5_music\", \"v2\", (0, 3), 1, 1),\n",
    "     (\"imslp\", \"v1\", (0, 1), 1, 1),\n",
    "#     (\"jamendo\", \"v1\", (0, 1), 1, 1),\n",
    "#     (\"deezer\", \"v2\", (0, 1), 1, 1),\n",
    "#     (\"ytm_tagged\", \"v2\", (0, 1), 1, 1),\n",
    "#     (\"musescore\", \"v2\", (0, 1), 1, 1),\n",
    "    # (\"ytm_mb\", \"v2\", (0, 1), 1, 1),\n",
    "]\n",
    "prep_data(\n",
    "    datasets,\n",
    "    out_data_dir=OUT_DATA_DIR,\n",
    "    meta_info_map=meta_info_map,\n",
    "    meta_cutoff_freq=meta_cutoff_freq,  # TODO: This arg should be removed in the longer run...\n",
    "    is_val=True,\n",
    "    njobs=NJOBS,\n",
    "    chunksize=CHUNKSIZE,\n",
    ")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "956bd1f3",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:02:38.497640Z",
     "start_time": "2024-02-16T05:02:38.495681Z"
    }
   },
   "outputs": [],
   "source": [
    "# Stats:\n",
    "# tot expected: 4.5Tb\n",
    "# speed for ytm_mb: 53129/200*(3*60+40)/60/60 == 16 hours"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "a2dfa127",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:36:37.068405Z",
     "start_time": "2024-02-16T05:15:59.836373Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "start prepare data\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 69/69 [16:24<00:00, 14.26s/it]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1,655 hours of pond5_music\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 10/10 [04:06<00:00, 24.69s/it]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "5,080 hours of imslp\n"
     ]
    }
   ],
   "source": [
    "# (start_idx, end_idx), n_archives_semantic, n_archives_coarse\n",
    "datasets = [\n",
    "    # (\"youtube_music\", \"v1\", (1, 4204), 1, 1),\n",
    "    # (\"genius_hq\", \"v1\", (1, 4302), 1, 1),\n",
    "    (\"pond5_music\", \"v2\", (3, 4138), 1, 1),\n",
    "    (\"imslp\", \"v1\", (1, 558), 1, 1),\n",
    "    # (\"jamendo\", \"v1\", (1, 112), 1, 1),\n",
    "    # (\"deezer\", \"v2\", (1, 1538), 1, 1),\n",
    "    # (\"ytm_tagged\", \"v2\", (1, 5545), 1, 1),\n",
    "    # (\"musescore\", \"v2\", (1, 33), 1, 1),\n",
    "#     (\"ytm_mb\", \"v2\", (1, 53129), 1, 1),\n",
    "#     (\"ytm_mb\", \"v2\", (1, 50001), 1, 1),\n",
    "]\n",
    "prep_data(\n",
    "    datasets,\n",
    "    out_data_dir=OUT_DATA_DIR,\n",
    "    meta_info_map=meta_info_map,\n",
    "    meta_cutoff_freq=meta_cutoff_freq,  # TODO: This arg should be removed in the longer run...\n",
    "    is_val=False,\n",
    "    njobs=NJOBS,\n",
    "    chunksize=CHUNKSIZE,\n",
    ")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "d169a93b",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T05:36:37.082498Z",
     "start_time": "2024-02-16T05:36:37.070150Z"
    }
   },
   "outputs": [
    {
     "ename": "NameError",
     "evalue": "name 'BREAK' is not defined",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mNameError\u001b[0m                                 Traceback (most recent call last)",
      "Cell \u001b[0;32mIn[19], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mBREAK\u001b[49m\n",
      "\u001b[0;31mNameError\u001b[0m: name 'BREAK' is not defined"
     ]
    }
   ],
   "source": [
    "BREAK"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 33,
   "id": "daa65303",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:46:14.174571Z",
     "start_time": "2024-02-16T14:46:14.156997Z"
    }
   },
   "outputs": [],
   "source": [
    "# verify\n",
    "mm = np.memmap(os.path.join(OUT_DATA_DIR, \"data_val.bin\"), dtype=np.uint16, mode=\"r\")\n",
    "metas = read_jsonl(os.path.join(OUT_DATA_DIR, \"metas_val.jsonl\"))\n",
    "mm = mm.reshape(-1, N_TOKENS_AUDIO, 13)\n",
    "assert(len(mm) == len(metas))\n",
    "assert(mm[:100,:,0].min() >= 0)\n",
    "assert(mm[:100,:,0].max() <= 4000)\n",
    "assert(mm[:100,:,1:].min() >= 0)\n",
    "assert(mm[:100,:,1:].max() <= 2048)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "id": "f028e264",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:46:18.953006Z",
     "start_time": "2024-02-16T14:46:14.783566Z"
    }
   },
   "outputs": [],
   "source": [
    "# verify\n",
    "mm = np.memmap(os.path.join(OUT_DATA_DIR, \"data_tr.bin\"), dtype=np.uint16, mode=\"r\")\n",
    "metas = read_jsonl(os.path.join(OUT_DATA_DIR, \"metas_tr.jsonl\"))\n",
    "mm = mm.reshape(-1, N_TOKENS_AUDIO, 13)\n",
    "assert(len(mm) == len(metas))\n",
    "assert(mm[:100,:,0].min() >= 0)\n",
    "assert(mm[:100,:,0].max() <= 4000)\n",
    "assert(mm[:100,:,1:].min() >= 0)\n",
    "assert(mm[:100,:,1:].max() <= 2048)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "id": "bcc0709a",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:46:22.410814Z",
     "start_time": "2024-02-16T14:46:19.798387Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "169523\n"
     ]
    }
   ],
   "source": [
    "metas_tr = []\n",
    "with open(\"/app/suno/data/chirp_v3_ft_classical_4min/metas_tr.jsonl\", \"r\") as fp:\n",
    "    for line in fp.readlines():\n",
    "        meta = json.loads(line)\n",
    "        metas_tr.append(meta)\n",
    "print(len(metas_tr))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "id": "ead2c21b",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:46:22.414950Z",
     "start_time": "2024-02-16T14:46:22.412374Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "2648.796875"
      ]
     },
     "execution_count": 36,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "len(metas_tr) / 8 / 4 / 2"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "id": "4aae6eed",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:47:00.327774Z",
     "start_time": "2024-02-16T14:47:00.324863Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'dataset': 'imslp',\n",
       " 'id': '46d4a4ba-188c-409c-9baf-44830d6c9abf',\n",
       " 'start_s': 240.32,\n",
       " 'end_s': 304.8,\n",
       " 'original_duration_s': 304.8,\n",
       " 'vocal_start_s': None,\n",
       " 'vocal_end_s': None,\n",
       " 'tags': ['baroque',\n",
       "  'unspecified (includes: flute ; harpsichord ; 2 violins)',\n",
       "  'musical offering',\n",
       "  ' (orch. i. markevitch)',\n",
       "  'johann sebastian bach'],\n",
       " 'tags_private': ['baroque',\n",
       "  'Bach',\n",
       "  'unspecified (includes: flute ; harpsichord ; 2 violins)',\n",
       "  'BWV 1079 (orch. I. Markevitch)',\n",
       "  'Johann Sebastian',\n",
       "  'musical offering',\n",
       "  'Musical Offering',\n",
       "  ' (orch. i. markevitch)',\n",
       "  'johann sebastian bach']}"
      ]
     },
     "execution_count": 46,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "metas_tr[100200]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "id": "ee6cb998",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:47:31.732180Z",
     "start_time": "2024-02-16T14:47:31.649090Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(124314, 114365)"
      ]
     },
     "execution_count": 47,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "all_ids = set(list(meta_info_map[\"imslp\"].keys()))\n",
    "all_metas_tr_ids = set(m[\"id\"] for m in metas_tr)\n",
    "len(all_metas_tr_ids), len(all_ids)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "id": "1a818c4a",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:47:36.494088Z",
     "start_time": "2024-02-16T14:47:36.476892Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "['2a446313-ccc0-484e-87ad-a7281eff527c',\n",
       " '1c57bb59-c043-4d8e-890f-259a97fc1932',\n",
       " 'fa8c497d-aeaf-46b1-9699-a68e178b0172',\n",
       " 'eaebf5be-49f3-46e8-9821-b7016da79a81',\n",
       " '460331c3-b018-40a0-a1f8-a12b41ada8ac']"
      ]
     },
     "execution_count": 48,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "list(all_ids.difference(all_metas_tr_ids))[-5:]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 49,
   "id": "1336afe6",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:47:37.225922Z",
     "start_time": "2024-02-16T14:47:37.223127Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'id': '460331c3-b018-40a0-a1f8-a12b41ada8ac',\n",
       " 'tags': ['romantic',\n",
       "  '18 liebeslieder waltzes',\n",
       "  'johannes brahms',\n",
       "  ' (arr. j.a. kawarsky)',\n",
       "  'piano 4-hands'],\n",
       " 'private_tags': ['romantic',\n",
       "  '18 liebeslieder waltzes',\n",
       "  'johannes brahms',\n",
       "  'Johannes',\n",
       "  '18 Liebeslieder Waltzes',\n",
       "  'Brahms',\n",
       "  'Op. 52 (arr. J.A. Kawarsky)',\n",
       "  ' (arr. j.a. kawarsky)',\n",
       "  'piano 4-hands']}"
      ]
     },
     "execution_count": 49,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "meta_info_map[\"imslp\"][\"460331c3-b018-40a0-a1f8-a12b41ada8ac\"]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 56,
   "id": "74cb3544",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-02-16T14:50:19.146258Z",
     "start_time": "2024-02-16T14:50:18.968832Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'dataset': 'pond5_music', 'id': '231072351-bach-goldberg-variations-aria-performed-concert-pianist', 'start_s': 0.0, 'end_s': 170.32, 'original_duration_s': 170.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['beethoven', 'gershwin', 'reverie', 'clair de lune', 'moonlight sonata', 'handel', 'moonlight', 'schubert', 'vivaldi', 'relaxing', 'piano solo', 'goldberg variations', 'albeniz', 'albinoni', 'concert', 'nocturne', 'medium tempo', 'bach', 'debussy', 'piano', 'classic', 'mozart', 'erik satie', 'chopin', 'classical music', 'romantic', 'tchaikovsky', 'documentary', 'liszt', 'Schumann', 'advertisement', 'pianist', 'satie', 'dreamy', 'meditation', 'Background', 'johann sebastian bach', 'classical', 'Bach Goldberg Variations Aria (Performed by A Concert Pianist)', 'inspirational', 'corporate', 'classical piano', 'mahler', 'aria', 'rachmaninoff', 'ave maria', 'cinematic', 'adagio', \"Bach's Goldberg Variations Aria. It's perfect for for your all kind of commercial or non commercial purposes and background music needs including YouTube videos, time laps, education, documentary, tutorials, storytelling, film trailers, advertisements, drone videos, video games, social media ads, corporate and business presentations. Also it's perfect for meditation, spa, yoga, stress relief.\", 'ravel', 'grieg', 'Camille Saint Saens']}\n",
      "{'dataset': 'imslp', 'id': '96200183-6ce9-499b-825e-ae142d1cfea9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 306.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '96200183-6ce9-499b-825e-ae142d1cfea9', 'start_s': 240.32, 'end_s': 306.56, 'original_duration_s': 306.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '3548371e-01de-4d44-8cdd-88707282f355', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 395.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '3548371e-01de-4d44-8cdd-88707282f355', 'start_s': 240.32, 'end_s': 395.24, 'original_duration_s': 395.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'acb57e75-9b28-4d0e-a618-74793bb045b3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 267.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'acb57e75-9b28-4d0e-a618-74793bb045b3', 'start_s': 240.32, 'end_s': 267.08, 'original_duration_s': 267.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '471b7cc6-1460-4a65-9e4b-60847413b324', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 272.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '471b7cc6-1460-4a65-9e4b-60847413b324', 'start_s': 240.32, 'end_s': 272.96, 'original_duration_s': 272.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '857f0e25-fd67-4e10-8719-56c3de15ae6a', 'start_s': 0.0, 'end_s': 30.12, 'original_duration_s': 205.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '857f0e25-fd67-4e10-8719-56c3de15ae6a', 'start_s': 30.12, 'end_s': 205.6, 'original_duration_s': 205.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e3c06c04-2580-47ce-843e-f57b60302500', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 315.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e3c06c04-2580-47ce-843e-f57b60302500', 'start_s': 240.32, 'end_s': 315.72, 'original_duration_s': 315.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '5dabc4f1-1e45-41c0-9c80-589c94c2e1c9', 'start_s': 0.0, 'end_s': 42.0, 'original_duration_s': 172.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '5dabc4f1-1e45-41c0-9c80-589c94c2e1c9', 'start_s': 42.0, 'end_s': 172.0, 'original_duration_s': 172.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '620cd47b-82eb-402e-a0a6-67e7fe2d852a', 'start_s': 0.0, 'end_s': 48.16, 'original_duration_s': 327.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '620cd47b-82eb-402e-a0a6-67e7fe2d852a', 'start_s': 48.16, 'end_s': 288.48, 'original_duration_s': 327.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '620cd47b-82eb-402e-a0a6-67e7fe2d852a', 'start_s': 288.48, 'end_s': 327.12, 'original_duration_s': 327.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3953f7e1-7e72-4fb0-b4b6-b18d377fec5f', 'start_s': 0.0, 'end_s': 186.84, 'original_duration_s': 186.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1cc81582-2f7a-47f4-b160-6e545f261ee6', 'start_s': 0.0, 'end_s': 182.2, 'original_duration_s': 182.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '7c7f07df-bb39-4b7b-bd6f-9adddeff4770', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 297.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7c7f07df-bb39-4b7b-bd6f-9adddeff4770', 'start_s': 240.32, 'end_s': 297.44, 'original_duration_s': 297.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1df41254-1187-4061-8804-ce71a97c321d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 245.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1df41254-1187-4061-8804-ce71a97c321d', 'start_s': 240.32, 'end_s': 245.4, 'original_duration_s': 245.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'c36395be-31dd-4d67-8c88-f2351b6d733c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 289.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'c36395be-31dd-4d67-8c88-f2351b6d733c', 'start_s': 240.32, 'end_s': 289.0, 'original_duration_s': 289.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'f26fe2ed-0167-462f-ae60-3c857350620b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 298.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f26fe2ed-0167-462f-ae60-3c857350620b', 'start_s': 240.32, 'end_s': 298.0, 'original_duration_s': 298.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1962d22b-1686-4ff9-b25e-837c36200d53', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 379.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1962d22b-1686-4ff9-b25e-837c36200d53', 'start_s': 240.32, 'end_s': 379.96, 'original_duration_s': 379.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '3d77ca86-1cec-4ad6-a272-f4763c87bad6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 346.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3d77ca86-1cec-4ad6-a272-f4763c87bad6', 'start_s': 240.32, 'end_s': 346.68, 'original_duration_s': 346.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2696175f-fdba-4e27-9fae-aaeeff327611', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 278.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2696175f-fdba-4e27-9fae-aaeeff327611', 'start_s': 240.32, 'end_s': 278.0, 'original_duration_s': 278.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6c84c747-f8e9-4858-8d54-74340260b5f5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 296.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '6c84c747-f8e9-4858-8d54-74340260b5f5', 'start_s': 240.32, 'end_s': 296.72, 'original_duration_s': 296.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '3ec41c9c-cbc8-4a51-b31f-e127d6f667ec', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 283.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '3ec41c9c-cbc8-4a51-b31f-e127d6f667ec', 'start_s': 240.32, 'end_s': 283.0, 'original_duration_s': 283.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e4a95ccf-8c38-45a4-bddc-0e2879f30db2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 246.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e4a95ccf-8c38-45a4-bddc-0e2879f30db2', 'start_s': 240.32, 'end_s': 246.0, 'original_duration_s': 246.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'd96f8ce1-aa53-4be0-a211-dbeaa916790a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 306.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'd96f8ce1-aa53-4be0-a211-dbeaa916790a', 'start_s': 240.32, 'end_s': 306.04, 'original_duration_s': 306.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '6b1ae55c-d9b6-4ef1-bd99-a002550ef7c2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 331.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '6b1ae55c-d9b6-4ef1-bd99-a002550ef7c2', 'start_s': 240.32, 'end_s': 331.48, 'original_duration_s': 331.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '8009ca9c-fe43-461c-8cee-3d8d728ad641', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 289.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '8009ca9c-fe43-461c-8cee-3d8d728ad641', 'start_s': 240.32, 'end_s': 289.0, 'original_duration_s': 289.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '03e16c08-6cb1-43c1-bfca-23831cc074d7', 'start_s': 0.0, 'end_s': 176.16, 'original_duration_s': 176.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '595e589f-2e64-4dcf-bc78-b728a575a964', 'start_s': 0.0, 'end_s': 36.72, 'original_duration_s': 311.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '595e589f-2e64-4dcf-bc78-b728a575a964', 'start_s': 36.72, 'end_s': 277.04, 'original_duration_s': 311.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '595e589f-2e64-4dcf-bc78-b728a575a964', 'start_s': 277.04, 'end_s': 311.96, 'original_duration_s': 311.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'd34b84ad-b68e-4adc-a701-6138ff5c77b4', 'start_s': 0.0, 'end_s': 167.0, 'original_duration_s': 167.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '77175d7e-1426-4c9c-bdb3-a8fade636d1a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 383.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '77175d7e-1426-4c9c-bdb3-a8fade636d1a', 'start_s': 240.32, 'end_s': 383.36, 'original_duration_s': 383.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'd507d499-a886-4605-a6b3-e93962f61a38', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 320.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'd507d499-a886-4605-a6b3-e93962f61a38', 'start_s': 240.32, 'end_s': 320.56, 'original_duration_s': 320.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'cf4ad3e6-afa0-47a5-98a3-8e24db30cf5f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 271.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'cf4ad3e6-afa0-47a5-98a3-8e24db30cf5f', 'start_s': 240.32, 'end_s': 271.0, 'original_duration_s': 271.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '24222fe8-f8d1-4b26-b933-aa56eab653e9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 363.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '24222fe8-f8d1-4b26-b933-aa56eab653e9', 'start_s': 240.32, 'end_s': 363.6, 'original_duration_s': 363.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '5ddb6f3b-1ed1-4c24-8bc6-9334772e2262', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 286.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5ddb6f3b-1ed1-4c24-8bc6-9334772e2262', 'start_s': 240.32, 'end_s': 286.64, 'original_duration_s': 286.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1434f71b-1a67-4e1f-98af-3ceb6061fac4', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 320.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1434f71b-1a67-4e1f-98af-3ceb6061fac4', 'start_s': 240.32, 'end_s': 320.4, 'original_duration_s': 320.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '7ed9c65f-c908-4586-b1db-98c64f851e81', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 320.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7ed9c65f-c908-4586-b1db-98c64f851e81', 'start_s': 240.32, 'end_s': 320.56, 'original_duration_s': 320.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5052a1f8-3d11-4f94-816a-5dd95392c72b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 272.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5052a1f8-3d11-4f94-816a-5dd95392c72b', 'start_s': 240.32, 'end_s': 272.48, 'original_duration_s': 272.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7a48fd4d-2c48-4344-aa90-b203ab7312b5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 407.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '7a48fd4d-2c48-4344-aa90-b203ab7312b5', 'start_s': 240.32, 'end_s': 407.88, 'original_duration_s': 407.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'eca79e17-04b6-42eb-b0b6-eea81b125337', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 342.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'eca79e17-04b6-42eb-b0b6-eea81b125337', 'start_s': 240.32, 'end_s': 342.96, 'original_duration_s': 342.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '95272a39-db56-4d92-b88f-8859cfef15af', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 272.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '95272a39-db56-4d92-b88f-8859cfef15af', 'start_s': 240.32, 'end_s': 272.96, 'original_duration_s': 272.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'dc17fac0-d499-43aa-8e09-a42683fb549e', 'start_s': 0.0, 'end_s': 35.92, 'original_duration_s': 307.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'dc17fac0-d499-43aa-8e09-a42683fb549e', 'start_s': 35.92, 'end_s': 276.24, 'original_duration_s': 307.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'dc17fac0-d499-43aa-8e09-a42683fb549e', 'start_s': 276.24, 'end_s': 307.08, 'original_duration_s': 307.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'f553c919-b710-4904-9624-bed9dd9b1ca0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 295.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'f553c919-b710-4904-9624-bed9dd9b1ca0', 'start_s': 240.32, 'end_s': 295.48, 'original_duration_s': 295.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e1e4eb57-7458-4233-8945-e3d6b393591f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 400.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e1e4eb57-7458-4233-8945-e3d6b393591f', 'start_s': 240.32, 'end_s': 400.96, 'original_duration_s': 400.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'bc41ef59-55c9-4aa6-b4d1-481fe9e323ab', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 277.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'bc41ef59-55c9-4aa6-b4d1-481fe9e323ab', 'start_s': 240.32, 'end_s': 277.36, 'original_duration_s': 277.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'a26dbf66-a92e-4da1-8de5-f035f33a9fc0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 377.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'a26dbf66-a92e-4da1-8de5-f035f33a9fc0', 'start_s': 240.32, 'end_s': 377.0, 'original_duration_s': 377.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '20676ef3-b456-4bc9-bbf9-eb4b634ed7b6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 375.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '20676ef3-b456-4bc9-bbf9-eb4b634ed7b6', 'start_s': 240.32, 'end_s': 375.2, 'original_duration_s': 375.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '5689cd68-7c81-4af9-a330-67358daa3893', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 288.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '5689cd68-7c81-4af9-a330-67358daa3893', 'start_s': 240.32, 'end_s': 288.84, 'original_duration_s': 288.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1931486e-d94f-4a02-b220-8bfa51eba918', 'start_s': 0.0, 'end_s': 183.96, 'original_duration_s': 183.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '503699a8-e77d-4ebc-b038-daf598df2f13', 'start_s': 0.0, 'end_s': 47.92, 'original_duration_s': 172.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '503699a8-e77d-4ebc-b038-daf598df2f13', 'start_s': 47.92, 'end_s': 172.4, 'original_duration_s': 172.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b833a9a0-1d9b-4daa-8e83-644a0459fedb', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 258.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b833a9a0-1d9b-4daa-8e83-644a0459fedb', 'start_s': 240.32, 'end_s': 258.92, 'original_duration_s': 258.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'db3c3c87-0a7d-4c0d-b349-6519a403b1c8', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 324.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'db3c3c87-0a7d-4c0d-b349-6519a403b1c8', 'start_s': 240.32, 'end_s': 324.4, 'original_duration_s': 324.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e1bdb321-4038-449f-88fc-1eb97a17b8d9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 368.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e1bdb321-4038-449f-88fc-1eb97a17b8d9', 'start_s': 240.32, 'end_s': 368.28, 'original_duration_s': 368.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e459127a-823a-44df-9c9b-0cc5bdc1dba2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 288.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e459127a-823a-44df-9c9b-0cc5bdc1dba2', 'start_s': 240.32, 'end_s': 288.32, 'original_duration_s': 288.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'f99cad2a-c58d-4c2c-bb26-057fd63891d5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 265.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f99cad2a-c58d-4c2c-bb26-057fd63891d5', 'start_s': 240.32, 'end_s': 265.4, 'original_duration_s': 265.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c479602f-9bf7-4fe0-a136-f7ab1e30c30e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 376.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'c479602f-9bf7-4fe0-a136-f7ab1e30c30e', 'start_s': 240.32, 'end_s': 376.84, 'original_duration_s': 376.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '35790b5a-a9be-439a-9e06-f938cc53136f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 290.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '35790b5a-a9be-439a-9e06-f938cc53136f', 'start_s': 240.32, 'end_s': 290.96, 'original_duration_s': 290.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '57d85e6f-4bbe-4897-8952-f58dfddbaad9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 286.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '57d85e6f-4bbe-4897-8952-f58dfddbaad9', 'start_s': 240.32, 'end_s': 286.0, 'original_duration_s': 286.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'ac7e9238-66d0-4811-a500-00f49fcd8050', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 380.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ac7e9238-66d0-4811-a500-00f49fcd8050', 'start_s': 240.32, 'end_s': 380.0, 'original_duration_s': 380.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'aa567d75-c3a8-4514-bd9d-9a6c58f12443', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 296.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'aa567d75-c3a8-4514-bd9d-9a6c58f12443', 'start_s': 240.32, 'end_s': 296.08, 'original_duration_s': 296.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '009814c5-f2fb-443e-a8eb-7d3e28999f8b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 279.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '009814c5-f2fb-443e-a8eb-7d3e28999f8b', 'start_s': 240.32, 'end_s': 279.96, 'original_duration_s': 279.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'd5c2de8f-952e-419d-a35a-f892616cfa8b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 331.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd5c2de8f-952e-419d-a35a-f892616cfa8b', 'start_s': 240.32, 'end_s': 331.48, 'original_duration_s': 331.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a5a32c65-55fd-441b-aa83-37a4276863f4', 'start_s': 0.0, 'end_s': 177.76, 'original_duration_s': 177.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '15d2538f-d1a8-4a0c-8ca5-ffb305d49551', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 283.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '15d2538f-d1a8-4a0c-8ca5-ffb305d49551', 'start_s': 240.32, 'end_s': 283.32, 'original_duration_s': 283.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f900eb27-d8f6-4742-aab2-4a2a4bb6b82e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 368.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'f900eb27-d8f6-4742-aab2-4a2a4bb6b82e', 'start_s': 240.32, 'end_s': 368.28, 'original_duration_s': 368.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'b4ca0921-c77e-4083-acc7-95249ed37709', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 288.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'b4ca0921-c77e-4083-acc7-95249ed37709', 'start_s': 240.32, 'end_s': 288.84, 'original_duration_s': 288.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'c886b40f-cbbe-4978-9161-7244136d399e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 395.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c886b40f-cbbe-4978-9161-7244136d399e', 'start_s': 240.32, 'end_s': 395.24, 'original_duration_s': 395.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5ac76981-8f72-4ef0-ba00-2b806aea19f8', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 371.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '5ac76981-8f72-4ef0-ba00-2b806aea19f8', 'start_s': 240.32, 'end_s': 371.0, 'original_duration_s': 371.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'cb821f0d-8e7c-47fb-a3c2-a80c699786ce', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 281.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'cb821f0d-8e7c-47fb-a3c2-a80c699786ce', 'start_s': 240.32, 'end_s': 281.68, 'original_duration_s': 281.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e4ab917d-4adc-4fc6-858c-13aeadbea308', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 289.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'e4ab917d-4adc-4fc6-858c-13aeadbea308', 'start_s': 240.32, 'end_s': 289.76, 'original_duration_s': 289.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'dd384755-2c47-4f9c-afaa-f80c67140592', 'start_s': 0.0, 'end_s': 51.2, 'original_duration_s': 287.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'dd384755-2c47-4f9c-afaa-f80c67140592', 'start_s': 51.2, 'end_s': 287.64, 'original_duration_s': 287.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1457ecaa-d432-4202-88c7-f40ea5949b84', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 347.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1457ecaa-d432-4202-88c7-f40ea5949b84', 'start_s': 240.32, 'end_s': 347.76, 'original_duration_s': 347.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c2c83163-1cbe-442d-a496-e7abadbe8d15', 'start_s': 0.0, 'end_s': 167.0, 'original_duration_s': 167.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '7fba9bab-6bb6-497d-9b1d-85b81f3c2c93', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 282.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '7fba9bab-6bb6-497d-9b1d-85b81f3c2c93', 'start_s': 240.32, 'end_s': 282.44, 'original_duration_s': 282.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '0c12a1a2-a611-420b-8262-a8ee94fc4e69', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 303.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '0c12a1a2-a611-420b-8262-a8ee94fc4e69', 'start_s': 240.32, 'end_s': 303.08, 'original_duration_s': 303.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '19c62faa-ad76-4a0c-a1ef-a4c25eee632a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 271.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '19c62faa-ad76-4a0c-a1ef-a4c25eee632a', 'start_s': 240.32, 'end_s': 271.36, 'original_duration_s': 271.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'bab07c48-6526-407b-b32b-5b9fbd8a62c5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 350.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bab07c48-6526-407b-b32b-5b9fbd8a62c5', 'start_s': 240.32, 'end_s': 350.96, 'original_duration_s': 350.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b280fab5-dcd4-402c-8191-2ad2553d1d24', 'start_s': 0.0, 'end_s': 193.2, 'original_duration_s': 193.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'kindertotenlieder (arr. r. de leeuw)'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. R. de Leeuw)', 'orchestra', 'kindertotenlieder (arr. r. de leeuw)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1bf01103-a7d1-49c8-9be9-9a30f7e50a2f', 'start_s': 0.0, 'end_s': 30.36, 'original_duration_s': 400.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1bf01103-a7d1-49c8-9be9-9a30f7e50a2f', 'start_s': 30.36, 'end_s': 270.68, 'original_duration_s': 400.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '1bf01103-a7d1-49c8-9be9-9a30f7e50a2f', 'start_s': 270.68, 'end_s': 400.0, 'original_duration_s': 400.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '8d755bb6-c3b1-47ba-ae8a-7d2f38b424c1', 'start_s': 0.0, 'end_s': 172.2, 'original_duration_s': 172.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '6cfa8c53-9ee4-4d61-b1b4-7dde1b5f5182', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 268.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '6cfa8c53-9ee4-4d61-b1b4-7dde1b5f5182', 'start_s': 240.32, 'end_s': 268.0, 'original_duration_s': 268.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'c24c8eff-953f-4af2-ae5f-df2009872dc9', 'start_s': 0.0, 'end_s': 37.8, 'original_duration_s': 167.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c24c8eff-953f-4af2-ae5f-df2009872dc9', 'start_s': 37.8, 'end_s': 167.48, 'original_duration_s': 167.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2d4ea8d7-36cd-40a3-8070-3450f8337290', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 297.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '2d4ea8d7-36cd-40a3-8070-3450f8337290', 'start_s': 240.32, 'end_s': 297.48, 'original_duration_s': 297.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'a81c90b6-238b-47f6-acac-8f92a448cc6c', 'start_s': 0.0, 'end_s': 172.24, 'original_duration_s': 172.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ad290247-3d79-40ba-bca0-3b82918d9695', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 466.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'ad290247-3d79-40ba-bca0-3b82918d9695', 'start_s': 240.32, 'end_s': 466.6, 'original_duration_s': 466.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '8721caaf-76b5-42d7-9ffe-c13f615f4a52', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 402.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '8721caaf-76b5-42d7-9ffe-c13f615f4a52', 'start_s': 240.32, 'end_s': 402.0, 'original_duration_s': 402.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '84099ab9-d0d5-4259-b23b-7ae6f43e4f88', 'start_s': 0.0, 'end_s': 50.08, 'original_duration_s': 172.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '84099ab9-d0d5-4259-b23b-7ae6f43e4f88', 'start_s': 50.08, 'end_s': 172.16, 'original_duration_s': 172.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '538fcd0a-448e-4d77-bc05-7e268ec4375c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 287.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '538fcd0a-448e-4d77-bc05-7e268ec4375c', 'start_s': 240.32, 'end_s': 287.96, 'original_duration_s': 287.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '034644c5-c03c-48bf-b01b-7620a4d1a94c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 380.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '034644c5-c03c-48bf-b01b-7620a4d1a94c', 'start_s': 240.32, 'end_s': 380.84, 'original_duration_s': 380.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '78776234-d36b-423d-a6d3-98d9d0667b59', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 412.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '78776234-d36b-423d-a6d3-98d9d0667b59', 'start_s': 240.32, 'end_s': 412.72, 'original_duration_s': 412.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1a529844-59ef-4870-ae37-85269affcb85', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 376.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1a529844-59ef-4870-ae37-85269affcb85', 'start_s': 240.32, 'end_s': 376.88, 'original_duration_s': 376.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a6e99fe7-2fb6-45aa-b198-50006a4dfe91', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 292.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a6e99fe7-2fb6-45aa-b198-50006a4dfe91', 'start_s': 240.32, 'end_s': 292.92, 'original_duration_s': 292.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'Kindertotenlieder (arr. Z. Grafilo for voice and string quartet)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '18cdfe35-2a3d-4a60-8920-444373b3aeb6', 'start_s': 0.0, 'end_s': 54.24, 'original_duration_s': 337.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '18cdfe35-2a3d-4a60-8920-444373b3aeb6', 'start_s': 54.24, 'end_s': 294.56, 'original_duration_s': 337.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '18cdfe35-2a3d-4a60-8920-444373b3aeb6', 'start_s': 294.56, 'end_s': 337.68, 'original_duration_s': 337.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f995ac5e-b139-4f2b-ac62-820a75f19903', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 306.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'f995ac5e-b139-4f2b-ac62-820a75f19903', 'start_s': 240.32, 'end_s': 306.0, 'original_duration_s': 306.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '868e1d2d-5873-45d8-8488-044882040a3e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 271.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '868e1d2d-5873-45d8-8488-044882040a3e', 'start_s': 240.32, 'end_s': 271.52, 'original_duration_s': 271.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (arr. A. Schoenberg and R. Riehn for voice and chamber ensemble)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '926ef875-7cc5-4ec3-8a0e-ad953f6f4f13', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 415.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '926ef875-7cc5-4ec3-8a0e-ad953f6f4f13', 'start_s': 240.32, 'end_s': 415.96, 'original_duration_s': 415.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b31b00eb-ee80-4952-97cc-8841dbc849d3', 'start_s': 0.0, 'end_s': 40.24, 'original_duration_s': 184.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'b31b00eb-ee80-4952-97cc-8841dbc849d3', 'start_s': 40.24, 'end_s': 184.96, 'original_duration_s': 184.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '518906a9-d1d4-48ff-b211-f6759ce00e44', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 288.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '518906a9-d1d4-48ff-b211-f6759ce00e44', 'start_s': 240.32, 'end_s': 288.92, 'original_duration_s': 288.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'ab788899-fb48-48b7-996e-456e3e14f9d0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 346.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'ab788899-fb48-48b7-996e-456e3e14f9d0', 'start_s': 240.32, 'end_s': 346.04, 'original_duration_s': 346.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': 'b3e071e6-ff78-492c-a714-3dcdcdc9da2c', 'start_s': 0.0, 'end_s': 186.4, 'original_duration_s': 186.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and orchestra)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '64847b97-c1dd-4d0f-8a5c-1d5db276b26e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 350.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '64847b97-c1dd-4d0f-8a5c-1d5db276b26e', 'start_s': 240.32, 'end_s': 350.0, 'original_duration_s': 350.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '987e6c19-5082-41d5-bad1-3fb0f72edaf9', 'start_s': 0.0, 'end_s': 205.4, 'original_duration_s': 205.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['kindertotenlieder', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'kindertotenlieder', 'orchestra', 'gustav mahler', 'Gustav', 'Kindertotenlieder']}\n",
      "{'dataset': 'imslp', 'id': '61b9f4d9-6ef4-460f-ae9c-6118ed4c1b80', 'start_s': 0.0, 'end_s': 171.96, 'original_duration_s': 171.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Kindertotenlieder (version for voice and piano)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f7d364d1-6070-416d-8294-fd5ab23ee7d5', 'start_s': 0.0, 'end_s': 176.92, 'original_duration_s': 176.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a2687a60-61d5-44d2-924f-c1b5ceec4574', 'start_s': 0.0, 'end_s': 188.48, 'original_duration_s': 188.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ad509431-ec98-4b58-9213-d444e0968d95', 'start_s': 0.0, 'end_s': 174.52, 'original_duration_s': 174.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4ca798c4-408d-41e9-8693-687b14f5b142', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 276.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4ca798c4-408d-41e9-8693-687b14f5b142', 'start_s': 240.32, 'end_s': 276.32, 'original_duration_s': 276.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '06c5c0b3-9f0e-4747-bb07-46f3e39b2c54', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 473.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '06c5c0b3-9f0e-4747-bb07-46f3e39b2c54', 'start_s': 240.32, 'end_s': 473.28, 'original_duration_s': 473.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '04fcf640-e672-4a30-9a32-2ee102ac8bcc', 'start_s': 0.0, 'end_s': 173.96, 'original_duration_s': 173.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '40b36751-99ef-4bab-b7ac-40c1bb887201', 'start_s': 0.0, 'end_s': 157.64, 'original_duration_s': 157.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '36002ebd-6236-4b0d-9f53-9b822aab5aa7', 'start_s': 0.0, 'end_s': 56.24, 'original_duration_s': 195.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '36002ebd-6236-4b0d-9f53-9b822aab5aa7', 'start_s': 56.24, 'end_s': 195.48, 'original_duration_s': 195.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2c7e68ef-b2c7-456f-a5d7-10786f4a4bf5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 474.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2c7e68ef-b2c7-456f-a5d7-10786f4a4bf5', 'start_s': 240.32, 'end_s': 474.12, 'original_duration_s': 474.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd368f14a-f057-44e8-a2b9-de88350af11e', 'start_s': 0.0, 'end_s': 184.96, 'original_duration_s': 184.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9ac1dc06-3c98-4b66-9395-90da50482c52', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 324.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9ac1dc06-3c98-4b66-9395-90da50482c52', 'start_s': 240.32, 'end_s': 324.04, 'original_duration_s': 324.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fe72e71f-e62a-421e-a3db-8800a5887ba4', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 320.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fe72e71f-e62a-421e-a3db-8800a5887ba4', 'start_s': 240.32, 'end_s': 320.0, 'original_duration_s': 320.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b83ac880-b20d-45ca-9123-9ff101b8d585', 'start_s': 0.0, 'end_s': 169.08, 'original_duration_s': 169.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '35e30935-0d3f-4dbb-8ac4-e08384fbc762', 'start_s': 0.0, 'end_s': 36.52, 'original_duration_s': 219.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '35e30935-0d3f-4dbb-8ac4-e08384fbc762', 'start_s': 36.52, 'end_s': 219.68, 'original_duration_s': 219.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '292d6160-e462-41f0-9b3f-a0118aaf2dba', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 291.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '292d6160-e462-41f0-9b3f-a0118aaf2dba', 'start_s': 240.32, 'end_s': 291.68, 'original_duration_s': 291.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '82096f49-180e-492b-b0a6-35e7d0c3d1cc', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 358.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '82096f49-180e-492b-b0a6-35e7d0c3d1cc', 'start_s': 240.32, 'end_s': 358.84, 'original_duration_s': 358.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c3647687-e5dd-4011-88f9-5c9bb452a861', 'start_s': 0.0, 'end_s': 117.44, 'original_duration_s': 117.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '99624f81-ad12-46a1-9b35-4075224a49d4', 'start_s': 0.0, 'end_s': 133.56, 'original_duration_s': 133.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c66b76cd-f5d8-4689-a2a9-689674a61aa6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 415.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c66b76cd-f5d8-4689-a2a9-689674a61aa6', 'start_s': 240.32, 'end_s': 415.88, 'original_duration_s': 415.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '93311f01-20f8-4b8f-876a-b349ab292a5b', 'start_s': 0.0, 'end_s': 147.0, 'original_duration_s': 147.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '69cff75a-f67f-44c3-9680-9dc04f5ec060', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 373.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '69cff75a-f67f-44c3-9680-9dc04f5ec060', 'start_s': 240.32, 'end_s': 373.64, 'original_duration_s': 373.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e847d175-9a79-47f8-b738-69721d88d78c', 'start_s': 0.0, 'end_s': 236.0, 'original_duration_s': 236.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a7d91803-6eae-4f06-a365-41ade4ed093c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 246.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a7d91803-6eae-4f06-a365-41ade4ed093c', 'start_s': 240.32, 'end_s': 246.96, 'original_duration_s': 246.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '497609e9-377e-424e-8e00-8e8da90f7d06', 'start_s': 0.0, 'end_s': 215.24, 'original_duration_s': 215.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b8522478-c450-49ca-a047-7536a213c84e', 'start_s': 0.0, 'end_s': 132.96, 'original_duration_s': 132.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd8b596ba-8fba-49e6-a0ec-0a3ced066234', 'start_s': 0.0, 'end_s': 189.84, 'original_duration_s': 189.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b2b6ba13-7cb4-48b5-9ed6-d61041f3ab1c', 'start_s': 0.0, 'end_s': 189.24, 'original_duration_s': 189.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd2d18bd9-9583-4bfa-8b0e-fb4c827fc605', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 349.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd2d18bd9-9583-4bfa-8b0e-fb4c827fc605', 'start_s': 240.32, 'end_s': 349.4, 'original_duration_s': 349.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f4641463-054f-4aa5-a7b3-b0ea6099a0bd', 'start_s': 0.0, 'end_s': 162.88, 'original_duration_s': 162.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3fb7a375-4ca8-43f9-865c-b799e6b4ccbc', 'start_s': 0.0, 'end_s': 236.4, 'original_duration_s': 236.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0fc1259c-31a0-4d1a-9e41-d13b3408d110', 'start_s': 0.0, 'end_s': 191.16, 'original_duration_s': 191.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '84251641-6163-4d01-bc8d-1f535b1ebeb8', 'start_s': 0.0, 'end_s': 127.16, 'original_duration_s': 127.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'des knaben wunderhorn (excerpts) (arr. for wind quintet)', 'romantic', 'orchestra'], 'tags_private': ['des knaben wunderhorn (excerpts) (arr. for wind quintet)', 'Mahler', 'romantic', 'Des Knaben Wunderhorn (excerpts) (arr. for wind quintet)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd25762be-0e7f-41bc-934b-f9597154850d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 329.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd25762be-0e7f-41bc-934b-f9597154850d', 'start_s': 240.32, 'end_s': 329.16, 'original_duration_s': 329.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '07b2f5a5-f047-4fa5-a7a5-ffecfcd8995f', 'start_s': 0.0, 'end_s': 113.6, 'original_duration_s': 113.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'de6430df-d430-4ef5-8403-6c34eae22c3f', 'start_s': 0.0, 'end_s': 137.16, 'original_duration_s': 137.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b368fb29-dfae-4a22-8afd-905fa7f33a7e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 333.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b368fb29-dfae-4a22-8afd-905fa7f33a7e', 'start_s': 240.32, 'end_s': 333.96, 'original_duration_s': 333.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '84920535-11db-4e98-a3bd-1902ebef7165', 'start_s': 0.0, 'end_s': 163.6, 'original_duration_s': 163.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '29d6ebf1-ef9a-4338-a6ab-1be4abe73644', 'start_s': 0.0, 'end_s': 160.68, 'original_duration_s': 160.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '576bd1b7-6b5e-4b03-9c2d-6cb793b3761e', 'start_s': 0.0, 'end_s': 128.44, 'original_duration_s': 128.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd49ffd89-082d-42ec-922a-72af81b20fb9', 'start_s': 0.0, 'end_s': 60.0, 'original_duration_s': 244.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd49ffd89-082d-42ec-922a-72af81b20fb9', 'start_s': 60.0, 'end_s': 244.8, 'original_duration_s': 244.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '29a41f8f-b401-41ba-b4af-be259d37a876', 'start_s': 0.0, 'end_s': 194.0, 'original_duration_s': 194.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5928bfc1-07ac-41c5-906c-80fc43d51af9', 'start_s': 0.0, 'end_s': 218.32, 'original_duration_s': 218.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b6fcf5db-a594-4130-93c4-23b77085550d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 385.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b6fcf5db-a594-4130-93c4-23b77085550d', 'start_s': 240.32, 'end_s': 385.0, 'original_duration_s': 385.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2ec636d7-b8e3-4484-99f1-d741e65670fe', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 358.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2ec636d7-b8e3-4484-99f1-d741e65670fe', 'start_s': 240.32, 'end_s': 358.08, 'original_duration_s': 358.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f6f619d0-688f-4696-954c-a09370e1ab04', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 412.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f6f619d0-688f-4696-954c-a09370e1ab04', 'start_s': 240.32, 'end_s': 412.72, 'original_duration_s': 412.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8ccd3afe-2fe4-416c-a354-c59af3219c6d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 433.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8ccd3afe-2fe4-416c-a354-c59af3219c6d', 'start_s': 240.32, 'end_s': 433.72, 'original_duration_s': 433.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '97b43a8f-f4f5-4cba-830d-246e061ae3ad', 'start_s': 0.0, 'end_s': 154.2, 'original_duration_s': 154.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e0e3e3d2-fc32-46bd-b978-d82f9b0c431f', 'start_s': 0.0, 'end_s': 189.0, 'original_duration_s': 189.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '99fd009b-9d1b-43cf-b0d7-3498af903f47', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 270.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '99fd009b-9d1b-43cf-b0d7-3498af903f47', 'start_s': 240.32, 'end_s': 270.28, 'original_duration_s': 270.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c543a725-111f-4d47-9fad-50b4e5b0731b', 'start_s': 0.0, 'end_s': 147.96, 'original_duration_s': 147.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '669694c9-5652-422f-a639-b393c1159f15', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 342.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '669694c9-5652-422f-a639-b393c1159f15', 'start_s': 240.32, 'end_s': 342.44, 'original_duration_s': 342.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6acbbfc4-004d-4a75-ab1d-6ffc66be48c7', 'start_s': 0.0, 'end_s': 212.36, 'original_duration_s': 212.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '37fda933-3ac6-4dae-b728-865ccf102113', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 278.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '37fda933-3ac6-4dae-b728-865ccf102113', 'start_s': 240.32, 'end_s': 278.36, 'original_duration_s': 278.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '26dfcbad-7d13-4d6a-b8c6-3dc53e8c7b5b', 'start_s': 0.0, 'end_s': 183.04, 'original_duration_s': 183.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3771a92f-6a21-4321-b0d7-0e47b4681b10', 'start_s': 0.0, 'end_s': 181.0, 'original_duration_s': 181.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6a657f50-cb72-406b-9fcd-bee3813ad38e', 'start_s': 0.0, 'end_s': 224.64, 'original_duration_s': 224.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5dff4128-cbf0-4ba8-ab40-a6676e996b94', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 313.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5dff4128-cbf0-4ba8-ab40-a6676e996b94', 'start_s': 240.32, 'end_s': 313.0, 'original_duration_s': 313.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9efcad7f-34da-42c7-b4a7-50f010f01c0c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 339.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9efcad7f-34da-42c7-b4a7-50f010f01c0c', 'start_s': 240.32, 'end_s': 339.12, 'original_duration_s': 339.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '89b6e3b7-0ace-4aca-9a3e-ee3229747508', 'start_s': 0.0, 'end_s': 182.72, 'original_duration_s': 182.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '73d5eba4-9949-468a-9594-eecc9b2e20f0', 'start_s': 0.0, 'end_s': 59.76, 'original_duration_s': 371.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '73d5eba4-9949-468a-9594-eecc9b2e20f0', 'start_s': 59.76, 'end_s': 300.08, 'original_duration_s': 371.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '73d5eba4-9949-468a-9594-eecc9b2e20f0', 'start_s': 300.08, 'end_s': 371.6, 'original_duration_s': 371.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e93237a5-1d9d-4dfc-a6a3-61b45f3c7772', 'start_s': 0.0, 'end_s': 235.48, 'original_duration_s': 235.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9d5cf64c-5672-4d35-bd02-a025ceaa3750', 'start_s': 0.0, 'end_s': 228.24, 'original_duration_s': 228.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '08b9e908-cffe-45ae-967c-bb82019ceddc', 'start_s': 0.0, 'end_s': 146.72, 'original_duration_s': 146.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c098b7cc-b165-4b13-ba70-d311380cc2fb', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 272.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c098b7cc-b165-4b13-ba70-d311380cc2fb', 'start_s': 240.32, 'end_s': 272.2, 'original_duration_s': 272.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '21eeb208-12cb-44af-9a5e-3dec171b6527', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 349.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '21eeb208-12cb-44af-9a5e-3dec171b6527', 'start_s': 240.32, 'end_s': 349.36, 'original_duration_s': 349.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '024174c3-0395-401f-9811-79883e3f93dd', 'start_s': 0.0, 'end_s': 127.04, 'original_duration_s': 127.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bdba3b84-533e-454d-b1ba-f4e2be10fb9f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 427.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bdba3b84-533e-454d-b1ba-f4e2be10fb9f', 'start_s': 240.32, 'end_s': 427.8, 'original_duration_s': 427.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '85fa244b-63a4-4e0a-9821-232f17442c1a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 359.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '85fa244b-63a4-4e0a-9821-232f17442c1a', 'start_s': 240.32, 'end_s': 359.6, 'original_duration_s': 359.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c6938187-7827-48a5-85f4-6444186993a7', 'start_s': 0.0, 'end_s': 162.28, 'original_duration_s': 162.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f3a2254e-9381-4ad4-8488-0ffcdc597f61', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 255.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f3a2254e-9381-4ad4-8488-0ffcdc597f61', 'start_s': 240.32, 'end_s': 255.32, 'original_duration_s': 255.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1e8344da-90a5-45d5-a977-a08e24b68887', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 260.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1e8344da-90a5-45d5-a977-a08e24b68887', 'start_s': 240.32, 'end_s': 260.76, 'original_duration_s': 260.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3cda0442-0c79-4332-bcb2-f09576467998', 'start_s': 0.0, 'end_s': 153.96, 'original_duration_s': 153.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '11496c91-c5f6-4102-b64d-d0534a5a0795', 'start_s': 0.0, 'end_s': 128.48, 'original_duration_s': 128.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4312faa4-cd46-4c2d-bf7f-1fdd8bd135df', 'start_s': 0.0, 'end_s': 132.68, 'original_duration_s': 132.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'III. Trost im Unglück', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f81995f0-7c20-4fc2-8da1-df8b6bd7a006', 'start_s': 0.0, 'end_s': 132.0, 'original_duration_s': 132.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '956932a3-7e14-4c5c-a8d4-cd564f46ffd3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 473.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '956932a3-7e14-4c5c-a8d4-cd564f46ffd3', 'start_s': 240.32, 'end_s': 473.72, 'original_duration_s': 473.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '236fa93a-fcfc-420c-b2c4-b49ccf906006', 'start_s': 0.0, 'end_s': 163.48, 'original_duration_s': 163.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4ef02d7b-b471-441c-9031-1d6079459259', 'start_s': 0.0, 'end_s': 53.52, 'original_duration_s': 178.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4ef02d7b-b471-441c-9031-1d6079459259', 'start_s': 53.52, 'end_s': 178.84, 'original_duration_s': 178.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9ad27a33-7caa-4b4d-9870-b79e6af3c00c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 252.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9ad27a33-7caa-4b4d-9870-b79e6af3c00c', 'start_s': 240.32, 'end_s': 252.08, 'original_duration_s': 252.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bbd0393a-b378-4df5-a187-b861b911e225', 'start_s': 0.0, 'end_s': 121.44, 'original_duration_s': 121.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f446d8da-ca6b-4982-b863-fff5e3664164', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 308.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f446d8da-ca6b-4982-b863-fff5e3664164', 'start_s': 240.32, 'end_s': 308.52, 'original_duration_s': 308.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '51c0930d-1220-4016-877d-20992a402c8c', 'start_s': 0.0, 'end_s': 234.64, 'original_duration_s': 234.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6d6bd49f-f6c6-49e0-b247-e5c708ccfc79', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 342.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6d6bd49f-f6c6-49e0-b247-e5c708ccfc79', 'start_s': 240.32, 'end_s': 342.32, 'original_duration_s': 342.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b114c635-60b6-44da-95b9-4720d0bfe629', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 467.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b114c635-60b6-44da-95b9-4720d0bfe629', 'start_s': 240.32, 'end_s': 467.52, 'original_duration_s': 467.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '79dde028-1f23-4863-a621-11d428ca5467', 'start_s': 0.0, 'end_s': 114.96, 'original_duration_s': 114.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'abdb2752-6fe9-4123-993b-f3f29c9497da', 'start_s': 0.0, 'end_s': 187.56, 'original_duration_s': 187.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0d9e5d98-6e31-4691-9f93-f0a8be9b5019', 'start_s': 0.0, 'end_s': 178.52, 'original_duration_s': 178.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a05bc5f7-b38f-4622-a981-6472abcd2377', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 387.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a05bc5f7-b38f-4622-a981-6472abcd2377', 'start_s': 240.32, 'end_s': 387.44, 'original_duration_s': 387.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e7732657-5976-42c5-9154-da91085961e5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 401.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e7732657-5976-42c5-9154-da91085961e5', 'start_s': 240.32, 'end_s': 401.88, 'original_duration_s': 401.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9514555a-e3c9-43bd-bb33-e646ff137bde', 'start_s': 0.0, 'end_s': 129.88, 'original_duration_s': 129.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7657725a-235c-48bd-b462-e83dd2fd2a05', 'start_s': 0.0, 'end_s': 156.0, 'original_duration_s': 156.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f87aa8c6-f0c4-4894-8932-67543722dbfd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 415.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f87aa8c6-f0c4-4894-8932-67543722dbfd', 'start_s': 240.32, 'end_s': 415.08, 'original_duration_s': 415.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '65966695-e74c-4184-84da-b2e369450f46', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 251.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '65966695-e74c-4184-84da-b2e369450f46', 'start_s': 240.32, 'end_s': 251.4, 'original_duration_s': 251.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ea6251a3-4eef-4452-be2d-3e774d3df28d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 384.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ea6251a3-4eef-4452-be2d-3e774d3df28d', 'start_s': 240.32, 'end_s': 384.72, 'original_duration_s': 384.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd48c8ab7-38f9-4614-a08f-43128e2550cb', 'start_s': 0.0, 'end_s': 162.52, 'original_duration_s': 162.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '873ffbdd-82fb-48e5-afab-f0da3fdcc1e0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 259.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '873ffbdd-82fb-48e5-afab-f0da3fdcc1e0', 'start_s': 240.32, 'end_s': 259.84, 'original_duration_s': 259.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'eeb0927f-0b09-4358-97df-8d0882c0c434', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 364.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'eeb0927f-0b09-4358-97df-8d0882c0c434', 'start_s': 240.32, 'end_s': 364.52, 'original_duration_s': 364.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f960abb9-c75d-47c9-a5bb-6f47b7fe1526', 'start_s': 0.0, 'end_s': 212.96, 'original_duration_s': 212.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd9a7e196-ee57-4281-b9bb-7e26bda134cb', 'start_s': 0.0, 'end_s': 46.84, 'original_duration_s': 415.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd9a7e196-ee57-4281-b9bb-7e26bda134cb', 'start_s': 46.84, 'end_s': 287.16, 'original_duration_s': 415.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd9a7e196-ee57-4281-b9bb-7e26bda134cb', 'start_s': 287.16, 'end_s': 415.56, 'original_duration_s': 415.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5959efbb-200b-4f56-a12d-53aebcdb8eca', 'start_s': 0.0, 'end_s': 130.0, 'original_duration_s': 130.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'cb10df5e-c2e2-4801-8726-8040b478ed72', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 434.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'cb10df5e-c2e2-4801-8726-8040b478ed72', 'start_s': 240.32, 'end_s': 434.04, 'original_duration_s': 434.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'dd63acee-31d3-483d-8556-3f5f89c62821', 'start_s': 0.0, 'end_s': 147.76, 'original_duration_s': 147.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '074cabe6-ef4a-4752-88ef-a8fdd7f8f50a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 456.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '074cabe6-ef4a-4752-88ef-a8fdd7f8f50a', 'start_s': 240.32, 'end_s': 456.6, 'original_duration_s': 456.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd861d4de-5849-4eca-81b4-6ca992785856', 'start_s': 0.0, 'end_s': 162.92, 'original_duration_s': 162.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '86300e3c-ba56-4965-94c4-8b6fcdc94014', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 245.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '86300e3c-ba56-4965-94c4-8b6fcdc94014', 'start_s': 240.32, 'end_s': 245.4, 'original_duration_s': 245.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7a6880a6-4ab0-4742-b336-bd00b43e3d87', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 307.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7a6880a6-4ab0-4742-b336-bd00b43e3d87', 'start_s': 240.32, 'end_s': 307.8, 'original_duration_s': 307.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8270c748-38c9-4472-9dcc-114dee725360', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 318.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8270c748-38c9-4472-9dcc-114dee725360', 'start_s': 240.32, 'end_s': 318.0, 'original_duration_s': 318.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1ed3cb51-6d7a-469e-8c9f-225e0ecc846c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 327.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1ed3cb51-6d7a-469e-8c9f-225e0ecc846c', 'start_s': 240.32, 'end_s': 327.2, 'original_duration_s': 327.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1812111a-c875-42d5-9306-2808be4bd35e', 'start_s': 0.0, 'end_s': 175.4, 'original_duration_s': 175.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7de065c5-bf8c-4b82-a266-9f3a0beb6ff0', 'start_s': 0.0, 'end_s': 52.04, 'original_duration_s': 420.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7de065c5-bf8c-4b82-a266-9f3a0beb6ff0', 'start_s': 52.04, 'end_s': 292.36, 'original_duration_s': 420.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7de065c5-bf8c-4b82-a266-9f3a0beb6ff0', 'start_s': 292.36, 'end_s': 420.0, 'original_duration_s': 420.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '180cd50c-312c-4806-9d1b-d9b179e59a11', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 431.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '180cd50c-312c-4806-9d1b-d9b179e59a11', 'start_s': 240.32, 'end_s': 431.48, 'original_duration_s': 431.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6a032b8b-36fa-4be6-81b0-39ed1c328171', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 407.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6a032b8b-36fa-4be6-81b0-39ed1c328171', 'start_s': 240.32, 'end_s': 407.16, 'original_duration_s': 407.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '71e5b2b4-3000-4b6d-bfba-7bba2695dd5a', 'start_s': 0.0, 'end_s': 117.32, 'original_duration_s': 117.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fe507cc8-664a-4b0f-b105-e94fbfb87d27', 'start_s': 0.0, 'end_s': 179.2, 'original_duration_s': 179.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3b3d8299-3ce5-4b59-bf20-dd3c3908b74a', 'start_s': 0.0, 'end_s': 171.36, 'original_duration_s': 171.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b6e08dfd-8e6d-4d3a-a1c7-16e9b51de9b5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 306.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b6e08dfd-8e6d-4d3a-a1c7-16e9b51de9b5', 'start_s': 240.32, 'end_s': 306.4, 'original_duration_s': 306.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2a5e9bd2-730d-4aee-8304-09b42578a54f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 366.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2a5e9bd2-730d-4aee-8304-09b42578a54f', 'start_s': 240.32, 'end_s': 366.44, 'original_duration_s': 366.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fa4b69a0-f2ae-412d-8489-d0e02283d8e4', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 402.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fa4b69a0-f2ae-412d-8489-d0e02283d8e4', 'start_s': 240.32, 'end_s': 402.28, 'original_duration_s': 402.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '460790ce-f785-4589-98e2-7276b001f29b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 258.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '460790ce-f785-4589-98e2-7276b001f29b', 'start_s': 240.32, 'end_s': 258.96, 'original_duration_s': 258.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '52f7d6d6-6aeb-4e99-b5a5-7c552f812066', 'start_s': 0.0, 'end_s': 179.48, 'original_duration_s': 179.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'des knaben wunderhorn (excerpts) (arr. for wind quintet)', 'romantic', 'orchestra'], 'tags_private': ['des knaben wunderhorn (excerpts) (arr. for wind quintet)', 'Mahler', 'romantic', 'Des Knaben Wunderhorn (excerpts) (arr. for wind quintet)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '378213d6-1562-479a-8110-f7f5979b5c32', 'start_s': 0.0, 'end_s': 202.24, 'original_duration_s': 202.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b20b262f-5890-4a56-a538-b914052460ea', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 431.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b20b262f-5890-4a56-a538-b914052460ea', 'start_s': 240.32, 'end_s': 431.76, 'original_duration_s': 431.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ad30dc30-b4ee-4ffb-8c01-96a1067c425f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 357.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ad30dc30-b4ee-4ffb-8c01-96a1067c425f', 'start_s': 240.32, 'end_s': 357.92, 'original_duration_s': 357.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b849f74a-ff68-4ffd-a295-f43440c5cae9', 'start_s': 0.0, 'end_s': 55.92, 'original_duration_s': 248.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b849f74a-ff68-4ffd-a295-f43440c5cae9', 'start_s': 55.92, 'end_s': 248.4, 'original_duration_s': 248.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '308d5e8f-da1a-4d07-b608-ddef5a3ef51a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 360.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '308d5e8f-da1a-4d07-b608-ddef5a3ef51a', 'start_s': 240.32, 'end_s': 360.0, 'original_duration_s': 360.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '171ec5b9-cc31-4060-98a8-5b8bba5237db', 'start_s': 0.0, 'end_s': 228.24, 'original_duration_s': 228.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7cd65fee-51a0-4ad9-b281-a4afc9914bb1', 'start_s': 0.0, 'end_s': 146.4, 'original_duration_s': 146.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '173fcb4d-db79-439c-8beb-99205faffd05', 'start_s': 0.0, 'end_s': 44.6, 'original_duration_s': 234.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '173fcb4d-db79-439c-8beb-99205faffd05', 'start_s': 44.6, 'end_s': 234.96, 'original_duration_s': 234.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'cda78c1d-e947-409a-8b31-59e7ecce5fa2', 'start_s': 0.0, 'end_s': 153.96, 'original_duration_s': 153.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ff81885e-ab3e-4099-8bd9-ec2060cff33a', 'start_s': 0.0, 'end_s': 171.8, 'original_duration_s': 171.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7789fae9-281c-42bf-8a51-73901394af72', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 360.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7789fae9-281c-42bf-8a51-73901394af72', 'start_s': 240.32, 'end_s': 360.08, 'original_duration_s': 360.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '260f45db-4ac1-4571-afb1-be0f42b9e420', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 422.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '260f45db-4ac1-4571-afb1-be0f42b9e420', 'start_s': 240.32, 'end_s': 422.96, 'original_duration_s': 422.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '67fbb520-70ba-433d-a744-2b572ec051f4', 'start_s': 0.0, 'end_s': 202.24, 'original_duration_s': 202.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c8b6948d-1dc5-48b6-8381-3a41d0d544b4', 'start_s': 0.0, 'end_s': 192.52, 'original_duration_s': 192.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7542e44a-7c6a-4855-85af-c2f00178d665', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 416.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7542e44a-7c6a-4855-85af-c2f00178d665', 'start_s': 240.32, 'end_s': 416.2, 'original_duration_s': 416.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '49cc8d83-dfad-4c30-816e-0098e9e0bd32', 'start_s': 0.0, 'end_s': 44.28, 'original_duration_s': 401.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '49cc8d83-dfad-4c30-816e-0098e9e0bd32', 'start_s': 44.28, 'end_s': 284.6, 'original_duration_s': 401.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '49cc8d83-dfad-4c30-816e-0098e9e0bd32', 'start_s': 284.6, 'end_s': 401.32, 'original_duration_s': 401.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '530f94f6-8726-4779-afe3-23f7626a8039', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 249.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '530f94f6-8726-4779-afe3-23f7626a8039', 'start_s': 240.32, 'end_s': 249.8, 'original_duration_s': 249.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5ecd58d4-b98d-425f-92ed-411bc9196c5f', 'start_s': 0.0, 'end_s': 187.04, 'original_duration_s': 187.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f9a317f0-6cb0-44b2-86b6-9d8a3b80dab9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 391.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f9a317f0-6cb0-44b2-86b6-9d8a3b80dab9', 'start_s': 240.32, 'end_s': 391.28, 'original_duration_s': 391.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8c25f895-301e-4186-a44b-6d8a3acd79e1', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 284.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Des Knaben Wunderhorn (version for voice and piano) (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8c25f895-301e-4186-a44b-6d8a3acd79e1', 'start_s': 240.32, 'end_s': 284.0, 'original_duration_s': 284.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Des Knaben Wunderhorn (version for voice and piano) (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3d96306d-a4b1-491b-957f-a852da57c763', 'start_s': 0.0, 'end_s': 132.12, 'original_duration_s': 132.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a85cc503-210c-4c40-90a4-a538366bd123', 'start_s': 0.0, 'end_s': 136.16, 'original_duration_s': 136.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'des knaben wunderhorn (excerpts) (arr. for wind quintet)', 'romantic', 'orchestra'], 'tags_private': ['des knaben wunderhorn (excerpts) (arr. for wind quintet)', 'Mahler', 'romantic', 'Des Knaben Wunderhorn (excerpts) (arr. for wind quintet)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c12fdb23-b652-458a-b6a7-68f348c5a11a', 'start_s': 0.0, 'end_s': 174.44, 'original_duration_s': 174.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7f0e8095-afc1-4762-9593-dc36ecf4f633', 'start_s': 0.0, 'end_s': 109.44, 'original_duration_s': 109.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn (version for voice and piano)', 'Mahler', 'romantic', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ec6315f1-b648-4237-b169-e078b3fa0444', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 385.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ec6315f1-b648-4237-b169-e078b3fa0444', 'start_s': 240.32, 'end_s': 385.96, 'original_duration_s': 385.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5db052b8-4240-4c14-82a7-e3731e4f6496', 'start_s': 0.0, 'end_s': 152.8, 'original_duration_s': 152.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'dc82feef-a659-4381-a0fd-1019236cefc5', 'start_s': 0.0, 'end_s': 213.0, 'original_duration_s': 213.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8fc916fe-8aa8-4a3c-b713-38a2fd1b12cf', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 434.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8fc916fe-8aa8-4a3c-b713-38a2fd1b12cf', 'start_s': 240.32, 'end_s': 434.04, 'original_duration_s': 434.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c0dbc4e5-f5bf-4d36-8bfe-545ab7b78e3d', 'start_s': 0.0, 'end_s': 34.88, 'original_duration_s': 163.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c0dbc4e5-f5bf-4d36-8bfe-545ab7b78e3d', 'start_s': 34.88, 'end_s': 163.96, 'original_duration_s': 163.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b129c018-2f66-4d0c-9155-5d4c6b395a50', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 275.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b129c018-2f66-4d0c-9155-5d4c6b395a50', 'start_s': 240.32, 'end_s': 275.84, 'original_duration_s': 275.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e4fde145-4089-423d-9970-165381d0e14e', 'start_s': 0.0, 'end_s': 180.52, 'original_duration_s': 180.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a9c90e14-aceb-48c2-9f14-c6901a5e0f36', 'start_s': 0.0, 'end_s': 142.64, 'original_duration_s': 142.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0764fce9-65e0-4d37-aedd-edfd8f309fe2', 'start_s': 0.0, 'end_s': 123.96, 'original_duration_s': 123.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '53f5c5d2-6352-45dd-a589-a64a30071534', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 278.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '53f5c5d2-6352-45dd-a589-a64a30071534', 'start_s': 240.32, 'end_s': 278.68, 'original_duration_s': 278.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '35e34729-f98f-4cf8-9cae-449b16991783', 'start_s': 0.0, 'end_s': 43.52, 'original_duration_s': 243.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '35e34729-f98f-4cf8-9cae-449b16991783', 'start_s': 43.52, 'end_s': 243.44, 'original_duration_s': 243.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '5b9c2ee2-8524-4ca4-87b0-e02d413cb57b', 'start_s': 0.0, 'end_s': 146.72, 'original_duration_s': 146.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a3d066f1-8973-4ac7-bbc1-bf0899476c14', 'start_s': 0.0, 'end_s': 164.88, 'original_duration_s': 164.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f172870a-3c76-48c5-bdfd-f7d27ad08435', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 328.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f172870a-3c76-48c5-bdfd-f7d27ad08435', 'start_s': 240.32, 'end_s': 328.4, 'original_duration_s': 328.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f1d56993-aa49-43a1-b9bd-535b5de2ab18', 'start_s': 0.0, 'end_s': 44.04, 'original_duration_s': 428.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f1d56993-aa49-43a1-b9bd-535b5de2ab18', 'start_s': 44.04, 'end_s': 284.36, 'original_duration_s': 428.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f1d56993-aa49-43a1-b9bd-535b5de2ab18', 'start_s': 284.36, 'end_s': 428.0, 'original_duration_s': 428.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn (excertps)', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Mahler', 'romantic', 'Des Knaben Wunderhorn (excertps)', 'orchestra', 'des knaben wunderhorn (excertps)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a80d3d0e-620c-4e2a-bb3b-fd29ed322d0b', 'start_s': 0.0, 'end_s': 166.68, 'original_duration_s': 166.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '02d29287-6757-4c32-890e-3679cc130c40', 'start_s': 0.0, 'end_s': 226.68, 'original_duration_s': 226.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd9de192a-8b37-4ad4-9e26-54f844001104', 'start_s': 0.0, 'end_s': 57.16, 'original_duration_s': 306.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd9de192a-8b37-4ad4-9e26-54f844001104', 'start_s': 57.16, 'end_s': 297.48, 'original_duration_s': 306.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd9de192a-8b37-4ad4-9e26-54f844001104', 'start_s': 297.48, 'end_s': 306.48, 'original_duration_s': 306.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['des knaben wunderhorn', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['Des Knaben Wunderhorn', 'romantic', 'Mahler', 'orchestra', 'des knaben wunderhorn', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fe5c000e-2cf9-453b-ad54-cf0d3debb356', 'start_s': 0.0, 'end_s': 152.48, 'original_duration_s': 152.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1681809f-bf01-4934-8c44-3a60b78ceb9f', 'start_s': 0.0, 'end_s': 165.96, 'original_duration_s': 165.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a99fb2e8-8572-459c-81d6-c0fed996a4bb', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 408.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a99fb2e8-8572-459c-81d6-c0fed996a4bb', 'start_s': 240.32, 'end_s': 408.96, 'original_duration_s': 408.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'des knaben wunderhorn (excerpts)', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'des knaben wunderhorn (excerpts)', 'Des Knaben Wunderhorn (excerpts)', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '18968e24-ef94-4e93-9a91-496a8d95cb92', 'start_s': 0.0, 'end_s': 197.48, 'original_duration_s': 197.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a0f07c34-6910-4be6-9b90-25a51101940f', 'start_s': 0.0, 'end_s': 38.6, 'original_duration_s': 219.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a0f07c34-6910-4be6-9b90-25a51101940f', 'start_s': 38.6, 'end_s': 219.36, 'original_duration_s': 219.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '21dfc196-e6d5-445c-bd29-1164a1c94195', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 306.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '21dfc196-e6d5-445c-bd29-1164a1c94195', 'start_s': 240.32, 'end_s': 306.24, 'original_duration_s': 306.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bc3071c2-a16d-423a-8064-aea7a3917b14', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 345.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bc3071c2-a16d-423a-8064-aea7a3917b14', 'start_s': 240.32, 'end_s': 345.2, 'original_duration_s': 345.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8dab7453-5dd8-451e-a554-e0f48793b127', 'start_s': 0.0, 'end_s': 217.08, 'original_duration_s': 217.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '5a2413f6-50cc-4e0e-b7d8-23b8529ef2d6', 'start_s': 0.0, 'end_s': 204.76, 'original_duration_s': 204.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'efc90be8-9fe8-4c55-8130-74c5e1e20186', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 259.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'efc90be8-9fe8-4c55-8130-74c5e1e20186', 'start_s': 240.32, 'end_s': 259.96, 'original_duration_s': 259.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6013760d-f74e-45fe-b308-fb94e0ebcd24', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 259.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6013760d-f74e-45fe-b308-fb94e0ebcd24', 'start_s': 240.32, 'end_s': 259.64, 'original_duration_s': 259.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '754bd843-7434-4161-85f3-f862f3410a10', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 250.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '754bd843-7434-4161-85f3-f862f3410a10', 'start_s': 240.32, 'end_s': 250.28, 'original_duration_s': 250.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '630bce78-f58a-421e-8d35-be9e5ab74f35', 'start_s': 0.0, 'end_s': 175.72, 'original_duration_s': 175.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '617e7934-7ddf-4b2c-8116-ee8135a8df27', 'start_s': 0.0, 'end_s': 198.64, 'original_duration_s': 198.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6532402f-4fe5-451d-b0cd-592136a8b690', 'start_s': 0.0, 'end_s': 172.88, 'original_duration_s': 172.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '61869cf9-f77e-4a34-96d5-01b3741a29d9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 257.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '61869cf9-f77e-4a34-96d5-01b3741a29d9', 'start_s': 240.32, 'end_s': 257.36, 'original_duration_s': 257.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '32feab02-1ac5-4eba-a5c8-be82adf99457', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 302.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. Z. Grafilo for voice and string quartet)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '32feab02-1ac5-4eba-a5c8-be82adf99457', 'start_s': 240.32, 'end_s': 302.72, 'original_duration_s': 302.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. Z. Grafilo for voice and string quartet)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '7cb40d06-f5c7-4944-8e43-1e0443d83230', 'start_s': 0.0, 'end_s': 189.12, 'original_duration_s': 189.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen', 'Mahler', '2 oboes (both also english horn)', 'cymbals', 'tam-tam', 'romantic', 'harp', '2 trumpets (f)', 'Lieder eines fahrenden Gesellen', 'glockenspiel', 'strings', 'III. Ich hab ein glühend Messer', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'f0c76676-ff48-4e50-a17d-00462d1b7cab', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 311.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen', 'Mahler', '2 oboes (both also english horn)', 'cymbals', 'tam-tam', 'romantic', 'harp', '2 trumpets (f)', 'Lieder eines fahrenden Gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani', 'IV. Die zwei blauen Augen', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'f0c76676-ff48-4e50-a17d-00462d1b7cab', 'start_s': 240.32, 'end_s': 311.16, 'original_duration_s': 311.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen', 'Mahler', '2 oboes (both also english horn)', 'cymbals', 'tam-tam', 'romantic', 'harp', '2 trumpets (f)', 'Lieder eines fahrenden Gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani', 'IV. Die zwei blauen Augen', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'a938e9ed-a598-4300-85fc-cb3ecf11fa02', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 263.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and chamber ensemble)', 'cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a938e9ed-a598-4300-85fc-cb3ecf11fa02', 'start_s': 240.32, 'end_s': 263.48, 'original_duration_s': 263.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and chamber ensemble)', 'cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '10447a48-d490-4ca3-bfdd-dde2611d03e0', 'start_s': 0.0, 'end_s': 40.72, 'original_duration_s': 267.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '10447a48-d490-4ca3-bfdd-dde2611d03e0', 'start_s': 40.72, 'end_s': 267.16, 'original_duration_s': 267.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '18d08020-c922-40cb-9717-a30197a6493a', 'start_s': 0.0, 'end_s': 235.72, 'original_duration_s': 235.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '70e51a66-a995-4c46-baf0-941b25719389', 'start_s': 0.0, 'end_s': 219.08, 'original_duration_s': 219.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6dd588d5-3dbb-4081-98b9-c55d4db7e969', 'start_s': 0.0, 'end_s': 229.6, 'original_duration_s': 229.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ce123a05-aa5c-46b0-bf23-47d0dc2c43e2', 'start_s': 0.0, 'end_s': 229.8, 'original_duration_s': 229.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ce0a10f4-c6a6-4347-92ec-de2d0a0a80de', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 252.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ce0a10f4-c6a6-4347-92ec-de2d0a0a80de', 'start_s': 240.32, 'end_s': 252.0, 'original_duration_s': 252.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd8306884-976e-48b0-8153-b1bb356e366a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 350.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd8306884-976e-48b0-8153-b1bb356e366a', 'start_s': 240.32, 'end_s': 350.4, 'original_duration_s': 350.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '80c9af8d-a817-4386-b16f-268f30a460b7', 'start_s': 0.0, 'end_s': 190.68, 'original_duration_s': 190.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'c01c9302-9af0-4a0f-9dce-1feb24081e6a', 'start_s': 0.0, 'end_s': 171.0, 'original_duration_s': 171.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bd72a376-c449-4c61-908e-7e8dae8e7d3d', 'start_s': 0.0, 'end_s': 233.4, 'original_duration_s': 233.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '888e7da1-e687-47ca-bb54-39496daa9821', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 311.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '888e7da1-e687-47ca-bb54-39496daa9821', 'start_s': 240.32, 'end_s': 311.0, 'original_duration_s': 311.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '5a6ad11e-bb28-4827-ae74-95d674c39a5c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 242.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '5a6ad11e-bb28-4827-ae74-95d674c39a5c', 'start_s': 240.32, 'end_s': 242.04, 'original_duration_s': 242.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '4b1d7c88-af15-45f4-87d4-6965148970bb', 'start_s': 0.0, 'end_s': 182.6, 'original_duration_s': 182.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ccfed621-0940-47bf-8a91-420a80ef1095', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 257.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ccfed621-0940-47bf-8a91-420a80ef1095', 'start_s': 240.32, 'end_s': 257.8, 'original_duration_s': 257.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a1641ac1-9ba1-4151-8c97-5b36434fac0c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 339.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a1641ac1-9ba1-4151-8c97-5b36434fac0c', 'start_s': 240.32, 'end_s': 339.44, 'original_duration_s': 339.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8977ec20-917d-4679-80f0-11df04c1fec8', 'start_s': 0.0, 'end_s': 228.52, 'original_duration_s': 228.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6c3f8bb4-82e9-4106-bb74-5eefaff37884', 'start_s': 0.0, 'end_s': 183.04, 'original_duration_s': 183.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ac54e5f3-0a57-4519-8786-977708a8a5d6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 266.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ac54e5f3-0a57-4519-8786-977708a8a5d6', 'start_s': 240.32, 'end_s': 266.12, 'original_duration_s': 266.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '59eb1b24-c102-46dd-96d0-9714e59c2413', 'start_s': 0.0, 'end_s': 228.52, 'original_duration_s': 228.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. Z. Grafilo for voice and string quartet)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'b86c25df-aa43-4193-9041-84bc316aceee', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 302.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'b86c25df-aa43-4193-9041-84bc316aceee', 'start_s': 240.32, 'end_s': 302.48, 'original_duration_s': 302.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'daf0c0e1-5b7d-4b4f-9d16-87737a5b5a9b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 248.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and chamber ensemble)', 'cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'daf0c0e1-5b7d-4b4f-9d16-87737a5b5a9b', 'start_s': 240.32, 'end_s': 248.96, 'original_duration_s': 248.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and chamber ensemble)', 'cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6c3cd601-051c-4407-b495-1e722cd97c48', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 243.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6c3cd601-051c-4407-b495-1e722cd97c48', 'start_s': 240.32, 'end_s': 243.64, 'original_duration_s': 243.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '41fca3fb-7575-4d00-8222-3f4301060902', 'start_s': 0.0, 'end_s': 42.72, 'original_duration_s': 190.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '41fca3fb-7575-4d00-8222-3f4301060902', 'start_s': 42.72, 'end_s': 190.44, 'original_duration_s': 190.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a283ef5c-0b13-4edf-865d-d9f2bf3c8efe', 'start_s': 0.0, 'end_s': 174.48, 'original_duration_s': 174.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '33839a8e-e424-4f88-bf4d-5e0b4acd6316', 'start_s': 0.0, 'end_s': 218.0, 'original_duration_s': 218.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'caa9ffac-f17e-4ba0-99c3-b93bda45a0a9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 279.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'caa9ffac-f17e-4ba0-99c3-b93bda45a0a9', 'start_s': 240.32, 'end_s': 279.64, 'original_duration_s': 279.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '56dabd38-4164-4ee8-8d3c-5723218f26f0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 243.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '56dabd38-4164-4ee8-8d3c-5723218f26f0', 'start_s': 240.32, 'end_s': 243.36, 'original_duration_s': 243.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'c0df4b3c-0163-479a-98f0-1cc442783d30', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 279.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'c0df4b3c-0163-479a-98f0-1cc442783d30', 'start_s': 240.32, 'end_s': 279.6, 'original_duration_s': 279.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '1cf9beed-593d-4b96-9722-bf6949753f38', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 297.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '1cf9beed-593d-4b96-9722-bf6949753f38', 'start_s': 240.32, 'end_s': 297.16, 'original_duration_s': 297.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '51c8c48b-3066-4c44-9f01-b23e24147c16', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 322.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '51c8c48b-3066-4c44-9f01-b23e24147c16', 'start_s': 240.32, 'end_s': 322.72, 'original_duration_s': 322.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'f58e7023-73a2-4fd3-a424-638fce233d20', 'start_s': 0.0, 'end_s': 216.24, 'original_duration_s': 216.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '91268f90-df2f-4718-8bf7-1f35d6b1b433', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 305.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '91268f90-df2f-4718-8bf7-1f35d6b1b433', 'start_s': 240.32, 'end_s': 305.4, 'original_duration_s': 305.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8ab54a4f-ee54-4995-ab84-18df2334d914', 'start_s': 0.0, 'end_s': 232.0, 'original_duration_s': 232.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0f60ed8b-6f2f-4bba-9b1c-fcfd0eb1f361', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 269.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0f60ed8b-6f2f-4bba-9b1c-fcfd0eb1f361', 'start_s': 240.32, 'end_s': 269.84, 'original_duration_s': 269.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'aa18d088-9dd9-4c7f-994c-996f168ef224', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 333.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'aa18d088-9dd9-4c7f-994c-996f168ef224', 'start_s': 240.32, 'end_s': 333.24, 'original_duration_s': 333.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '3e26bd92-5d3f-4a25-8db0-4cf19634d5e9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 244.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen', 'Mahler', '2 oboes (both also english horn)', 'II. Ging heut morgen übers Feld', 'cymbals', 'tam-tam', 'romantic', 'harp', '2 trumpets (f)', 'Lieder eines fahrenden Gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '3e26bd92-5d3f-4a25-8db0-4cf19634d5e9', 'start_s': 240.32, 'end_s': 244.8, 'original_duration_s': 244.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen', 'Mahler', '2 oboes (both also english horn)', 'II. Ging heut morgen übers Feld', 'cymbals', 'tam-tam', 'romantic', 'harp', '2 trumpets (f)', 'Lieder eines fahrenden Gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'e290cb86-0d3a-4697-badc-dc1153feff30', 'start_s': 0.0, 'end_s': 192.2, 'original_duration_s': 192.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and chamber ensemble)', 'cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0899abb0-30dc-4d53-892b-d7782c528a5e', 'start_s': 0.0, 'end_s': 226.92, 'original_duration_s': 226.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'c91b91ff-b16b-4b95-a8d6-5743c897aa03', 'start_s': 0.0, 'end_s': 236.08, 'original_duration_s': 236.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a5eaa748-0506-4769-ac02-c5f6c9d5d52d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 294.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a5eaa748-0506-4769-ac02-c5f6c9d5d52d', 'start_s': 240.32, 'end_s': 294.92, 'original_duration_s': 294.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '04820db5-ee1d-4af1-9498-243409e4d3f3', 'start_s': 0.0, 'end_s': 233.8, 'original_duration_s': 233.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['I. Wenn mein Schatz Hochzeit macht', 'lieder eines fahrenden gesellen', 'Mahler', '2 oboes (both also english horn)', 'cymbals', 'tam-tam', 'romantic', 'harp', '2 trumpets (f)', 'Lieder eines fahrenden Gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'db6e9742-4273-436c-8eb0-0b0d3a1012d2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 311.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'db6e9742-4273-436c-8eb0-0b0d3a1012d2', 'start_s': 240.32, 'end_s': 311.32, 'original_duration_s': 311.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '4bd6d401-04e7-4e1b-a5ac-42fb957eb720', 'start_s': 0.0, 'end_s': 203.4, 'original_duration_s': 203.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. Z. Grafilo for voice and string quartet)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6b9add08-3a22-4b96-b370-f888497a3c1b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 242.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '6b9add08-3a22-4b96-b370-f888497a3c1b', 'start_s': 240.32, 'end_s': 242.0, 'original_duration_s': 242.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '91e2298e-4265-41d5-a4b5-c9fb2f66e093', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 286.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '91e2298e-4265-41d5-a4b5-c9fb2f66e093', 'start_s': 240.32, 'end_s': 286.12, 'original_duration_s': 286.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'b764bba4-bb70-4213-a7dd-c7787f45caf2', 'start_s': 0.0, 'end_s': 212.08, 'original_duration_s': 212.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '47450306-e401-4d09-85cb-f5aaf36fa635', 'start_s': 0.0, 'end_s': 233.24, 'original_duration_s': 233.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ec51fa9d-60f2-4499-8ba4-eee10995b6ef', 'start_s': 0.0, 'end_s': 192.88, 'original_duration_s': 192.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'lieder eines fahrenden gesellen (arr. a schoenberg for baritone & chamber ensemble)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['Lieder eines fahrenden Gesellen (Arr. A Schoenberg for Baritone & Chamber Ensemble)', 'cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'lieder eines fahrenden gesellen (arr. a schoenberg for baritone & chamber ensemble)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '5aedc8d6-5b2c-4c64-bd24-c6307c5baa57', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 246.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. Z. Grafilo for voice and string quartet)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '5aedc8d6-5b2c-4c64-bd24-c6307c5baa57', 'start_s': 240.32, 'end_s': 246.76, 'original_duration_s': 246.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. Z. Grafilo for voice and string quartet)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'de1377a4-0b96-4d5d-b8de-e033a89da238', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 240.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'f3008d38-1f3b-4251-84cc-6e247ca5ca47', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 245.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'f3008d38-1f3b-4251-84cc-6e247ca5ca47', 'start_s': 240.32, 'end_s': 245.88, 'original_duration_s': 245.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd3b3add9-598f-4eef-9d30-3eff7797aa71', 'start_s': 0.0, 'end_s': 213.32, 'original_duration_s': 213.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'cb1cb8fa-ff2a-494f-9a34-0d3a3ac7a07f', 'start_s': 0.0, 'end_s': 195.96, 'original_duration_s': 195.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and piano)', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '2140fae9-3da3-43fd-bcf6-d6ac35f779df', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 240.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd2b370aa-1d20-4a18-8393-df8464e1e262', 'start_s': 0.0, 'end_s': 177.56, 'original_duration_s': 177.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '144c62b7-b9de-4742-80b0-e2c8414d4e86', 'start_s': 0.0, 'end_s': 235.84, 'original_duration_s': 235.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '019f29a0-23e8-4789-a655-912e26e34299', 'start_s': 0.0, 'end_s': 187.72, 'original_duration_s': 187.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '2c022e4f-134c-4d97-b98a-d80b6ffadac0', 'start_s': 0.0, 'end_s': 234.16, 'original_duration_s': 234.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a53d1a4a-7bae-4961-a30a-f79c8599d563', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 293.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a53d1a4a-7bae-4961-a30a-f79c8599d563', 'start_s': 240.32, 'end_s': 293.56, 'original_duration_s': 293.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'df85625d-6d08-45dd-8a27-fa3904341bec', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 265.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'df85625d-6d08-45dd-8a27-fa3904341bec', 'start_s': 240.32, 'end_s': 265.68, 'original_duration_s': 265.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '3975476c-be3e-4409-8953-7a439ded6034', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 336.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '3975476c-be3e-4409-8953-7a439ded6034', 'start_s': 240.32, 'end_s': 336.48, 'original_duration_s': 336.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'e910c13a-2a95-4d4e-8aa7-c6a2b9b43e04', 'start_s': 0.0, 'end_s': 237.04, 'original_duration_s': 237.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bd2378c8-a0c4-4bf3-b7c0-2abb7eaa4130', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 261.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bd2378c8-a0c4-4bf3-b7c0-2abb7eaa4130', 'start_s': 240.32, 'end_s': 261.92, 'original_duration_s': 261.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '75556ccf-97c3-450f-8201-0146157cf6fd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 241.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '75556ccf-97c3-450f-8201-0146157cf6fd', 'start_s': 240.32, 'end_s': 241.44, 'original_duration_s': 241.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '7ad96704-2faa-4b32-9bef-2893d87f1062', 'start_s': 0.0, 'end_s': 198.44, 'original_duration_s': 198.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '4e05c4ef-cc55-44da-a78f-80bbeb7ed21e', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 245.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '4e05c4ef-cc55-44da-a78f-80bbeb7ed21e', 'start_s': 240.32, 'end_s': 245.6, 'original_duration_s': 245.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '9ec3e917-3da8-40c5-9c02-b8b9c0de60a9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 314.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '9ec3e917-3da8-40c5-9c02-b8b9c0de60a9', 'start_s': 240.32, 'end_s': 314.0, 'original_duration_s': 314.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '681652b8-5b5b-4d4d-a8fd-02aed9d6ccfe', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 291.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '681652b8-5b5b-4d4d-a8fd-02aed9d6ccfe', 'start_s': 240.32, 'end_s': 291.24, 'original_duration_s': 291.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '5e26f885-e00d-4175-bfcf-b7d842ccf351', 'start_s': 0.0, 'end_s': 239.56, 'original_duration_s': 239.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'bass drum', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for chamber orchestra)', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '38592540-2469-4d09-8114-bc5e5062bccb', 'start_s': 0.0, 'end_s': 209.16, 'original_duration_s': 209.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': '56567272-5a5e-4f41-b6a4-0ec50e7034ec', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 254.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '56567272-5a5e-4f41-b6a4-0ec50e7034ec', 'start_s': 240.32, 'end_s': 254.44, 'original_duration_s': 254.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ffb7abac-714a-4928-87ce-73223892033b', 'start_s': 0.0, 'end_s': 179.2, 'original_duration_s': 179.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '528f1fb6-0adc-485c-a05f-e0a2d4d2ffa7', 'start_s': 0.0, 'end_s': 234.16, 'original_duration_s': 234.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bb425316-07bd-4129-9d00-2a9aa3511417', 'start_s': 0.0, 'end_s': 240.08, 'original_duration_s': 240.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8146e018-9d17-47df-9748-35a826edc070', 'start_s': 0.0, 'end_s': 236.08, 'original_duration_s': 236.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '36c8ee5e-2d25-4f3b-adf8-ff8d4874f6dd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 289.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '36c8ee5e-2d25-4f3b-adf8-ff8d4874f6dd', 'start_s': 240.32, 'end_s': 289.0, 'original_duration_s': 289.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '90dcc2ff-ae12-4867-ba04-a349dde2213e', 'start_s': 0.0, 'end_s': 190.44, 'original_duration_s': 190.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'dc0e03c2-413c-4c24-a4b6-695274c84798', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 256.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'dc0e03c2-413c-4c24-a4b6-695274c84798', 'start_s': 240.32, 'end_s': 256.2, 'original_duration_s': 256.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0203b49f-7829-4555-951c-786af9ee6df5', 'start_s': 0.0, 'end_s': 32.0, 'original_duration_s': 310.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0203b49f-7829-4555-951c-786af9ee6df5', 'start_s': 32.0, 'end_s': 272.32, 'original_duration_s': 310.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0203b49f-7829-4555-951c-786af9ee6df5', 'start_s': 272.32, 'end_s': 310.08, 'original_duration_s': 310.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '1b1776a3-396e-4f6b-961f-bc592e4adfe6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 257.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': '1b1776a3-396e-4f6b-961f-bc592e4adfe6', 'start_s': 240.32, 'end_s': 257.16, 'original_duration_s': 257.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'da7e28fa-4a5c-4044-a979-5652151aaecb', 'start_s': 0.0, 'end_s': 230.36, 'original_duration_s': 230.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'fc1ba1b2-cd55-4a06-9cb2-9320711ddd8c', 'start_s': 0.0, 'end_s': 46.08, 'original_duration_s': 290.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'fc1ba1b2-cd55-4a06-9cb2-9320711ddd8c', 'start_s': 46.08, 'end_s': 286.4, 'original_duration_s': 290.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'fc1ba1b2-cd55-4a06-9cb2-9320711ddd8c', 'start_s': 286.4, 'end_s': 290.44, 'original_duration_s': 290.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'ce90c78f-74de-4dd8-b737-f057498e8153', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 258.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'ce90c78f-74de-4dd8-b737-f057498e8153', 'start_s': 240.32, 'end_s': 258.96, 'original_duration_s': 258.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8496c44a-b752-45a1-9ca7-b3f49f70df4b', 'start_s': 0.0, 'end_s': 201.0, 'original_duration_s': 201.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '1170ba5e-3d39-4330-b841-6e23731e04d3', 'start_s': 0.0, 'end_s': 199.2, 'original_duration_s': 199.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'bass drum', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for chamber orchestra)', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '4433131c-2a3e-4bfe-a5d8-83cb1c48a1a0', 'start_s': 0.0, 'end_s': 59.64, 'original_duration_s': 199.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '4433131c-2a3e-4bfe-a5d8-83cb1c48a1a0', 'start_s': 59.64, 'end_s': 199.04, 'original_duration_s': 199.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '05490ace-f042-436e-909b-e5e2d825f47e', 'start_s': 0.0, 'end_s': 186.72, 'original_duration_s': 186.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and ensemble)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8cf20edc-e21e-444b-bea0-28163ed25fb3', 'start_s': 0.0, 'end_s': 187.96, 'original_duration_s': 187.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '2b729ce1-1cdb-402b-8472-3f8ed1ea54eb', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 241.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and ensemble)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '2b729ce1-1cdb-402b-8472-3f8ed1ea54eb', 'start_s': 240.32, 'end_s': 241.84, 'original_duration_s': 241.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and ensemble)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '55fd7235-2fea-4c90-a6b6-c6202f542852', 'start_s': 0.0, 'end_s': 235.08, 'original_duration_s': 235.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'bass drum', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for chamber orchestra)', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'e6f7eee7-5068-4631-a1a0-83be415d39c3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 267.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'e6f7eee7-5068-4631-a1a0-83be415d39c3', 'start_s': 240.32, 'end_s': 267.44, 'original_duration_s': 267.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '9406d3fb-e9ec-4e78-9746-9667d1c37b5a', 'start_s': 0.0, 'end_s': 48.04, 'original_duration_s': 294.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'bass drum', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for chamber orchestra)', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '9406d3fb-e9ec-4e78-9746-9667d1c37b5a', 'start_s': 48.04, 'end_s': 288.36, 'original_duration_s': 294.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'bass drum', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for chamber orchestra)', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '9406d3fb-e9ec-4e78-9746-9667d1c37b5a', 'start_s': 288.36, 'end_s': 294.56, 'original_duration_s': 294.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', 'lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg for chamber orchestra)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'bass drum', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for chamber orchestra)', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '8067eb12-8738-45ca-bca5-902edd6f125c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 256.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': '8067eb12-8738-45ca-bca5-902edd6f125c', 'start_s': 240.32, 'end_s': 256.2, 'original_duration_s': 256.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'bd2d2a1c-65e9-4bc9-8efc-77fe690313e2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 345.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'bd2d2a1c-65e9-4bc9-8efc-77fe690313e2', 'start_s': 240.32, 'end_s': 345.52, 'original_duration_s': 345.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '0cd8e04d-48c3-4b55-896f-f7c92718addb', 'start_s': 0.0, 'end_s': 212.6, 'original_duration_s': 212.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': '6a6479de-fa5f-4d7c-8a44-3ba596c87b2d', 'start_s': 0.0, 'end_s': 184.8, 'original_duration_s': 184.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '88025d64-098a-4fd1-847c-7a3050b57c23', 'start_s': 0.0, 'end_s': 232.56, 'original_duration_s': 232.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg for voice and ensemble)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a2afa741-c3e0-401b-a715-40e5c4028380', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 244.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a2afa741-c3e0-401b-a715-40e5c4028380', 'start_s': 240.32, 'end_s': 244.84, 'original_duration_s': 244.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['lieder eines fahrenden gesellen (songs of a wayfarer) (arr. a. schoenberg)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (arr. A. Schoenberg)', 'cymbals', 'romantic', 'Mahler', 'tam-tam', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '2c6961b3-8d7e-49c0-a8f7-b194c2b1be5b', 'start_s': 0.0, 'end_s': 210.0, 'original_duration_s': 210.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': '3d1901ab-a0b0-405e-9e7c-4ead4f2f7c24', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 276.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '3d1901ab-a0b0-405e-9e7c-4ead4f2f7c24', 'start_s': 240.32, 'end_s': 276.6, 'original_duration_s': 276.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'lieder eines fahrenden gesellen (song of a wayfarer)', 'Lieder eines fahrenden Gesellen (Song of a Wayfarer)', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'fba74a9f-aabb-49c3-914a-af3bf372a3d5', 'start_s': 0.0, 'end_s': 173.24, 'original_duration_s': 173.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '1dfe23cf-36b1-47e8-8b26-fe47b633beb9', 'start_s': 0.0, 'end_s': 231.28, 'original_duration_s': 231.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd8ad7c62-0f9e-4372-a1d0-f3cc22805fcb', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 296.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd8ad7c62-0f9e-4372-a1d0-f3cc22805fcb', 'start_s': 240.32, 'end_s': 296.32, 'original_duration_s': 296.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'be68a001-cbf7-4381-a050-7d2680d06f89', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 324.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'be68a001-cbf7-4381-a050-7d2680d06f89', 'start_s': 240.32, 'end_s': 324.84, 'original_duration_s': 324.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '3754ae1d-cf58-4d73-b8f3-c45421f6f70d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 242.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '3754ae1d-cf58-4d73-b8f3-c45421f6f70d', 'start_s': 240.32, 'end_s': 242.56, 'original_duration_s': 242.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer)', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'triangle', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'lieder eines fahrenden gesellen (songs of a wayfarer)', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '470f08b3-9682-4c6e-9f79-414e8b2b5fe6', 'start_s': 0.0, 'end_s': 239.72, 'original_duration_s': 239.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'cf2c3c7d-0123-4cdb-9896-fb018b4426c0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 243.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'cf2c3c7d-0123-4cdb-9896-fb018b4426c0', 'start_s': 240.32, 'end_s': 243.64, 'original_duration_s': 243.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'b7394af6-20e9-44e3-99b7-c6906374ecac', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 343.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'b7394af6-20e9-44e3-99b7-c6906374ecac', 'start_s': 240.32, 'end_s': 343.88, 'original_duration_s': 343.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'd3c5566d-7a73-47cd-a0d8-276b265bc9aa', 'start_s': 0.0, 'end_s': 34.4, 'original_duration_s': 187.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd3c5566d-7a73-47cd-a0d8-276b265bc9aa', 'start_s': 34.4, 'end_s': 187.08, 'original_duration_s': 187.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'cf4d3b4c-e89f-4585-b87d-e7204091f5a9', 'start_s': 0.0, 'end_s': 194.36, 'original_duration_s': 194.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '65480f1f-19bf-4f3a-a825-9617a088c42c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 287.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '65480f1f-19bf-4f3a-a825-9617a088c42c', 'start_s': 240.32, 'end_s': 287.16, 'original_duration_s': 287.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a9712132-c0f4-420a-9e30-29847479aacd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 250.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', \"hauslabgasse 14 (with mahler's lieder eines fahrenden gesellen\", 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', \"Hauslabgasse 14 (with Mahler's Lieder eines fahrenden Gesellen\", '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', \"hauslabgasse 14 (with mahler's lieder eines fahrenden gesellen\", 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'a9712132-c0f4-420a-9e30-29847479aacd', 'start_s': 240.32, 'end_s': 250.0, 'original_duration_s': 250.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', \"hauslabgasse 14 (with mahler's lieder eines fahrenden gesellen\", 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', \"Hauslabgasse 14 (with Mahler's Lieder eines fahrenden Gesellen\", '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', \"hauslabgasse 14 (with mahler's lieder eines fahrenden gesellen\", 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': '04cf3515-90ec-4f67-83fa-0e1732d70499', 'start_s': 0.0, 'end_s': 223.48, 'original_duration_s': 223.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'Lieder eines fahrenden Gesellen (Songs of a Wayfarer) (version for voice and orchestra)', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'dd2573ec-314d-4ac3-a198-94225f09ac79', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 292.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'dd2573ec-314d-4ac3-a198-94225f09ac79', 'start_s': 240.32, 'end_s': 292.4, 'original_duration_s': 292.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['cymbals', 'tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'lieder eines fahrenden gesellen', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', 'harp', 'gustav mahler', '2 trumpets (f)', '2 oboes (both also english horn)', 'triangle', 'Lieder eines fahrenden Gesellen', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'lieder eines fahrenden gesellen', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', '3 trombones\\ntimpani']}\n",
      "{'dataset': 'imslp', 'id': 'd89238e6-88c8-43d7-b903-f3bba4df088c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 285.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'd89238e6-88c8-43d7-b903-f3bba4df088c', 'start_s': 240.32, 'end_s': 285.48, 'original_duration_s': 285.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['tam-tam', 'romantic', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'cymbals', '3 trombones\\ntimpani'], 'tags_private': ['cymbals', 'tam-tam', 'romantic', 'Mahler', '3 trombones\\ntimpani', 'harp', 'gustav mahler', '2 trumpets (f)', 'songs of a wayfarer', '2 oboes (both also english horn)', 'triangle', '\\n      3 clarinets (b♭) (3rd also bass clarinet (b♭))', 'glockenspiel', 'strings', 'bass drum', '2 bassoons\\n    4 horns (f)', 'Gustav', 'Songs of a Wayfarer']}\n",
      "{'dataset': 'imslp', 'id': 'cff19a9f-75e9-47a6-8eea-3596354a75df', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 330.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'rückert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'rückert-lieder', 'Rückert-Lieder', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'cff19a9f-75e9-47a6-8eea-3596354a75df', 'start_s': 240.32, 'end_s': 330.0, 'original_duration_s': 330.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'rückert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'rückert-lieder', 'Rückert-Lieder', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '66a14679-9003-44a5-a635-c493462ceca4', 'start_s': 0.0, 'end_s': 159.28, 'original_duration_s': 159.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '350b9640-c1fe-44a8-95ec-749b2b0fa779', 'start_s': 0.0, 'end_s': 137.8, 'original_duration_s': 137.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4bd77ba1-4ce3-4a93-94b6-026da1b04f84', 'start_s': 0.0, 'end_s': 136.6, 'original_duration_s': 136.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'df729094-fd47-466c-b005-ea19346ccd91', 'start_s': 0.0, 'end_s': 86.72, 'original_duration_s': 86.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', '1. Blicke mir nicht in die Lieder (A♭ major)', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'd062d280-8e29-4e2a-bdd0-d6d73d015da3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 391.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd062d280-8e29-4e2a-bdd0-d6d73d015da3', 'start_s': 240.32, 'end_s': 391.76, 'original_duration_s': 391.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ecac2e64-b27b-46c0-a086-c9630ef2ed05', 'start_s': 0.0, 'end_s': 84.8, 'original_duration_s': 84.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '11297e5e-73e8-4c37-b20a-09c987c45c81', 'start_s': 0.0, 'end_s': 170.96, 'original_duration_s': 170.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e6f8e1e5-d4f4-4322-90a2-9c6c98fd6722', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 472.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e6f8e1e5-d4f4-4322-90a2-9c6c98fd6722', 'start_s': 240.32, 'end_s': 472.72, 'original_duration_s': 472.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7ea41c5a-70fa-4c4e-b6f4-29845c7c88b1', 'start_s': 0.0, 'end_s': 164.0, 'original_duration_s': 164.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '36db88d8-14c5-46cd-abe0-8c89158a9a61', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 364.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '36db88d8-14c5-46cd-abe0-8c89158a9a61', 'start_s': 240.32, 'end_s': 364.4, 'original_duration_s': 364.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0e437034-e175-4011-82f1-bc7c54c23d59', 'start_s': 0.0, 'end_s': 153.96, 'original_duration_s': 153.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'b7f958cd-3baf-4f06-b634-4e4286f4b18f', 'start_s': 0.0, 'end_s': 144.24, 'original_duration_s': 144.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '153e2564-d0ec-491f-ab40-2d3a3ed6f862', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 345.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '153e2564-d0ec-491f-ab40-2d3a3ed6f862', 'start_s': 240.32, 'end_s': 345.0, 'original_duration_s': 345.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '610c15fd-ca25-444b-880e-cbf212d2015f', 'start_s': 0.0, 'end_s': 79.08, 'original_duration_s': 79.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bb632c33-8921-4699-9af1-fd1589613574', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 351.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bb632c33-8921-4699-9af1-fd1589613574', 'start_s': 240.32, 'end_s': 351.28, 'original_duration_s': 351.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4c75a792-f1a4-451a-bc6a-9dab90af7ed8', 'start_s': 0.0, 'end_s': 78.96, 'original_duration_s': 78.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a3ae2d2f-d725-40ef-ae6a-124a4ff67a1a', 'start_s': 0.0, 'end_s': 88.88, 'original_duration_s': 88.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '29499062-327e-4ae9-a61e-f7e134bbe7d1', 'start_s': 0.0, 'end_s': 137.96, 'original_duration_s': 137.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '31b5fdb3-d91b-4d06-8daa-1f60259b78f8', 'start_s': 0.0, 'end_s': 82.2, 'original_duration_s': 82.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4ce3f9ae-5607-4b41-8f3f-d65420636b4a', 'start_s': 0.0, 'end_s': 43.4, 'original_duration_s': 129.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4ce3f9ae-5607-4b41-8f3f-d65420636b4a', 'start_s': 43.4, 'end_s': 129.56, 'original_duration_s': 129.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd38cd170-fca9-47cc-ad94-7f1b173c2bf4', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 401.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'd38cd170-fca9-47cc-ad94-7f1b173c2bf4', 'start_s': 240.32, 'end_s': 401.56, 'original_duration_s': 401.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'b5ee11dd-eb39-4e01-9fc8-d3c16f512e3b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 432.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b5ee11dd-eb39-4e01-9fc8-d3c16f512e3b', 'start_s': 240.32, 'end_s': 432.4, 'original_duration_s': 432.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c07acbf1-eeab-4bd3-a8ce-dfea8e8cd567', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 413.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c07acbf1-eeab-4bd3-a8ce-dfea8e8cd567', 'start_s': 240.32, 'end_s': 413.16, 'original_duration_s': 413.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'cf26d651-0ee7-4dde-a0aa-f176d21c7eb2', 'start_s': 0.0, 'end_s': 201.2, 'original_duration_s': 201.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '9d3bab32-8204-4f0c-8f06-48b368e4c349', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 324.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '9d3bab32-8204-4f0c-8f06-48b368e4c349', 'start_s': 240.32, 'end_s': 324.84, 'original_duration_s': 324.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '9ea91b48-daca-431c-b5d2-eb2f91bc5fbf', 'start_s': 0.0, 'end_s': 85.84, 'original_duration_s': 85.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bc42b87b-bd31-4789-8b80-ce1b04e76dee', 'start_s': 0.0, 'end_s': 54.56, 'original_duration_s': 404.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bc42b87b-bd31-4789-8b80-ce1b04e76dee', 'start_s': 54.56, 'end_s': 294.88, 'original_duration_s': 404.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bc42b87b-bd31-4789-8b80-ce1b04e76dee', 'start_s': 294.88, 'end_s': 404.0, 'original_duration_s': 404.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f14a3cb8-734d-4633-ac00-b2378fc4b85b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 361.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f14a3cb8-734d-4633-ac00-b2378fc4b85b', 'start_s': 240.32, 'end_s': 361.04, 'original_duration_s': 361.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '75ea57f3-1961-4a6a-9837-7214f239afb6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 370.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts) (version for voice and piano)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '75ea57f3-1961-4a6a-9837-7214f239afb6', 'start_s': 240.32, 'end_s': 370.92, 'original_duration_s': 370.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts) (version for voice and piano)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bc143cdb-18ad-4025-9df1-c8db6a03c5a4', 'start_s': 0.0, 'end_s': 139.72, 'original_duration_s': 139.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a67ba564-3c19-48aa-96c5-df5ea2516422', 'start_s': 0.0, 'end_s': 36.28, 'original_duration_s': 381.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a67ba564-3c19-48aa-96c5-df5ea2516422', 'start_s': 36.28, 'end_s': 276.6, 'original_duration_s': 381.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a67ba564-3c19-48aa-96c5-df5ea2516422', 'start_s': 276.6, 'end_s': 381.52, 'original_duration_s': 381.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'aabc2fc4-44a2-41ae-bc01-8f9b79e5dacd', 'start_s': 0.0, 'end_s': 148.0, 'original_duration_s': 148.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8ba3b3ad-f5aa-4d5e-bb0f-179e86be348e', 'start_s': 0.0, 'end_s': 160.16, 'original_duration_s': 160.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0bcb28d5-70ed-4a41-8122-ab6dc628c2b9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 401.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0bcb28d5-70ed-4a41-8122-ab6dc628c2b9', 'start_s': 240.32, 'end_s': 401.88, 'original_duration_s': 401.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd5347437-2655-40c9-bde9-1c09ec12fa80', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 387.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd5347437-2655-40c9-bde9-1c09ec12fa80', 'start_s': 240.32, 'end_s': 387.72, 'original_duration_s': 387.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '36865741-d676-4fb2-8f50-f278bbf79e45', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 390.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '36865741-d676-4fb2-8f50-f278bbf79e45', 'start_s': 240.32, 'end_s': 390.44, 'original_duration_s': 390.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8a5f7148-c953-414e-8a67-6687f55f4222', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 289.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8a5f7148-c953-414e-8a67-6687f55f4222', 'start_s': 240.32, 'end_s': 289.96, 'original_duration_s': 289.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4cf5293e-7174-4c5d-a146-a848a527819f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 386.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '4cf5293e-7174-4c5d-a146-a848a527819f', 'start_s': 240.32, 'end_s': 386.16, 'original_duration_s': 386.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'b853e1dd-790a-4e2f-bbfb-0d68d042c0b8', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 349.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b853e1dd-790a-4e2f-bbfb-0d68d042c0b8', 'start_s': 240.32, 'end_s': 349.64, 'original_duration_s': 349.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '050782bb-7eb9-4820-8a85-0e59c2a0d04a', 'start_s': 0.0, 'end_s': 164.72, 'original_duration_s': 164.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '67c3daf4-f66b-4f63-91e6-ad57ff7589ce', 'start_s': 0.0, 'end_s': 177.92, 'original_duration_s': 177.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'dad0b697-e514-4c67-a278-76786e24e177', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 349.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'dad0b697-e514-4c67-a278-76786e24e177', 'start_s': 240.32, 'end_s': 349.36, 'original_duration_s': 349.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '284a595c-ea3c-43c3-ba5a-c86880ec0c12', 'start_s': 0.0, 'end_s': 137.52, 'original_duration_s': 137.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'fdbbd2a7-77bd-486b-bd51-2d88720034fd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 376.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'fdbbd2a7-77bd-486b-bd51-2d88720034fd', 'start_s': 240.32, 'end_s': 376.68, 'original_duration_s': 376.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '553ed914-f921-422f-a381-bb203c11f51c', 'start_s': 0.0, 'end_s': 54.16, 'original_duration_s': 301.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '553ed914-f921-422f-a381-bb203c11f51c', 'start_s': 54.16, 'end_s': 294.48, 'original_duration_s': 301.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '553ed914-f921-422f-a381-bb203c11f51c', 'start_s': 294.48, 'end_s': 301.2, 'original_duration_s': 301.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'dc13b713-9504-4ff1-823c-ab99143c0187', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 324.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', '4. Um Mitternacht (B minor)', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'dc13b713-9504-4ff1-823c-ab99143c0187', 'start_s': 240.32, 'end_s': 324.2, 'original_duration_s': 324.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', '4. Um Mitternacht (B minor)', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '4ad1c34c-8241-45c6-9953-7be48ce50772', 'start_s': 0.0, 'end_s': 95.0, 'original_duration_s': 95.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c2c95028-d3f1-4e09-aae4-fba024dfed24', 'start_s': 0.0, 'end_s': 144.0, 'original_duration_s': 144.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'rückert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'rückert-lieder', 'Rückert-Lieder', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'aff30782-0601-4b33-9c99-6747375d80ee', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 351.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', '3. Ich bin der Welt abhanden gekommen (F major)', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'aff30782-0601-4b33-9c99-6747375d80ee', 'start_s': 240.32, 'end_s': 351.44, 'original_duration_s': 351.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', '3. Ich bin der Welt abhanden gekommen (F major)', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '734e7f26-cc17-4246-bf72-74ed5835e952', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 441.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '734e7f26-cc17-4246-bf72-74ed5835e952', 'start_s': 240.32, 'end_s': 441.0, 'original_duration_s': 441.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '959252c3-54c5-4276-9667-ca313e38cbfd', 'start_s': 0.0, 'end_s': 89.0, 'original_duration_s': 89.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e9509fc5-7e35-4fab-b4b7-2540e5252102', 'start_s': 0.0, 'end_s': 173.0, 'original_duration_s': 173.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3e134ff6-ae03-4c45-9fc1-34690bb8109e', 'start_s': 0.0, 'end_s': 163.16, 'original_duration_s': 163.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '07cb448e-c73a-4e46-a32a-175524214812', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 473.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '07cb448e-c73a-4e46-a32a-175524214812', 'start_s': 240.32, 'end_s': 473.0, 'original_duration_s': 473.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '73239ad0-5a2c-4378-9657-c9fdc73b8692', 'start_s': 0.0, 'end_s': 86.32, 'original_duration_s': 86.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4f76e555-4d09-4425-8297-7c20d77c191a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 352.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4f76e555-4d09-4425-8297-7c20d77c191a', 'start_s': 240.32, 'end_s': 352.64, 'original_duration_s': 352.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c61fc419-5114-4a44-a7d3-63ed4e163971', 'start_s': 0.0, 'end_s': 169.96, 'original_duration_s': 169.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '68ff3410-ec42-4006-a013-b919c620b704', 'start_s': 0.0, 'end_s': 89.92, 'original_duration_s': 89.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ce4a0290-49e0-4261-b3fd-72ff183e0536', 'start_s': 0.0, 'end_s': 150.92, 'original_duration_s': 150.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', \"2. Ich atmet' einen linden Duft (F major)\", 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'e6b8a46d-a105-4942-a6d6-b80e2d20b767', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 416.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e6b8a46d-a105-4942-a6d6-b80e2d20b767', 'start_s': 240.32, 'end_s': 416.2, 'original_duration_s': 416.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '84391af6-04a5-4989-96d9-161d01d90308', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 419.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '84391af6-04a5-4989-96d9-161d01d90308', 'start_s': 240.32, 'end_s': 419.0, 'original_duration_s': 419.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '9586de70-62ff-4e89-abdb-1271cbfa5df8', 'start_s': 0.0, 'end_s': 89.36, 'original_duration_s': 89.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '8b240cf3-1df0-4b98-9e1b-d69eb13e4e5c', 'start_s': 0.0, 'end_s': 40.88, 'original_duration_s': 408.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8b240cf3-1df0-4b98-9e1b-d69eb13e4e5c', 'start_s': 40.88, 'end_s': 281.2, 'original_duration_s': 408.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '8b240cf3-1df0-4b98-9e1b-d69eb13e4e5c', 'start_s': 281.2, 'end_s': 408.96, 'original_duration_s': 408.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '232392bd-3e46-4bba-8620-1080d471dc41', 'start_s': 0.0, 'end_s': 161.28, 'original_duration_s': 161.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2e0f681e-e17f-40c0-8515-bce67ed473b0', 'start_s': 0.0, 'end_s': 44.72, 'original_duration_s': 162.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '2e0f681e-e17f-40c0-8515-bce67ed473b0', 'start_s': 44.72, 'end_s': 162.68, 'original_duration_s': 162.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '1683e12b-a9d6-446d-8cf1-af1204112f2c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 440.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1683e12b-a9d6-446d-8cf1-af1204112f2c', 'start_s': 240.32, 'end_s': 440.72, 'original_duration_s': 440.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '361c7e5b-1b36-43ee-aa98-3d14adbbdc23', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 358.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '361c7e5b-1b36-43ee-aa98-3d14adbbdc23', 'start_s': 240.32, 'end_s': 358.16, 'original_duration_s': 358.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '25947d34-c713-4569-b698-65a17890e2b3', 'start_s': 0.0, 'end_s': 78.4, 'original_duration_s': 78.4, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'd77418e3-34c9-4444-9668-f111c4567eaa', 'start_s': 0.0, 'end_s': 141.56, 'original_duration_s': 141.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'bda20403-0b55-470a-943b-de50a7aa7da4', 'start_s': 0.0, 'end_s': 89.28, 'original_duration_s': 89.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '52a5ee96-15d6-486e-a98a-0ffb5a753e3a', 'start_s': 0.0, 'end_s': 99.72, 'original_duration_s': 99.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a6f683f7-9438-4389-a9e3-47cb084635f3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 385.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'a6f683f7-9438-4389-a9e3-47cb084635f3', 'start_s': 240.32, 'end_s': 385.52, 'original_duration_s': 385.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e804edfb-e916-4d4f-bd65-939d875975eb', 'start_s': 0.0, 'end_s': 201.28, 'original_duration_s': 201.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '96b1b0f3-c9cf-46f2-bf0c-eb5e867e374b', 'start_s': 0.0, 'end_s': 31.0, 'original_duration_s': 328.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '96b1b0f3-c9cf-46f2-bf0c-eb5e867e374b', 'start_s': 31.0, 'end_s': 271.32, 'original_duration_s': 328.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '96b1b0f3-c9cf-46f2-bf0c-eb5e867e374b', 'start_s': 271.32, 'end_s': 328.08, 'original_duration_s': 328.08, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b4e66457-ae5c-4e67-b0ad-db9de9ad9c19', 'start_s': 0.0, 'end_s': 139.96, 'original_duration_s': 139.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '3c7e4698-ec6b-4b4f-8ed4-49fceb9e79af', 'start_s': 0.0, 'end_s': 55.0, 'original_duration_s': 395.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '3c7e4698-ec6b-4b4f-8ed4-49fceb9e79af', 'start_s': 55.0, 'end_s': 295.32, 'original_duration_s': 395.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '3c7e4698-ec6b-4b4f-8ed4-49fceb9e79af', 'start_s': 295.32, 'end_s': 395.92, 'original_duration_s': 395.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'e1ef4962-9f13-447f-880c-925127201a43', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 372.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e1ef4962-9f13-447f-880c-925127201a43', 'start_s': 240.32, 'end_s': 372.16, 'original_duration_s': 372.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '96fc5b78-4f16-4651-be1f-60b32dbea416', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 462.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '96fc5b78-4f16-4651-be1f-60b32dbea416', 'start_s': 240.32, 'end_s': 462.0, 'original_duration_s': 462.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '28e26f8a-6c20-4471-b51c-b8b3cab6fd47', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 464.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '28e26f8a-6c20-4471-b51c-b8b3cab6fd47', 'start_s': 240.32, 'end_s': 464.28, 'original_duration_s': 464.28, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2b991767-5864-45a3-9e6e-693fc6a9167d', 'start_s': 0.0, 'end_s': 163.68, 'original_duration_s': 163.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '6e4b66c8-a584-40a5-91df-957b779d0cca', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 358.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '6e4b66c8-a584-40a5-91df-957b779d0cca', 'start_s': 240.32, 'end_s': 358.16, 'original_duration_s': 358.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ba32407c-8866-4460-ba02-16775b246160', 'start_s': 0.0, 'end_s': 148.64, 'original_duration_s': 148.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '06d1ab52-a3b1-459d-9209-c6dd8ccba6b0', 'start_s': 0.0, 'end_s': 91.16, 'original_duration_s': 91.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2687e6c6-9e3c-402f-8862-3ac8c2340f10', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 333.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '2687e6c6-9e3c-402f-8862-3ac8c2340f10', 'start_s': 240.32, 'end_s': 333.36, 'original_duration_s': 333.36, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': '3213a41d-a4aa-4c8f-aa33-6e45eecdefc3', 'start_s': 0.0, 'end_s': 147.8, 'original_duration_s': 147.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts) (version for voice and piano)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '4d4cc611-bdc5-459a-a2ef-481120cecacf', 'start_s': 0.0, 'end_s': 169.6, 'original_duration_s': 169.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'f23d0417-ad6e-4efd-a86f-b0ca452aebf8', 'start_s': 0.0, 'end_s': 151.44, 'original_duration_s': 151.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '69761eb9-5374-4ae4-a868-0041c69766c3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 356.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '69761eb9-5374-4ae4-a868-0041c69766c3', 'start_s': 240.32, 'end_s': 356.48, 'original_duration_s': 356.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '31fb3a9e-2907-4e07-95b1-2da89ca4386a', 'start_s': 0.0, 'end_s': 150.0, 'original_duration_s': 150.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '77c9bc4b-8d58-4a69-bcc6-57e0b744e8ad', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 364.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '77c9bc4b-8d58-4a69-bcc6-57e0b744e8ad', 'start_s': 240.32, 'end_s': 364.84, 'original_duration_s': 364.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '89682279-bae9-46c1-8aaa-1e4b35767328', 'start_s': 0.0, 'end_s': 145.92, 'original_duration_s': 145.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'rückert lieder', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'rückert lieder', '5. Liebst du um Schönheit (E♭ major)', 'gustav mahler', 'Gustav', 'Rückert Lieder']}\n",
      "{'dataset': 'imslp', 'id': 'de66265b-28ba-4674-8e42-d8ede91abcf1', 'start_s': 0.0, 'end_s': 163.72, 'original_duration_s': 163.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'edc6b7ce-6783-4062-8e14-de5d28881c02', 'start_s': 0.0, 'end_s': 88.2, 'original_duration_s': 88.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'ruckert-lieder (excerpts)', 'romantic', 'Mahler', 'Ruckert-Lieder (excerpts)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7bdfe9c5-3e3f-4701-909a-d190a68c0bcd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 369.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7bdfe9c5-3e3f-4701-909a-d190a68c0bcd', 'start_s': 240.32, 'end_s': 369.72, 'original_duration_s': 369.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1b39207f-f5c0-4fec-9ad0-0e8ca5667e0b', 'start_s': 0.0, 'end_s': 133.48, 'original_duration_s': 133.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Ruckert-Lieder (version for voice and piano)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '49bbe4d2-26d7-4a58-aa57-912520b7f15b', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 410.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '49bbe4d2-26d7-4a58-aa57-912520b7f15b', 'start_s': 240.32, 'end_s': 410.0, 'original_duration_s': 410.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'Ruckert-Lieder (version for voice and orchestra)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c47c0844-09df-4f87-9680-64a1d35f47f3', 'start_s': 0.0, 'end_s': 146.52, 'original_duration_s': 146.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (version for voice and orchestra)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c06e6e3b-abd4-479b-a235-caf69923f19d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 294.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c06e6e3b-abd4-479b-a235-caf69923f19d', 'start_s': 240.32, 'end_s': 294.0, 'original_duration_s': 294.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ea209cbc-8bbf-4f72-b30f-90e6c445ff43', 'start_s': 0.0, 'end_s': 92.84, 'original_duration_s': 92.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Rückert-Lieder (version for voice and piano)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '863559d8-0fce-4f5c-a3b2-55c9b3c31cf0', 'start_s': 0.0, 'end_s': 162.72, 'original_duration_s': 162.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f1cc3618-d07c-4e39-b00f-d11896bd4767', 'start_s': 0.0, 'end_s': 130.0, 'original_duration_s': 130.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'ruckert-lieder', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'ruckert-lieder', 'Ruckert-Lieder', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'aa28b887-e3bf-40fe-a132-5eb74f8a0ae4', 'start_s': 0.0, 'end_s': 146.76, 'original_duration_s': 146.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'Rückert-Lieder (arr. Z. Grafilo for voice and string quartet) (excerpts)', 'romantic', 'Mahler', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1cf1ec1e-4525-4fe6-957d-e40ea7e2a069', 'start_s': 0.0, 'end_s': 139.16, 'original_duration_s': 139.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra or piano (see below)', 'gustav mahler', 'romantic'], 'tags_private': ['orchestra or piano (see below)', 'romantic', 'Mahler', 'gustav mahler', 'Ruckert-Lieder (excerpts) (arr. C. Favre for voice and string quartet)', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '18af53c4-e96b-4cf1-afc8-81f6609cbf26', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 291.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['ludwig van beethoven', '2 violins', 'viola', 'cello', 'string quartet in f minor', 'classical', ' (arr. g. mahler)'], 'tags_private': ['ludwig van beethoven', 'Op. 95 (arr. G. Mahler)', '2 violins', 'viola', 'Ludwig van', 'cello', 'String Quartet No. 11 in F Minor', 'string quartet in f minor', ' (arr. g. mahler)', 'classical', 'Beethoven']}\n",
      "{'dataset': 'imslp', 'id': '18af53c4-e96b-4cf1-afc8-81f6609cbf26', 'start_s': 240.32, 'end_s': 291.24, 'original_duration_s': 291.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['ludwig van beethoven', '2 violins', 'viola', 'cello', 'string quartet in f minor', 'classical', ' (arr. g. mahler)'], 'tags_private': ['ludwig van beethoven', 'Op. 95 (arr. G. Mahler)', '2 violins', 'viola', 'Ludwig van', 'cello', 'String Quartet No. 11 in F Minor', 'string quartet in f minor', ' (arr. g. mahler)', 'classical', 'Beethoven']}\n",
      "{'dataset': 'imslp', 'id': 'db528fd7-32d0-4fe6-9b3a-3c28bbc053c8', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 420.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['ludwig van beethoven', '2 violins', 'viola', 'cello', 'string quartet in f minor', 'classical', ' (arr. g. mahler)'], 'tags_private': ['ludwig van beethoven', 'Op. 95 (arr. G. Mahler)', '2 violins', 'viola', 'Ludwig van', 'cello', 'String Quartet No. 11 in F Minor', 'string quartet in f minor', ' (arr. g. mahler)', 'classical', 'Beethoven']}\n",
      "{'dataset': 'imslp', 'id': 'db528fd7-32d0-4fe6-9b3a-3c28bbc053c8', 'start_s': 240.32, 'end_s': 420.76, 'original_duration_s': 420.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['ludwig van beethoven', '2 violins', 'viola', 'cello', 'string quartet in f minor', 'classical', ' (arr. g. mahler)'], 'tags_private': ['ludwig van beethoven', 'Op. 95 (arr. G. Mahler)', '2 violins', 'viola', 'Ludwig van', 'cello', 'String Quartet No. 11 in F Minor', 'string quartet in f minor', ' (arr. g. mahler)', 'classical', 'Beethoven']}\n",
      "{'dataset': 'imslp', 'id': '5babe042-62f5-4e55-af0b-79ad1c20117c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 432.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'robert schumann', '\"spring\" (arr. g. mahler for orchestra)', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"spring\" (arr. g. mahler for orchestra)', '\"Spring\" (arr. G. Mahler for orchestra)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '5babe042-62f5-4e55-af0b-79ad1c20117c', 'start_s': 240.32, 'end_s': 432.88, 'original_duration_s': 432.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'robert schumann', '\"spring\" (arr. g. mahler for orchestra)', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"spring\" (arr. g. mahler for orchestra)', '\"Spring\" (arr. G. Mahler for orchestra)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '1f8aeb24-fc66-4054-8a6e-4e8bd4da62dc', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 327.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'robert schumann', '\"spring\" (arr. g. mahler for orchestra)', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"spring\" (arr. g. mahler for orchestra)', '\"Spring\" (arr. G. Mahler for orchestra)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '1f8aeb24-fc66-4054-8a6e-4e8bd4da62dc', 'start_s': 240.32, 'end_s': 327.24, 'original_duration_s': 327.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'robert schumann', '\"spring\" (arr. g. mahler for orchestra)', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"spring\" (arr. g. mahler for orchestra)', '\"Spring\" (arr. G. Mahler for orchestra)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': 'ebbe9dca-5621-4545-8dc3-d9376477a3f3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 406.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'robert schumann', '\"spring\" (arr. g. mahler for orchestra)', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"spring\" (arr. g. mahler for orchestra)', '\"Spring\" (arr. G. Mahler for orchestra)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': 'ebbe9dca-5621-4545-8dc3-d9376477a3f3', 'start_s': 240.32, 'end_s': 406.2, 'original_duration_s': 406.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'robert schumann', '\"spring\" (arr. g. mahler for orchestra)', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"spring\" (arr. g. mahler for orchestra)', '\"Spring\" (arr. G. Mahler for orchestra)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '5cf77f8a-a099-411d-a6b7-b72eff68f881', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 407.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['\"spring\" (orch. g. mahler)', 'romantic', 'robert schumann', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['\"spring\" (orch. g. mahler)', 'Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"Spring\" (orch. G. Mahler)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '5cf77f8a-a099-411d-a6b7-b72eff68f881', 'start_s': 240.32, 'end_s': 407.96, 'original_duration_s': 407.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['\"spring\" (orch. g. mahler)', 'romantic', 'robert schumann', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['\"spring\" (orch. g. mahler)', 'Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"Spring\" (orch. G. Mahler)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '89451f9d-2fd3-4f51-b614-1f709106f1f0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 334.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['\"spring\" (orch. g. mahler)', 'romantic', 'robert schumann', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['\"spring\" (orch. g. mahler)', 'Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"Spring\" (orch. G. Mahler)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '89451f9d-2fd3-4f51-b614-1f709106f1f0', 'start_s': 240.32, 'end_s': 334.96, 'original_duration_s': 334.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['\"spring\" (orch. g. mahler)', 'romantic', 'robert schumann', 'symphony in b-flat major', 'orchestra'], 'tags_private': ['\"spring\" (orch. g. mahler)', 'Op. 38', 'romantic', 'Symphony No. 1 in B-Flat Major', 'Robert', 'robert schumann', 'Schumann', '\"Spring\" (orch. G. Mahler)', 'symphony in b-flat major', 'orchestra']}\n",
      "{'dataset': 'imslp', 'id': '28bbf912-abe3-4f46-808a-60433cdb19fd', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 471.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '28bbf912-abe3-4f46-808a-60433cdb19fd', 'start_s': 240.32, 'end_s': 471.12, 'original_duration_s': 471.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '76991680-fd9f-4ef1-af7b-01187c376b82', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 455.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '76991680-fd9f-4ef1-af7b-01187c376b82', 'start_s': 240.32, 'end_s': 455.0, 'original_duration_s': 455.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '85aac823-b64b-4aaf-beab-7d321ee387ae', 'start_s': 0.0, 'end_s': 37.96, 'original_duration_s': 432.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['weimar version', 'romantic', 'a symphonic poem in symphonic form (symphony ', 'titan', 'orchestra', '1893)', 'gustav mahler'], 'tags_private': ['weimar version', 'Mahler', 'romantic', 'a Symphonic Poem in Symphonic Form (Symphony No. 1', 'a symphonic poem in symphonic form (symphony ', 'Titan', 'Weimar version', 'titan', 'orchestra', '1893)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '85aac823-b64b-4aaf-beab-7d321ee387ae', 'start_s': 37.96, 'end_s': 278.28, 'original_duration_s': 432.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['weimar version', 'romantic', 'a symphonic poem in symphonic form (symphony ', 'titan', 'orchestra', '1893)', 'gustav mahler'], 'tags_private': ['weimar version', 'Mahler', 'romantic', 'a Symphonic Poem in Symphonic Form (Symphony No. 1', 'a symphonic poem in symphonic form (symphony ', 'Titan', 'Weimar version', 'titan', 'orchestra', '1893)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '85aac823-b64b-4aaf-beab-7d321ee387ae', 'start_s': 278.28, 'end_s': 432.04, 'original_duration_s': 432.04, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['weimar version', 'romantic', 'a symphonic poem in symphonic form (symphony ', 'titan', 'orchestra', '1893)', 'gustav mahler'], 'tags_private': ['weimar version', 'Mahler', 'romantic', 'a Symphonic Poem in Symphonic Form (Symphony No. 1', 'a symphonic poem in symphonic form (symphony ', 'Titan', 'Weimar version', 'titan', 'orchestra', '1893)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '1c5038cd-527b-4a20-92fa-7f5490faf2f8', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 421.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '1c5038cd-527b-4a20-92fa-7f5490faf2f8', 'start_s': 240.32, 'end_s': 421.68, 'original_duration_s': 421.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '2f583f57-b173-4379-b44b-69607a8e601e', 'start_s': 0.0, 'end_s': 36.28, 'original_duration_s': 441.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphony no.1'], 'tags_private': ['II. Kräftig bewegt', 'Mahler', 'romantic', 'doch nicht zu schnell', 'symphony no.1', 'Recht gemächlich', 'orchestra', 'Symphony No.1', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2f583f57-b173-4379-b44b-69607a8e601e', 'start_s': 36.28, 'end_s': 276.6, 'original_duration_s': 441.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphony no.1'], 'tags_private': ['II. Kräftig bewegt', 'Mahler', 'romantic', 'doch nicht zu schnell', 'symphony no.1', 'Recht gemächlich', 'orchestra', 'Symphony No.1', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2f583f57-b173-4379-b44b-69607a8e601e', 'start_s': 276.6, 'end_s': 441.2, 'original_duration_s': 441.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphony no.1'], 'tags_private': ['II. Kräftig bewegt', 'Mahler', 'romantic', 'doch nicht zu schnell', 'symphony no.1', 'Recht gemächlich', 'orchestra', 'Symphony No.1', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b460ce43-75c9-4adf-914e-1cdcb806bad2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 318.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'b460ce43-75c9-4adf-914e-1cdcb806bad2', 'start_s': 240.32, 'end_s': 318.6, 'original_duration_s': 318.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'e04b9495-888a-4352-9ca0-abc24540ab42', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 368.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['symphony in d major \"titan\"', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['symphony in d major \"titan\"', 'romantic', 'Mahler', 'Symphony No. 1 in D Major \"Titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e04b9495-888a-4352-9ca0-abc24540ab42', 'start_s': 240.32, 'end_s': 368.56, 'original_duration_s': 368.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['symphony in d major \"titan\"', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['symphony in d major \"titan\"', 'romantic', 'Mahler', 'Symphony No. 1 in D Major \"Titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'f2ba62e8-e837-430e-a90d-e45c9fa6e0c6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 456.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'f2ba62e8-e837-430e-a90d-e45c9fa6e0c6', 'start_s': 240.32, 'end_s': 456.12, 'original_duration_s': 456.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'c1019865-1c9c-412a-85b2-e6749ca45df6', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 421.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'c1019865-1c9c-412a-85b2-e6749ca45df6', 'start_s': 240.32, 'end_s': 421.0, 'original_duration_s': 421.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'b80402e5-2c46-42dc-b1e6-a77e1ac03ce9', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 381.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'b80402e5-2c46-42dc-b1e6-a77e1ac03ce9', 'start_s': 240.32, 'end_s': 381.6, 'original_duration_s': 381.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '7ad4433c-13e5-4ae1-b13d-a4e2e3f960ea', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 394.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['weimar version', 'romantic', 'a symphonic poem in symphonic form (symphony ', 'titan', 'orchestra', '1893)', 'gustav mahler'], 'tags_private': ['weimar version', 'Mahler', 'romantic', 'a Symphonic Poem in Symphonic Form (Symphony No. 1', 'a symphonic poem in symphonic form (symphony ', 'Titan', 'Weimar version', 'titan', 'orchestra', '1893)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7ad4433c-13e5-4ae1-b13d-a4e2e3f960ea', 'start_s': 240.32, 'end_s': 394.88, 'original_duration_s': 394.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['weimar version', 'romantic', 'a symphonic poem in symphonic form (symphony ', 'titan', 'orchestra', '1893)', 'gustav mahler'], 'tags_private': ['weimar version', 'Mahler', 'romantic', 'a Symphonic Poem in Symphonic Form (Symphony No. 1', 'a symphonic poem in symphonic form (symphony ', 'Titan', 'Weimar version', 'titan', 'orchestra', '1893)', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b0f5563b-b8d8-45bc-9f2a-1f5976404287', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 436.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'b0f5563b-b8d8-45bc-9f2a-1f5976404287', 'start_s': 240.32, 'end_s': 436.64, 'original_duration_s': 436.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '7dd3ae52-bbad-4e26-a2d1-8d25f92d1d5c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 408.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '7dd3ae52-bbad-4e26-a2d1-8d25f92d1d5c', 'start_s': 240.32, 'end_s': 408.92, 'original_duration_s': 408.92, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'e4ee1a8c-244b-4e74-88b0-8007f97bcdc2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 383.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphony no.1'], 'tags_private': ['Mahler', 'romantic', 'II. Kräftig', 'doch nicht zu schnell', 'symphony no.1', 'orchestra', 'Symphony No.1', 'gustav mahler', 'Gustav', 'bewegt']}\n",
      "{'dataset': 'imslp', 'id': 'e4ee1a8c-244b-4e74-88b0-8007f97bcdc2', 'start_s': 240.32, 'end_s': 383.68, 'original_duration_s': 383.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphony no.1'], 'tags_private': ['Mahler', 'romantic', 'II. Kräftig', 'doch nicht zu schnell', 'symphony no.1', 'orchestra', 'Symphony No.1', 'gustav mahler', 'Gustav', 'bewegt']}\n",
      "{'dataset': 'imslp', 'id': '2c6322ba-ab84-47b4-a419-2b29024d7500', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 430.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '2c6322ba-ab84-47b4-a419-2b29024d7500', 'start_s': 240.32, 'end_s': 430.32, 'original_duration_s': 430.32, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '920b2628-f29a-4624-ac9d-baae3534efe2', 'start_s': 0.0, 'end_s': 40.64, 'original_duration_s': 427.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '920b2628-f29a-4624-ac9d-baae3534efe2', 'start_s': 40.64, 'end_s': 280.96, 'original_duration_s': 427.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '920b2628-f29a-4624-ac9d-baae3534efe2', 'start_s': 280.96, 'end_s': 427.96, 'original_duration_s': 427.96, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'bf301dd7-7bf0-478b-819e-e58c1f87419a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 456.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'bf301dd7-7bf0-478b-819e-e58c1f87419a', 'start_s': 240.32, 'end_s': 456.12, 'original_duration_s': 456.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '37a73095-c358-40fb-a3f6-0504413719f8', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 400.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '37a73095-c358-40fb-a3f6-0504413719f8', 'start_s': 240.32, 'end_s': 400.12, 'original_duration_s': 400.12, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '2a6cded1-6757-408f-8469-fd3a04323373', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 387.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['symphony in d major \"titan\"', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['symphony in d major \"titan\"', 'romantic', 'Mahler', 'Symphony No. 1 in D Major \"Titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '2a6cded1-6757-408f-8469-fd3a04323373', 'start_s': 240.32, 'end_s': 387.24, 'original_duration_s': 387.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['symphony in d major \"titan\"', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['symphony in d major \"titan\"', 'romantic', 'Mahler', 'Symphony No. 1 in D Major \"Titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'acbd22b0-7511-4ce1-8818-bc099ffc9293', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 425.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['symphony in d major \"titan\"', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['symphony in d major \"titan\"', 'romantic', 'Mahler', 'Symphony No. 1 in D Major \"Titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'acbd22b0-7511-4ce1-8818-bc099ffc9293', 'start_s': 240.32, 'end_s': 425.48, 'original_duration_s': 425.48, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['symphony in d major \"titan\"', 'gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['symphony in d major \"titan\"', 'romantic', 'Mahler', 'Symphony No. 1 in D Major \"Titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '7a91a863-6a3e-4a53-baaf-58b6ca0d97a3', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 421.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '7a91a863-6a3e-4a53-baaf-58b6ca0d97a3', 'start_s': 240.32, 'end_s': 421.0, 'original_duration_s': 421.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '7d253ec6-ff23-40ee-a4d6-ca528eb50978', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 424.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '7d253ec6-ff23-40ee-a4d6-ca528eb50978', 'start_s': 240.32, 'end_s': 424.6, 'original_duration_s': 424.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'b330d454-89ce-42b9-a796-38ed9cdd2dd5', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 408.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'b330d454-89ce-42b9-a796-38ed9cdd2dd5', 'start_s': 240.32, 'end_s': 408.68, 'original_duration_s': 408.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'c7a023a4-da55-4212-b43e-c5992c61b1db', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 434.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'c7a023a4-da55-4212-b43e-c5992c61b1db', 'start_s': 240.32, 'end_s': 434.88, 'original_duration_s': 434.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '4935ce79-e14c-4ca4-a671-e3529b95be7a', 'start_s': 0.0, 'end_s': 35.48, 'original_duration_s': 474.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '4935ce79-e14c-4ca4-a671-e3529b95be7a', 'start_s': 35.48, 'end_s': 275.8, 'original_duration_s': 474.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '4935ce79-e14c-4ca4-a671-e3529b95be7a', 'start_s': 275.8, 'end_s': 474.6, 'original_duration_s': 474.6, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '0d37b033-907e-4cd8-a65a-2d42aaf459fb', 'start_s': 0.0, 'end_s': 50.24, 'original_duration_s': 462.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'symphonie in d major \"titan\"', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Symphonie No. 1 in D Major \"Titan\"', 'symphonie in d major \"titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0d37b033-907e-4cd8-a65a-2d42aaf459fb', 'start_s': 50.24, 'end_s': 290.56, 'original_duration_s': 462.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'symphonie in d major \"titan\"', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Symphonie No. 1 in D Major \"Titan\"', 'symphonie in d major \"titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': '0d37b033-907e-4cd8-a65a-2d42aaf459fb', 'start_s': 290.56, 'end_s': 462.72, 'original_duration_s': 462.72, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'symphonie in d major \"titan\"', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Symphonie No. 1 in D Major \"Titan\"', 'symphonie in d major \"titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e0ab6aa3-3fa0-4fc1-8f25-72936da60a31', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 420.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'symphonie in d major \"titan\"', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Symphonie No. 1 in D Major \"Titan\"', 'symphonie in d major \"titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'e0ab6aa3-3fa0-4fc1-8f25-72936da60a31', 'start_s': 240.32, 'end_s': 420.8, 'original_duration_s': 420.8, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['gustav mahler', 'symphonie in d major \"titan\"', 'romantic', 'orchestra'], 'tags_private': ['romantic', 'Mahler', 'Symphonie No. 1 in D Major \"Titan\"', 'symphonie in d major \"titan\"', 'orchestra', 'gustav mahler', 'Gustav']}\n",
      "{'dataset': 'imslp', 'id': 'ad2929d7-4612-4a0c-ab78-ec70e9dd0e9a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 411.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'ad2929d7-4612-4a0c-ab78-ec70e9dd0e9a', 'start_s': 240.32, 'end_s': 411.2, 'original_duration_s': 411.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '957025bc-1326-4f61-ad45-66a48ca49095', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 478.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '957025bc-1326-4f61-ad45-66a48ca49095', 'start_s': 240.32, 'end_s': 478.76, 'original_duration_s': 478.76, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '80cd8c97-b0b6-4159-828e-60f356d1ac8a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 461.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': '80cd8c97-b0b6-4159-828e-60f356d1ac8a', 'start_s': 240.32, 'end_s': 461.44, 'original_duration_s': 461.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d major', '\"titan\"', 'orchestra', 'gustav mahler'], 'tags_private': ['romantic', 'Mahler', 'symphony in d major', 'Symphony No. 1 in D Major', '\"titan\"', 'orchestra', 'gustav mahler', 'Gustav', '\"Titan\"']}\n",
      "{'dataset': 'imslp', 'id': 'dfd76c44-16f9-4745-ac73-ebb6b57fba2a', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 331.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d minor', 'robert schumann', 'orchestra', ' (orch. g. mahler)'], 'tags_private': ['romantic', 'Robert', 'symphony in d minor', 'robert schumann', 'Op. 120 (orch. G. Mahler)', 'Schumann', 'orchestra', ' (orch. g. mahler)', 'Symphony No. 4 in D Minor']}\n",
      "{'dataset': 'imslp', 'id': 'dfd76c44-16f9-4745-ac73-ebb6b57fba2a', 'start_s': 240.32, 'end_s': 331.24, 'original_duration_s': 331.24, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d minor', 'robert schumann', 'orchestra', ' (orch. g. mahler)'], 'tags_private': ['romantic', 'Robert', 'symphony in d minor', 'robert schumann', 'Op. 120 (orch. G. Mahler)', 'Schumann', 'orchestra', ' (orch. g. mahler)', 'Symphony No. 4 in D Minor']}\n",
      "{'dataset': 'imslp', 'id': '933b608c-6d93-4d96-84d4-7171f1667ef5', 'start_s': 0.0, 'end_s': 37.6, 'original_duration_s': 247.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '933b608c-6d93-4d96-84d4-7171f1667ef5', 'start_s': 37.6, 'end_s': 247.84, 'original_duration_s': 247.84, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '78d2dcca-a200-44f9-9f9f-a150280602a0', 'start_s': 0.0, 'end_s': 124.0, 'original_duration_s': 124.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'fcb65f6a-40d9-49f1-a38d-265a5c9129c2', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 266.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d minor', 'robert schumann', 'orchestra', ' (orch. g. mahler)'], 'tags_private': ['romantic', 'Robert', 'symphony in d minor', 'robert schumann', 'Op. 120 (orch. G. Mahler)', 'Schumann', 'orchestra', ' (orch. g. mahler)', 'Symphony No. 4 in D Minor']}\n",
      "{'dataset': 'imslp', 'id': 'fcb65f6a-40d9-49f1-a38d-265a5c9129c2', 'start_s': 240.32, 'end_s': 266.0, 'original_duration_s': 266.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['romantic', 'symphony in d minor', 'robert schumann', 'orchestra', ' (orch. g. mahler)'], 'tags_private': ['romantic', 'Robert', 'symphony in d minor', 'robert schumann', 'Op. 120 (orch. G. Mahler)', 'Schumann', 'orchestra', ' (orch. g. mahler)', 'Symphony No. 4 in D Minor']}\n",
      "{'dataset': 'imslp', 'id': 'cfd0b53a-e96d-460c-bbd9-90d9648806e1', 'start_s': 0.0, 'end_s': 108.56, 'original_duration_s': 108.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'cdabfbf7-4408-4136-9c5f-58f3f2df9f5b', 'start_s': 0.0, 'end_s': 53.76, 'original_duration_s': 96.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'cdabfbf7-4408-4136-9c5f-58f3f2df9f5b', 'start_s': 53.76, 'end_s': 96.2, 'original_duration_s': 96.2, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '3c2c854a-0361-4ca1-b550-b987c7203559', 'start_s': 0.0, 'end_s': 75.0, 'original_duration_s': 75.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '53cf0278-7558-4cce-ac47-43033c81763a', 'start_s': 0.0, 'end_s': 78.52, 'original_duration_s': 78.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler'], 'tags_private': [\"Eine Einfuhrung von Giuseppe Sinopoli in Gustav Mahlers 4. Sinfonie (Ausschnitte) (Giuseppe Sinopoli's intorductory commentary on Gustav Mahler's Four\", '3 trumpets (f', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', \"eine einfuhrung von giuseppe sinopoli in gustav mahlers 4. sinfonie (ausschnitte) (giuseppe sinopoli's intorductory commentary on gustav mahler's four\", 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '9c8ffeb0-ade1-4cbd-ad9d-a123754f2cd0', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 459.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'symphonie in g major', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'symphonie in g major', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', 'Symphonie No. 4 in G Major', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '9c8ffeb0-ade1-4cbd-ad9d-a123754f2cd0', 'start_s': 240.32, 'end_s': 459.52, 'original_duration_s': 459.52, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'symphonie in g major', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'symphonie in g major', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', 'Symphonie No. 4 in G Major', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '8dfe448d-70df-416b-89d0-7004c4d8151c', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 440.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'symphonie in g major', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'symphonie in g major', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', 'Symphonie No. 4 in G Major', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '8dfe448d-70df-416b-89d0-7004c4d8151c', 'start_s': 240.32, 'end_s': 440.56, 'original_duration_s': 440.56, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'symphonie in g major', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'symphonie in g major', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', 'Symphonie No. 4 in G Major', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '56e8cdf7-2c7f-480f-84c3-bc6bd05f537f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 311.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', 'symphony in g major', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'b♭', 'symphony in g major', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'Symphony No. 4 in G Major', '4th also piccolo)', 'glockenspiel', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '56e8cdf7-2c7f-480f-84c3-bc6bd05f537f', 'start_s': 240.32, 'end_s': 311.44, 'original_duration_s': 311.44, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', 'symphony in g major', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'b♭', 'symphony in g major', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'Symphony No. 4 in G Major', '4th also piccolo)', 'glockenspiel', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '9331dda7-ca00-439b-9f2e-55c129538529', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 466.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', 'symphony in g major', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'b♭', 'symphony in g major', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'Symphony No. 4 in G Major', '4th also piccolo)', 'glockenspiel', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '9331dda7-ca00-439b-9f2e-55c129538529', 'start_s': 240.32, 'end_s': 466.64, 'original_duration_s': 466.64, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'b♭', 'symphony in g major', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'b♭', 'symphony in g major', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'Symphony No. 4 in G Major', '4th also piccolo)', 'glockenspiel', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '43636276-7018-4b60-8cf5-d1057646a57f', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 449.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'symphonie in g major', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'symphonie in g major', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', 'Symphonie No. 4 in G Major', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '43636276-7018-4b60-8cf5-d1057646a57f', 'start_s': 240.32, 'end_s': 449.68, 'original_duration_s': 449.68, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['3 trumpets (f', 'symphonie in g major', 'b♭', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler'], 'tags_private': ['3 trumpets (f', 'symphonie in g major', 'b♭', 'Mahler', '3rd also bass clarinet (b♭)', 'cymbals', '3 bassoons (3rd also contrabassoon)\\n    4 horns (f)', 'tam-tam', 'romantic', 'Symphonie No. 4 in G Major', '3 oboes (3rd also english horn),\\n      3 clarinets (a', 'harp', 'c)(2nd also clarinet (e♭)', 'glockenspiel', '4th also piccolo)', 'strings', 'bass drum', 'Gustav', 'b♭),\\ntimpani', 'triangle', 'sleigh bells', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '47602580-79f7-4db3-a3d8-1194352538fc', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 464.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphonie '], 'tags_private': ['Symphonie No. 5', 'romantic', 'Mahler', 'orchestra', 'gustav mahler', 'Gustav', 'symphonie ']}\n",
      "{'dataset': 'imslp', 'id': '47602580-79f7-4db3-a3d8-1194352538fc', 'start_s': 240.32, 'end_s': 464.88, 'original_duration_s': 464.88, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['orchestra', 'gustav mahler', 'romantic', 'symphonie '], 'tags_private': ['Symphonie No. 5', 'romantic', 'Mahler', 'orchestra', 'gustav mahler', 'Gustav', 'symphonie ']}\n",
      "{'dataset': 'imslp', 'id': '9966eb6a-f4ee-4499-b2cf-cc8d2ca99e0d', 'start_s': 0.0, 'end_s': 240.32, 'original_duration_s': 462.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', '4 oboes (4th also english horn)', 'triangle', 'gustav mahler'], 'tags_private': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', 'Mahler', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', 'Gustav', '4 oboes (4th also english horn)', 'Symphony No. 9 in D Major', 'triangle', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': '9966eb6a-f4ee-4499-b2cf-cc8d2ca99e0d', 'start_s': 240.32, 'end_s': 462.0, 'original_duration_s': 462.0, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', '4 oboes (4th also english horn)', 'triangle', 'gustav mahler'], 'tags_private': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', 'Mahler', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', 'Gustav', '4 oboes (4th also english horn)', 'Symphony No. 9 in D Major', 'triangle', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'b7d4d581-8c06-4b83-978a-90590c0b6689', 'start_s': 0.0, 'end_s': 40.28, 'original_duration_s': 97.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', '4 oboes (4th also english horn)', 'triangle', 'gustav mahler'], 'tags_private': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', 'Mahler', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', 'Gustav', '4 oboes (4th also english horn)', 'Symphony No. 9 in D Major', 'triangle', 'gustav mahler']}\n",
      "{'dataset': 'imslp', 'id': 'b7d4d581-8c06-4b83-978a-90590c0b6689', 'start_s': 40.28, 'end_s': 97.16, 'original_duration_s': 97.16, 'vocal_start_s': None, 'vocal_end_s': None, 'tags': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', '4 oboes (4th also english horn)', 'triangle', 'gustav mahler'], 'tags_private': ['4 bassoons (4th also contrabassoon)\\n4 horns (f)', 'side drum,\\ncymbals', 'timpani', 'tuba', '2 harps', 'Mahler', '3 trombones', 'symphony in d major', '4 flutes', '3 trumpets (f)', 'bells (3)', 'clarinet (e♭),\\n3 clarinets (b♭', 'tam-tam', 'orchestra: piccolo', 'bass clarinet (b♭)', 'a)', 'early 20th century', 'glockenspiel', 'strings', 'bass drum', 'Gustav', '4 oboes (4th also english horn)', 'Symphony No. 9 in D Major', 'triangle', 'gustav mahler']}\n"
     ]
    }
   ],
   "source": [
    "for m in metas_tr:\n",
    "    tags_str = \"\".join(m[\"tags\"])\n",
    "    if \"mahler\" in tags_str and \"voice\" not in tags_str and \"chorus\" not in tags_str:\n",
    "        print(m)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f5bdf8ac",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.704450Z",
     "start_time": "2024-01-16T19:22:23.704442Z"
    }
   },
   "outputs": [],
   "source": [
    "# !du -hs /mnt/data/georg/data/chirp_v2/data_tr.bin\n",
    "# # 1003G"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "cbcbca32",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.705000Z",
     "start_time": "2024-01-16T19:22:23.704992Z"
    }
   },
   "outputs": [],
   "source": [
    "# # randomly listen to some stuff\n",
    "# from suno_utils.tasks.dac_2c_12cb import preload_models as preload_codec_models\n",
    "# from suno_utils.tasks.dac_2c_12cb import (\n",
    "#     encode as codec_encode,\n",
    "#     decode as codec_decode, \n",
    "#     EMBEDDING_RATE as CODEC_EMBEDDING_RATE,\n",
    "# )\n",
    "# _ = preload_codec_models(\"/app/suno/models/dac_2c_25x12.pt\")\n",
    "# mm = np.memmap(\"/mnt/localdisk/test_data/data_val.bin\", dtype=np.uint16, mode=\"r\")\n",
    "# mm = mm.reshape(-1, 3008, 13)\n",
    "# test_metas = read_jsonl(\"/mnt/localdisk/data/metas_val.jsonl\")\n",
    "# test_info = read_json(\"/mnt/localdisk/data/info_val.json\")\n",
    "# assert(len(test_metas) == len(mm))\n",
    "# idx_list = list(range(len(test_metas)))\n",
    "# #random.shuffle(idx_list)\n",
    "# #idx_list = [idx for idx in idx_list if \"text\" in test_metas[idx]]\n",
    "# print(len(mm))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "7008ddc7",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.705751Z",
     "start_time": "2024-01-16T19:22:23.705744Z"
    }
   },
   "outputs": [],
   "source": [
    "# # show text and audio\n",
    "# # idx = random.choice(idx_list)\n",
    "# # idx = random.choice(test_info[\"pond5_music\"][\"idx_list\"])\n",
    "# idx = random.choice(test_info[\"genius_hq_lyrics\"][\"idx_list\"])\n",
    "# # idx = random.choice(test_info[\"musescore_lyrics\"][\"idx_list\"])\n",
    "# # idx = random.choice(test_info[\"deezer_lyrics\"][\"idx_list\"])\n",
    "# # idx = random.choice(test_info[\"youtube_music_lyrics_foreign\"][\"idx_list\"])\n",
    "# # idx_key = random.choice(list(test_info.keys()))\n",
    "# # print(idx_key)\n",
    "# # idx = random.choice(test_info[idx_key][\"idx_list\"])\n",
    "# assert(\"original_duration_s\" in test_metas[idx])\n",
    "# print(\"tags:\", test_metas[idx].get(\"tags\"))\n",
    "# arr = mm[idx,1:].copy().astype(np.int16)[:,1:]\n",
    "# pad_idx_arr = np.where(arr == 4096)[0]\n",
    "# if len(pad_idx_arr) > 0:\n",
    "#     arr = arr[:pad_idx_arr[0],:]\n",
    "# a = codec_decode(arr)\n",
    "# a.play(compress=False)\n",
    "# print(\"text:\", test_metas[idx].get(\"text\"))\n",
    "# plt.plot(a.array_float[0])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f818ab33",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "87b856f6",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "markdown",
   "id": "62fb16fc",
   "metadata": {},
   "source": [
    "### try same with train"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f987040e",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.706431Z",
     "start_time": "2024-01-16T19:22:23.706422Z"
    }
   },
   "outputs": [],
   "source": [
    "%matplotlib inline\n",
    "from matplotlib import pyplot as plt"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "4471a7fb",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.707003Z",
     "start_time": "2024-01-16T19:22:23.706995Z"
    }
   },
   "outputs": [],
   "source": [
    "# randomly listen to some stuff\n",
    "from suno_utils.tasks.dac_2c_12cb import preload_models as preload_codec_models\n",
    "from suno_utils.tasks.dac_2c_12cb import (\n",
    "    encode as codec_encode,\n",
    "    decode as codec_decode, \n",
    "    EMBEDDING_RATE as CODEC_EMBEDDING_RATE,\n",
    ")\n",
    "from suno_utils.utils.text import read_jsonl, read_json\n",
    "_ = preload_codec_models(\"/app/suno/models/dac_2c_25x12.pt\")\n",
    "mm = np.memmap(\"/mnt/localdisk/data/data_tr.bin\", dtype=np.uint16, mode=\"r\")\n",
    "mm = mm.reshape(-1, 3008, 13)\n",
    "test_metas = read_jsonl(\"/mnt/localdisk/data/metas_tr.jsonl\")\n",
    "test_info = read_json(\"/mnt/localdisk/data/info_tr.json\")\n",
    "assert(len(test_metas) == len(mm))\n",
    "idx_list = list(range(len(test_metas)))\n",
    "#random.shuffle(idx_list)\n",
    "#idx_list = [idx for idx in idx_list if \"text\" in test_metas[idx]]\n",
    "print(len(mm))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "ecb73f42",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.707775Z",
     "start_time": "2024-01-16T19:22:23.707767Z"
    }
   },
   "outputs": [],
   "source": [
    "import random\n",
    "# show text and audio\n",
    "# idx = random.choice(idx_list)\n",
    "# idx = random.choice(test_info[\"pond5_music\"][\"idx_list\"])\n",
    "# idx = random.choice(test_info[\"genius_hq_lyrics\"][\"idx_list\"])\n",
    "idx = random.choice(test_info[\"ytm_mb\"][\"idx_list\"])\n",
    "# idx = random.choice(test_info[\"musescore_lyrics\"][\"idx_list\"])\n",
    "# idx = random.choice(test_info[\"deezer_lyrics\"][\"idx_list\"])\n",
    "# idx = random.choice(test_info[\"youtube_music_lyrics_foreign\"][\"idx_list\"])\n",
    "# idx_key = random.choice(list(test_info.keys()))\n",
    "# print(idx_key)\n",
    "# idx = random.choice(test_info[idx_key][\"idx_list\"])\n",
    "assert(\"original_duration_s\" in test_metas[idx])\n",
    "print(\"tags:\", test_metas[idx].get(\"tags\"))\n",
    "arr = mm[idx,1:].copy().astype(np.int16)[:,1:]\n",
    "pad_idx_arr = np.where(arr == 4096)[0]\n",
    "if len(pad_idx_arr) > 0:\n",
    "    arr = arr[:pad_idx_arr[0],:]\n",
    "a = codec_decode(arr)\n",
    "a.play(compress=False)\n",
    "print(\"text:\", test_metas[idx].get(\"text\"))\n",
    "plt.plot(a.array_float[0])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "ee88a2eb",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "1d977073",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "c2653b41",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "067a561b",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "73c92bda",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "markdown",
   "id": "08665ec0",
   "metadata": {},
   "source": [
    "## Playground"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "747f0363",
   "metadata": {},
   "source": [
    "#### get all tags"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "73286512",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.708439Z",
     "start_time": "2024-01-16T19:22:23.708431Z"
    }
   },
   "outputs": [],
   "source": [
    "test_metas = read_jsonl(\"/mnt/data/georg/data/chirp_v2/metas_val.jsonl\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "a3ed7922",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.709099Z",
     "start_time": "2024-01-16T19:22:23.709091Z"
    }
   },
   "outputs": [],
   "source": [
    "tags = []\n",
    "for e in train_metas:\n",
    "    tags.extend(e.get(\"tags\", []))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "2eed69a8",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.709672Z",
     "start_time": "2024-01-16T19:22:23.709665Z"
    }
   },
   "outputs": [],
   "source": [
    "vc_tags = pd.Series(tags).value_counts()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "bf1c83e8",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.710449Z",
     "start_time": "2024-01-16T19:22:23.710441Z"
    }
   },
   "outputs": [],
   "source": [
    "vc_tags.head(5)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f76f1e83",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.711116Z",
     "start_time": "2024-01-16T19:22:23.711108Z"
    }
   },
   "outputs": [],
   "source": [
    "vc_tags = vc_tags.to_frame()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "6766efb1",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.711665Z",
     "start_time": "2024-01-16T19:22:23.711658Z"
    }
   },
   "outputs": [],
   "source": [
    "vc_tags.tail()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "fece8109",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.712334Z",
     "start_time": "2024-01-16T19:22:23.712327Z"
    }
   },
   "outputs": [],
   "source": [
    "a = vc_tags[vc_tags[\"count\"]>=3][\"count\"].to_dict()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "52e1a982",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.712984Z",
     "start_time": "2024-01-16T19:22:23.712976Z"
    }
   },
   "outputs": [],
   "source": [
    "test_metas = read_jsonl(\"/mnt/data/georg/data/chirp_v2/metas_val.jsonl\")\n",
    "test_info = read_json(\"/mnt/data/georg/data/chirp_v2/info_val.json\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "b6b9f19e",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2024-01-16T19:22:23.713793Z",
     "start_time": "2024-01-16T19:22:23.713785Z"
    }
   },
   "outputs": [],
   "source": [
    "idx = random.choice(test_info[\"musescore_lyrics\"][\"idx_list\"])\n",
    "print(idx)\n",
    "m = test_metas[idx]\n",
    "re.sub(r\"\\[.*?\\]\", \"\", m[\"text\"])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "5dffab2d",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "4531aac2",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f0e1aafb",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "143ac0a7",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.10.13"
  },
  "toc": {
   "base_numbering": 1,
   "nav_menu": {},
   "number_sections": true,
   "sideBar": true,
   "skip_h1_title": false,
   "title_cell": "Table of Contents",
   "title_sidebar": "Contents",
   "toc_cell": false,
   "toc_position": {},
   "toc_section_display": true,
   "toc_window_display": false
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
