Datasets:
File size: 384,456 Bytes
e686221 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 | {"sample_key": "005375_69120", "filepath": "data/openmic-2018/audio/005/005375_69120.ogg", "artist": "Mary Halvorson and Jessica Pavone", "title": "Untitled", "album": "Live at WFMU on Bethany's Show on 9/10/2006", "instrument": ["acoustic guitar", "violin"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "009301_0", "filepath": "data/openmic-2018/audio/009/009301_0.ogg", "artist": "Kitty Kadoogal", "title": "Marble Cannibal/Quazar Equals Home", "album": "Confuse Red With Survival", "instrument": ["electric guitar"], "openmic_genres": ["Noise", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "010962_591360", "filepath": "data/openmic-2018/audio/010/010962_591360.ogg", "artist": "Borromeo String Quartet", "title": "Schubert: String Quartet No. 14 in D minor (\u201cDeath and the Maiden\u201d), D. 810", "album": "Live at the Isabella Stewart Gardner Museum", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "011156_134400", "filepath": "data/openmic-2018/audio/011/011156_134400.ogg", "artist": "Selva de Mar", "title": "Pelos En El Diente", "album": "Selva de Mar", "instrument": ["cello"], "openmic_genres": ["Experimental", "Reggae - Dub", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "011737_49920", "filepath": "data/openmic-2018/audio/011/011737_49920.ogg", "artist": "Free Tim", "title": "Grieg's Anitra's Dance", "album": "Edvard Grieg's Anitras Dance, Peer Gint Suite", "instrument": ["cello", "violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "012008_0", "filepath": "data/openmic-2018/audio/012/012008_0.ogg", "artist": "Quiet Orchestra", "title": "Me and Everyone Else", "album": "Quiet Orchestra", "instrument": ["cello", "violin"], "openmic_genres": ["Avant-Garde", "Folk", "Experimental", "Ambient", "Space-Rock"], "genre": ["cou_fol", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "012102_230400", "filepath": "data/openmic-2018/audio/012/012102_230400.ogg", "artist": "Selva de Mar", "title": "Gulab Jaman", "album": "Olas Invisibles", "instrument": ["cello"], "openmic_genres": ["Experimental", "Reggae - Dub", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "013151_595200", "filepath": "data/openmic-2018/audio/013/013151_595200.ogg", "artist": "xxxmacarena", "title": "untitled", "album": NaN, "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "013606_410880", "filepath": "data/openmic-2018/audio/013/013606_410880.ogg", "artist": "Daniel Barbiero", "title": "Fludd", "album": "Solo Double Bass", "instrument": ["cello"], "openmic_genres": ["Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "015058_161280", "filepath": "data/openmic-2018/audio/015/015058_161280.ogg", "artist": "Vladislav Makarov", "title": "301", "album": "Multiplying Real - Multicello", "instrument": ["cello"], "openmic_genres": ["Jazz: Out", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "015855_0", "filepath": "data/openmic-2018/audio/015/015855_0.ogg", "artist": "Le Ton Mite", "title": "Happy Times", "album": "Tickets to real imaginary places", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Classical", "Experimental Pop"], "genre": ["pop_roc", "cla"], "tags": []}
{"sample_key": "015876_72960", "filepath": "data/openmic-2018/audio/015/015876_72960.ogg", "artist": "Maria Grigoryeva", "title": "Transfer through flowers", "album": "Transfer to Unknown", "instrument": ["cello"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "017048_372480", "filepath": "data/openmic-2018/audio/017/017048_372480.ogg", "artist": "Tusk Lord", "title": "2009 Side A", "album": "Tusk Lord (2009)", "instrument": ["cello"], "openmic_genres": ["Rock", "Folk", "Experimental"], "genre": ["cou_fol", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "018041_72960", "filepath": "data/openmic-2018/audio/018/018041_72960.ogg", "artist": "Gaida Hinnawi", "title": "Title Unknown", "album": "WFMU live broadcast from Barbes on Transpacific Paradise 4/11/09", "instrument": ["cello"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "018042_84480", "filepath": "data/openmic-2018/audio/018/018042_84480.ogg", "artist": "Gaida Hinnawi", "title": "Title Unknown", "album": "WFMU live broadcast from Barbes on Transpacific Paradise 4/11/09", "instrument": ["cello"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "018330_46080", "filepath": "data/openmic-2018/audio/018/018330_46080.ogg", "artist": "Amolvacy", "title": "fools dream when they should dance", "album": "Ho-Ho-Kus", "instrument": ["other instrument"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "019225_318720", "filepath": "data/openmic-2018/audio/019/019225_318720.ogg", "artist": "Dallas Kincaid", "title": "Staphylococcus blues", "album": "If you're a heartbreaker, you got a broken heart", "instrument": ["cello", "acoustic guitar", "voice"], "openmic_genres": ["Country", "Americana", "Rockabilly"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "019252_111360", "filepath": "data/openmic-2018/audio/019/019252_111360.ogg", "artist": "Diablo Swing Orchestra", "title": "Velvet Embracer", "album": "The Butcher's Ballroom", "instrument": ["cello"], "openmic_genres": ["International", "Metal", "Progressive"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "020935_161280", "filepath": "data/openmic-2018/audio/020/020935_161280.ogg", "artist": "Hopewell", "title": "10,000 Black Masses / Realms of Gold Outro / Worried Mind {Elizabeth Claire Prophet}", "album": "Live at WFMU on Irene Trudel's Show 11/9/2009", "instrument": ["cello", "voice"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "021528_61440", "filepath": "data/openmic-2018/audio/021/021528_61440.ogg", "artist": "Andrew Christopher Smith", "title": "Rondo", "album": "Wallace, for String Quartet", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "022282_76800", "filepath": "data/openmic-2018/audio/022/022282_76800.ogg", "artist": "The Black Swans", "title": "Joe Tex", "album": "Phoning It In 04/12/07", "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Country", "Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "023136_30720", "filepath": "data/openmic-2018/audio/023/023136_30720.ogg", "artist": "Lee Maddeford", "title": "Instrumentale_3", "album": "Eros et Psyche", "instrument": ["cello"], "openmic_genres": ["Classical", "Europe", "20th Century Classical", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "023161_142080", "filepath": "data/openmic-2018/audio/023/023161_142080.ogg", "artist": "Lee Maddeford", "title": "Le petit jardin (with Les Gauchers Orchestra)", "album": "Instrumentals 1", "instrument": ["cello", "violin"], "openmic_genres": ["Classical", "20th Century Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "025867_1635840", "filepath": "data/openmic-2018/audio/025/025867_1635840.ogg", "artist": "Colin Carr", "title": "Bach: Cello Suite No. 5 in C minor, BWV 1011", "album": "Colin Carr: Music from the Isabella Stewart Gardner Museum, Boston", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "032796_307200", "filepath": "data/openmic-2018/audio/032/032796_307200.ogg", "artist": "Jo\u00eblle L\u00e9andre", "title": "Improvisation 1", "album": "Live at ISSUE 6/30/10", "instrument": ["cello"], "openmic_genres": ["Classical", "Experimental", "Composed Music"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "032798_199680", "filepath": "data/openmic-2018/audio/032/032798_199680.ogg", "artist": "Jo\u00eblle L\u00e9andre", "title": "No Comment", "album": "Live at ISSUE 6/30/10", "instrument": ["cello"], "openmic_genres": ["Classical", "Experimental", "Composed Music"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "033075_199680", "filepath": "data/openmic-2018/audio/033/033075_199680.ogg", "artist": "Nat Baldwin", "title": "The Same Thing", "album": "Live at ISSUE 5/22/10", "instrument": ["cello", "voice"], "openmic_genres": ["Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "033080_30720", "filepath": "data/openmic-2018/audio/033/033080_30720.ogg", "artist": "Nat Baldwin", "title": "Lifted", "album": "Live at ISSUE 5/22/10", "instrument": ["cello"], "openmic_genres": ["Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "035459_161280", "filepath": "data/openmic-2018/audio/035/035459_161280.ogg", "artist": "Zeptosound", "title": "The Remainder", "album": "Zeptosound", "instrument": ["cello", "piano"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "037149_30720", "filepath": "data/openmic-2018/audio/037/037149_30720.ogg", "artist": "Scabeater", "title": "Haunted", "album": "Autumn", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Trip-Hop"], "genre": ["NA"], "tags": []}
{"sample_key": "038744_122880", "filepath": "data/openmic-2018/audio/038/038744_122880.ogg", "artist": "Bardo Pond", "title": "Untitled #1", "album": "Live at WFMU on Stork's Show on 11/1/1997", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "040639_3840", "filepath": "data/openmic-2018/audio/040/040639_3840.ogg", "artist": "Min-Y-Llan", "title": "Deal Breaker", "album": "Regulate Condition", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Downtempo"], "genre": ["NA"], "tags": []}
{"sample_key": "042545_207360", "filepath": "data/openmic-2018/audio/042/042545_207360.ogg", "artist": "Entertainment for the Braindead", "title": "A Friend", "album": "Trivialities", "instrument": ["cello", "voice"], "openmic_genres": ["Folk", "Experimental Pop", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "045090_0", "filepath": "data/openmic-2018/audio/045/045090_0.ogg", "artist": "Boyz 2 Moche", "title": "audrey", "album": "le club de mercier solitaire", "instrument": ["violin", "voice"], "openmic_genres": ["Avant-Garde", "Audio Collage", "Lo-Fi"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "046651_1743360", "filepath": "data/openmic-2018/audio/046/046651_1743360.ogg", "artist": "Claremont Trio", "title": "Piano Trio No7 in B-flat Major Op97 -- Archduke (Beethoven)", "album": "Selections, Spring 2011", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "046752_2342400", "filepath": "data/openmic-2018/audio/046/046752_2342400.ogg", "artist": "Eliane Radigue", "title": "NWREI Radigue", "album": "EI and NWR Radio: Eliane Radigue", "instrument": ["cello"], "openmic_genres": ["Drone"], "genre": ["instrumental"], "tags": []}
{"sample_key": "047237_42240", "filepath": "data/openmic-2018/audio/047/047237_42240.ogg", "artist": "The Paparazzi", "title": "And Away We Go...", "album": "Rococo", "instrument": ["cello", "electric guitar", "violin"], "openmic_genres": ["Psych-Rock", "Experimental Pop", "Power-Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "047772_57600", "filepath": "data/openmic-2018/audio/047/047772_57600.ogg", "artist": "Christian Wolff", "title": "Exercise 16", "album": "Exercise 16 from Ten Exercises", "instrument": ["other instrument"], "openmic_genres": ["Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "048192_26880", "filepath": "data/openmic-2018/audio/048/048192_26880.ogg", "artist": "Cosmic Analog Ensemble", "title": "Pens\u00c7e Pieuse", "album": "Navigations Nocturnes", "instrument": ["acoustic guitar", "other instrument"], "openmic_genres": ["Jazz", "Funk"], "genre": ["jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "048919_729600", "filepath": "data/openmic-2018/audio/048/048919_729600.ogg", "artist": "Long Hair", "title": "01 Chasmed River", "album": "Young Oceans", "instrument": ["cello", "violin"], "openmic_genres": ["Psych-Rock", "Space-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "050931_34560", "filepath": "data/openmic-2018/audio/050/050931_34560.ogg", "artist": "Kevin MacLeod", "title": "Georges Bizet: Habanera", "album": "Classical Sampler", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "050956_57600", "filepath": "data/openmic-2018/audio/050/050956_57600.ogg", "artist": "Kevin MacLeod", "title": "Devastation and Revenge", "album": "Contemporary Sampler", "instrument": ["cello"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "051241_3840", "filepath": "data/openmic-2018/audio/051/051241_3840.ogg", "artist": "Unwoman", "title": "Satin\t(Remix by Attrition)", "album": "Unremembered", "instrument": ["cello"], "openmic_genres": ["Pop", "Singer-Songwriter", "Goth"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "051875_11520", "filepath": "data/openmic-2018/audio/051/051875_11520.ogg", "artist": "Mr Ascofi", "title": "Agent undercover", "album": "Perfide City", "instrument": ["violin", "voice"], "openmic_genres": ["Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "052439_107520", "filepath": "data/openmic-2018/audio/052/052439_107520.ogg", "artist": "Long Hair", "title": "Improvisation I", "album": "Triple Fake Live!", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Noise-Rock", "Psych-Rock", "Space-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "052453_0", "filepath": "data/openmic-2018/audio/052/052453_0.ogg", "artist": "Jan Morgenstern", "title": "Circling Dragons", "album": "Sintel: Original Film Score", "instrument": ["cello"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "053293_322560", "filepath": "data/openmic-2018/audio/053/053293_322560.ogg", "artist": "Rebecca Foon", "title": "Sunsets And Rockers", "album": "Live At CKUT on Montreal Sessions", "instrument": ["cello"], "openmic_genres": ["Experimental Pop", "Chamber Music"], "genre": ["pop_roc", "cla"], "tags": []}
{"sample_key": "053733_46080", "filepath": "data/openmic-2018/audio/053/053733_46080.ogg", "artist": "Adriano Orru", "title": "05 Halys", "album": "Hesperos", "instrument": ["cello"], "openmic_genres": ["Avant-Garde", "Improv"], "genre": ["NA"], "tags": []}
{"sample_key": "054149_145920", "filepath": "data/openmic-2018/audio/054/054149_145920.ogg", "artist": "Mark Neil", "title": "01 Shakey3", "album": "Blue", "instrument": ["cello"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "054158_215040", "filepath": "data/openmic-2018/audio/054/054158_215040.ogg", "artist": "Mark Neil", "title": "10 TheColdFromWithin", "album": "Blue", "instrument": ["cello", "other instrument"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "054249_92160", "filepath": "data/openmic-2018/audio/054/054249_92160.ogg", "artist": "Mike Doughty", "title": "Madeline And Nine", "album": "Live at WFMU on Irwin's Show September 21, 2011", "instrument": ["cello", "voice"], "openmic_genres": ["Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "056565_864000", "filepath": "data/openmic-2018/audio/056/056565_864000.ogg", "artist": "Nicola Benedetti, violin; Katya Apekisheva, piano", "title": "Sonata for violin and piano No. 2 in A Major, Op. 100", "album": "Selections, Fall 2011", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "057616_238080", "filepath": "data/openmic-2018/audio/057/057616_238080.ogg", "artist": "Okkyung Lee", "title": "at 110 Livingston (with Michelle Boul\u00e9)", "album": "at 110 Livingston (with Michelle Boul\u00e9)", "instrument": ["cello"], "openmic_genres": ["Improv"], "genre": ["NA"], "tags": []}
{"sample_key": "057791_195840", "filepath": "data/openmic-2018/audio/057/057791_195840.ogg", "artist": "Maya Solov\u00e9y", "title": "Tonight", "album": "Maya Solov\u00e9y, I:II", "instrument": ["cello", "piano"], "openmic_genres": ["International", "Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "060255_11520", "filepath": "data/openmic-2018/audio/060/060255_11520.ogg", "artist": "dmyra", "title": "Serpentina", "album": "Sophisticated Women of Danger", "instrument": ["cello"], "openmic_genres": ["Rock", "Folk", "Psych-Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "060527_72960", "filepath": "data/openmic-2018/audio/060/060527_72960.ogg", "artist": "MUTE", "title": "Heaven Help Me", "album": "UNkilling Time", "instrument": ["cello", "violin"], "openmic_genres": ["Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "062051_606720", "filepath": "data/openmic-2018/audio/062/062051_606720.ogg", "artist": "The String Orchestra of Brooklyn", "title": "Katherine Young - Inhabitation of Time", "album": "String Theories 2011", "instrument": ["cello"], "openmic_genres": ["Experimental", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "064718_683520", "filepath": "data/openmic-2018/audio/064/064718_683520.ogg", "artist": "Daniel Barbiero", "title": "Monuments seen through ...", "album": "Monuments Seen through Peripheral Vision", "instrument": ["cello"], "openmic_genres": ["Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "064748_284160", "filepath": "data/openmic-2018/audio/064/064748_284160.ogg", "artist": "Lee Rosevere", "title": "Jesu Joy of Man's Desiring (Bach)", "album": "Time-Lapse: Volume 1", "instrument": ["cello"], "openmic_genres": ["Classical", "Ambient", "Minimal Electronic"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "065037_253440", "filepath": "data/openmic-2018/audio/065/065037_253440.ogg", "artist": "Candlegravity", "title": "A Lifetime of Summers Past", "album": "Before I Go", "instrument": ["piano"], "openmic_genres": ["Electronic", "Dubstep"], "genre": ["NA"], "tags": []}
{"sample_key": "065204_119040", "filepath": "data/openmic-2018/audio/065/065204_119040.ogg", "artist": "Sly Hats", "title": "Devendra (Twilights)", "album": "Tomorrow is Today: A Tribute to the Australian Psychedelic Scene 1966-70 [Disc 1]", "instrument": ["cello"], "openmic_genres": ["Psych-Rock", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "065964_245760", "filepath": "data/openmic-2018/audio/065/065964_245760.ogg", "artist": "Jared C. Balogh", "title": "Ode To Lexi", "album": "Silent Anticipation", "instrument": ["cello", "violin"], "openmic_genres": ["Jazz", "Classical", "Experimental"], "genre": ["jaz_blu", "instrumental", "cla"], "tags": []}
{"sample_key": "066694_403200", "filepath": "data/openmic-2018/audio/066/066694_403200.ogg", "artist": "DaXun Zhang", "title": "MAURER - Four Short Pieces for solo double bass", "album": "Selections, Summer 2012", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "066695_1048320", "filepath": "data/openmic-2018/audio/066/066695_1048320.ogg", "artist": "Colin Carr", "title": "JS BACH - Cello Suite No. 3 in C Major, BWV 1009", "album": "Selections, Summer 2012", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "066702_414720", "filepath": "data/openmic-2018/audio/066/066702_414720.ogg", "artist": "Musicians from Marlboro", "title": "DVORAK - String Quintet in E-flat Major, Op. 97, B. 180", "album": "Selections, Summer 2012", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "066741_119040", "filepath": "data/openmic-2018/audio/066/066741_119040.ogg", "artist": "Jamie Evans", "title": "War And Peace", "album": "Opening Doors: Music for Film and TV", "instrument": ["violin"], "openmic_genres": ["Classical", "Soundtrack"], "genre": ["soundtrack", "cla"], "tags": []}
{"sample_key": "066780_1651200", "filepath": "data/openmic-2018/audio/066/066780_1651200.ogg", "artist": "Musicians from Marlboro", "title": "SCHUBERT - Cello Quintet in C Major, D. 956, Op. 163", "album": "Selections, Summer 2012", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "070445_199680", "filepath": "data/openmic-2018/audio/070/070445_199680.ogg", "artist": "Advent Chamber Orchestra", "title": "Handel - Concerto for Organ and Orchestra Op7 no1 mvt1", "album": "Selections from the 2005-2006 Season", "instrument": ["cello", "organ"], "openmic_genres": ["Classical", "Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "070446_23040", "filepath": "data/openmic-2018/audio/070/070446_23040.ogg", "artist": "Advent Chamber Orchestra", "title": "Handel - Concerto for Organ and Orchestra Op7 no1 mvt2", "album": "Selections from the 2005-2006 Season", "instrument": ["cello"], "openmic_genres": ["Classical", "Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "070457_257280", "filepath": "data/openmic-2018/audio/070/070457_257280.ogg", "artist": "Advent Chamber Orchestra", "title": "Vivaldi - Motet for Soprano and Orchestra larghetto", "album": "Selections from the December 2006 Concert", "instrument": ["cello", "other instrument"], "openmic_genres": ["Classical", "Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "071013_99840", "filepath": "data/openmic-2018/audio/071/071013_99840.ogg", "artist": "Don Trust", "title": "In A Futile Effort", "album": "Tron Dust", "instrument": ["electric guitar"], "openmic_genres": ["Electronic", "Electroacoustic", "Sound Collage"], "genre": ["instrumental"], "tags": []}
{"sample_key": "071929_65280", "filepath": "data/openmic-2018/audio/071/071929_65280.ogg", "artist": "Dark Asylum Music", "title": "Lazarus Syndrome (Undead Rising)", "album": "Malice", "instrument": ["cello", "violin"], "openmic_genres": ["Goth"], "genre": ["NA"], "tags": []}
{"sample_key": "073153_34560", "filepath": "data/openmic-2018/audio/073/073153_34560.ogg", "artist": "Real Vocal String Quartet", "title": "Kothbiro", "album": "Live on WFMU's Transpacific Sound Paradise 1-7-11", "instrument": ["violin"], "openmic_genres": ["Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "073301_180480", "filepath": "data/openmic-2018/audio/073/073301_180480.ogg", "artist": "Wilhelm Matthies and Pedro Duarte", "title": "Morning Field, Early Fall-1", "album": "Classwar Karaoke - 0020 Survey", "instrument": ["cello", "piano"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "073607_199680", "filepath": "data/openmic-2018/audio/073/073607_199680.ogg", "artist": "Jared C. Balogh", "title": "Strides", "album": "Jared C. Balogh In Session On Dandelion Radio", "instrument": ["piano", "violin"], "openmic_genres": ["Classical", "Experimental", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "073806_126720", "filepath": "data/openmic-2018/audio/073/073806_126720.ogg", "artist": "Dexter Britain", "title": "The Time To Run (Finale)", "album": "Creative Commons Volume. 5", "instrument": ["cello"], "openmic_genres": ["Classical", "Soundtrack"], "genre": ["soundtrack", "cla"], "tags": []}
{"sample_key": "076564_30720", "filepath": "data/openmic-2018/audio/076/076564_30720.ogg", "artist": "Textile Audio", "title": "Demeter's Lament", "album": "The Pomegranate Cycle", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Opera", "Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "077424_61440", "filepath": "data/openmic-2018/audio/077/077424_61440.ogg", "artist": "Nikos Veliotis", "title": "Solo @ Cafe Oto", "album": "Solo @ Cafe OTO", "instrument": ["cello"], "openmic_genres": ["Drone", "Minimalism"], "genre": ["instrumental"], "tags": []}
{"sample_key": "078077_30720", "filepath": "data/openmic-2018/audio/078/078077_30720.ogg", "artist": "cloud becomes your hand", "title": "a worm is born (xcerpt)", "album": "cloud becomes your hand", "instrument": ["saxophone"], "openmic_genres": ["Electronic", "Experimental", "Psych-Rock"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "080368_3840", "filepath": "data/openmic-2018/audio/080/080368_3840.ogg", "artist": "Raklorom", "title": "Kalina", "album": "Live at the 2013 Golden Festival", "instrument": ["violin"], "openmic_genres": ["Folk", "Europe"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "082438_161280", "filepath": "data/openmic-2018/audio/082/082438_161280.ogg", "artist": "Hugh Levick / Diotima Quartet", "title": "Empire, Inc mvt 1", "album": NaN, "instrument": ["cello", "violin"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "082916_230400", "filepath": "data/openmic-2018/audio/082/082916_230400.ogg", "artist": "krackatoa", "title": "Chasing Butterflies into the Snow", "album": "Dining On Backs of the Brave", "instrument": ["cello"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "082930_387840", "filepath": "data/openmic-2018/audio/082/082930_387840.ogg", "artist": "krackatoa", "title": "Opotiki Over and Out", "album": "Dining On Backs of the Brave", "instrument": ["violin"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "083612_38400", "filepath": "data/openmic-2018/audio/083/083612_38400.ogg", "artist": "BOPD", "title": "New England is Interesting (reprise)", "album": "Old Paper Houses Soundtrack", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Ambient"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "089244_264960", "filepath": "data/openmic-2018/audio/089/089244_264960.ogg", "artist": "(morse)", "title": "G, Volume I", "album": "A|| Look to the Heavens ||Z", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "089355_184320", "filepath": "data/openmic-2018/audio/089/089355_184320.ogg", "artist": "c\u00e1todo d\u00fao", "title": "N\u00ba 1042", "album": "al tiro", "instrument": ["cello"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "089557_403200", "filepath": "data/openmic-2018/audio/089/089557_403200.ogg", "artist": "Broadcloth", "title": "Broadcloth: Book I", "album": "Live on WFMU's Airborne Event with Dan Bodah - August 12th, 2013", "instrument": ["cello", "voice"], "openmic_genres": ["Experimental", "Improv", "Chamber Music"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "089702_195840", "filepath": "data/openmic-2018/audio/089/089702_195840.ogg", "artist": "Art of Flying", "title": "fly to pieces", "album": "Garden of Earthly Delights", "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Lo-Fi", "Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "089849_552960", "filepath": "data/openmic-2018/audio/089/089849_552960.ogg", "artist": "Silver Process", "title": "The Journey", "album": "The Holy Mountain", "instrument": ["cello"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Experimental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "091220_330240", "filepath": "data/openmic-2018/audio/091/091220_330240.ogg", "artist": "Hourvari", "title": "II", "album": "EP 2011", "instrument": ["cello"], "openmic_genres": ["Metal", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "091575_57600", "filepath": "data/openmic-2018/audio/091/091575_57600.ogg", "artist": "Infinite Third", "title": "Fear, Terror, and the Fear of Terror", "album": "Stillness in Movement", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Post-Rock", "Experimental", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "092853_579840", "filepath": "data/openmic-2018/audio/092/092853_579840.ogg", "artist": "Oliver Barrett", "title": "Solo Cello (Live at Cafe OTO)", "album": "Solo Cello (Live at Cafe OTO)", "instrument": ["cello"], "openmic_genres": ["Drone", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "093917_130560", "filepath": "data/openmic-2018/audio/093/093917_130560.ogg", "artist": "Jahzzar", "title": "Flood", "album": "Viikinsaari", "instrument": ["piano"], "openmic_genres": ["Ambient", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "093918_23040", "filepath": "data/openmic-2018/audio/093/093918_23040.ogg", "artist": "Jahzzar", "title": "Keep Calm", "album": "Viikinsaari", "instrument": ["cello", "piano"], "openmic_genres": ["Ambient", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "094199_357120", "filepath": "data/openmic-2018/audio/094/094199_357120.ogg", "artist": "Evil Bear Boris", "title": "Geheimnisse des Dritten Reichs", "album": "Das Ist Boris", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Experimental", "Sludge"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "097013_15360", "filepath": "data/openmic-2018/audio/097/097013_15360.ogg", "artist": "Vio/Mire", "title": "Dogs 1", "album": "AS220's Winter Sampler 2013", "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "097412_249600", "filepath": "data/openmic-2018/audio/097/097412_249600.ogg", "artist": "Zebrat", "title": "Bewilderment", "album": "Fairyland", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Indie-Rock", "Trip-Hop", "Chill-out"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "098016_284160", "filepath": "data/openmic-2018/audio/098/098016_284160.ogg", "artist": "_Algol_", "title": "Holes of Celestial Sphere", "album": "Deep Thoughts About Universe", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "099231_142080", "filepath": "data/openmic-2018/audio/099/099231_142080.ogg", "artist": "Ergo Phizmiz", "title": "Courtly Knees Up", "album": "Mumbo Jambo: Four Electronic Pieces", "instrument": ["cello"], "openmic_genres": ["Electronic", "Soundtrack", "Experimental Pop"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "099993_115200", "filepath": "data/openmic-2018/audio/099/099993_115200.ogg", "artist": "Daniel Heikalo", "title": "Gobi Techno Shaman", "album": "Classwar Karaoke - 0025 Survey", "instrument": ["cello"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "101659_53760", "filepath": "data/openmic-2018/audio/101/101659_53760.ogg", "artist": "Asian Mae", "title": "Slumber Me", "album": "Collsing", "instrument": ["clarinet", "voice"], "openmic_genres": ["Country", "Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "102080_768000", "filepath": "data/openmic-2018/audio/102/102080_768000.ogg", "artist": "m\u00e1quina solar", "title": "arrobal", "album": "de escamas", "instrument": ["cello"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "104115_134400", "filepath": "data/openmic-2018/audio/104/104115_134400.ogg", "artist": "Wall Matthews", "title": "Tree Toads", "album": "Live on WFMU with Irene Trudel: April 14, 2014", "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "104116_72960", "filepath": "data/openmic-2018/audio/104/104116_72960.ogg", "artist": "Wall Matthews", "title": "Homage To Bach", "album": "Live on WFMU with Irene Trudel: April 14, 2014", "instrument": ["cello"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "106807_579840", "filepath": "data/openmic-2018/audio/106/106807_579840.ogg", "artist": "Music Factory", "title": "Music Factory 90", "album": "Music Factory", "instrument": ["violin"], "openmic_genres": ["Free-Folk", "Jazz: Out", "Improv"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "106933_57600", "filepath": "data/openmic-2018/audio/106/106933_57600.ogg", "artist": "Meaner Pencil", "title": "In July, In July", "album": "Live on WFMU with Irene - June 23, 2014", "instrument": ["cello", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "106935_134400", "filepath": "data/openmic-2018/audio/106/106935_134400.ogg", "artist": "Meaner Pencil", "title": "Bougie Lover", "album": "Live on WFMU with Irene - June 23, 2014", "instrument": ["cello", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "106938_157440", "filepath": "data/openmic-2018/audio/106/106938_157440.ogg", "artist": "Meaner Pencil", "title": "Prague Honeymoon", "album": "Live on WFMU with Irene - June 23, 2014", "instrument": ["cello", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "107509_176640", "filepath": "data/openmic-2018/audio/107/107509_176640.ogg", "artist": "Lovira", "title": "Birthday present", "album": "Experiments", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "107510_26880", "filepath": "data/openmic-2018/audio/107/107510_26880.ogg", "artist": "Lovira", "title": "Maio Maduro Maio", "album": "Experiments", "instrument": ["cello"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "107513_38400", "filepath": "data/openmic-2018/audio/107/107513_38400.ogg", "artist": "Lovira", "title": "Short one", "album": "Experiments", "instrument": ["violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "107862_57600", "filepath": "data/openmic-2018/audio/107/107862_57600.ogg", "artist": "Coldnoise", "title": "Remember", "album": "Who We Are", "instrument": ["cello", "piano"], "openmic_genres": ["Ambient", "Chill-out", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "108184_134400", "filepath": "data/openmic-2018/audio/108/108184_134400.ogg", "artist": "Pianochocolate", "title": "Pianochocolate - long long letter", "album": "Lilac Music", "instrument": ["cello", "piano"], "openmic_genres": ["Classical", "Ambient", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "108320_92160", "filepath": "data/openmic-2018/audio/108/108320_92160.ogg", "artist": "Ergo Phizmiz", "title": "Zauberung", "album": "Zauberung : A Billiards Reverie", "instrument": ["cello", "violin"], "openmic_genres": ["Soundtrack", "Experimental Pop"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "111117_30720", "filepath": "data/openmic-2018/audio/111/111117_30720.ogg", "artist": "Kevin MacLeod", "title": "For Originz", "album": "Thatched Villagers", "instrument": ["cello", "violin"], "openmic_genres": ["Soundtrack", "Ambient Electronic", "Unclassifiable"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "111120_26880", "filepath": "data/openmic-2018/audio/111/111120_26880.ogg", "artist": "Kevin MacLeod", "title": "Nu Flute", "album": "Thatched Villagers", "instrument": ["violin"], "openmic_genres": ["Soundtrack", "Ambient Electronic", "Unclassifiable"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "112693_119040", "filepath": "data/openmic-2018/audio/112/112693_119040.ogg", "artist": "Ian Alex Mac", "title": "The Working Day", "album": "Cues", "instrument": ["cello", "violin", "other instrument"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "112742_261120", "filepath": "data/openmic-2018/audio/112/112742_261120.ogg", "artist": "Wooden Ambulance", "title": "Hope Against Hope", "album": "Rough Charms", "instrument": ["cello", "other instrument"], "openmic_genres": ["Folk", "Freak-Folk", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "116549_49920", "filepath": "data/openmic-2018/audio/116/116549_49920.ogg", "artist": "Dexter Britain", "title": "Charge into 2015", "album": "Charge Into 2015", "instrument": ["cello", "violin"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "117090_26880", "filepath": "data/openmic-2018/audio/117/117090_26880.ogg", "artist": "Squire Tuck", "title": "Until The Bitter End", "album": "The Consequences of Others", "instrument": ["cello", "piano"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "118337_211200", "filepath": "data/openmic-2018/audio/118/118337_211200.ogg", "artist": "Kai Engel", "title": "Paranoia", "album": "Written in Ink", "instrument": ["cello"], "openmic_genres": ["Classical", "Ambient", "IDM"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "118341_157440", "filepath": "data/openmic-2018/audio/118/118341_157440.ogg", "artist": "Kai Engel", "title": "Rejecting the Sirens", "album": "Written in Ink", "instrument": ["cello", "violin"], "openmic_genres": ["Classical", "Ambient", "IDM"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "118607_76800", "filepath": "data/openmic-2018/audio/118/118607_76800.ogg", "artist": "Luciernaga", "title": "Wandering June", "album": "Tile II", "instrument": ["cello"], "openmic_genres": ["Drone", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "118898_15360", "filepath": "data/openmic-2018/audio/118/118898_15360.ogg", "artist": "Josh Spacek", "title": "Lullaby", "album": "Betrayal, Lies & Disaster", "instrument": ["violin", "other instrument"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "119395_65280", "filepath": "data/openmic-2018/audio/119/119395_65280.ogg", "artist": "Big City Orchestra", "title": "twiceshy", "album": "Boom Crash Crash", "instrument": ["cello"], "openmic_genres": ["Avant-Garde"], "genre": ["NA"], "tags": []}
{"sample_key": "119728_380160", "filepath": "data/openmic-2018/audio/119/119728_380160.ogg", "artist": "manuelgordiani.it - fabrizioab", "title": "HHH", "album": "medianti", "instrument": ["cello", "violin"], "openmic_genres": ["Electroacoustic"], "genre": ["instrumental"], "tags": []}
{"sample_key": "119775_0", "filepath": "data/openmic-2018/audio/119/119775_0.ogg", "artist": "Adam Selzer", "title": "Lifting Off Slowly", "album": "Production Music", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Americana", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "120224_115200", "filepath": "data/openmic-2018/audio/120/120224_115200.ogg", "artist": "Kai Engel", "title": "Shining Dawn", "album": "Atlantida", "instrument": ["cello", "piano", "violin"], "openmic_genres": ["Classical", "Soundtrack", "Ambient"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "120229_261120", "filepath": "data/openmic-2018/audio/120/120229_261120.ogg", "artist": "Kai Engel", "title": "Homeland's Ashes", "album": "Atlantida", "instrument": ["cello"], "openmic_genres": ["Classical", "Soundtrack", "Ambient"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "120230_107520", "filepath": "data/openmic-2018/audio/120/120230_107520.ogg", "artist": "Kai Engel", "title": "Will I Ever See Another Sunrise?", "album": "Atlantida", "instrument": ["cello", "violin"], "openmic_genres": ["Classical", "Soundtrack", "Ambient"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "120411_84480", "filepath": "data/openmic-2018/audio/120/120411_84480.ogg", "artist": "Onda bid\u00f3n", "title": "away", "album": "ligne bidon", "instrument": ["violin", "voice"], "openmic_genres": ["Lo-Fi", "Latin America", "Freak-Folk"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "120773_88320", "filepath": "data/openmic-2018/audio/120/120773_88320.ogg", "artist": "Aaron Mist", "title": "Revenge", "album": "Unnecessary City", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "120774_19200", "filepath": "data/openmic-2018/audio/120/120774_19200.ogg", "artist": "Aaron Mist", "title": "Be The Light", "album": "Unnecessary City", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "120778_149760", "filepath": "data/openmic-2018/audio/120/120778_149760.ogg", "artist": "Aaron Mist", "title": "Through the ages", "album": "Unnecessary City", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "120857_30720", "filepath": "data/openmic-2018/audio/120/120857_30720.ogg", "artist": "MIT Concert Choir", "title": "Der Sommer: Recit (Hanne): Wilkommen Jetzt, O Dunkler Hain", "album": "Haydn: The Seasons (Die Jahreszeiten)", "instrument": ["cello", "violin", "voice"], "openmic_genres": ["Classical", "Opera", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "121544_11520", "filepath": "data/openmic-2018/audio/121/121544_11520.ogg", "artist": "Teddy and Marge", "title": "Daisey Bell.", "album": "Making Eyes With,,,", "instrument": ["cello"], "openmic_genres": ["Old-Time / Historic", "Country & Western"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "122594_449280", "filepath": "data/openmic-2018/audio/122/122594_449280.ogg", "artist": "dadala", "title": "Oral Machinist Hedgerow", "album": "Hedgerows2", "instrument": ["acoustic guitar", "trumpet"], "openmic_genres": ["Improv"], "genre": ["NA"], "tags": []}
{"sample_key": "123485_103680", "filepath": "data/openmic-2018/audio/123/123485_103680.ogg", "artist": "Andrew Seistrup", "title": "Footsteps", "album": "Chapter One", "instrument": ["cello", "piano", "violin"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "124923_207360", "filepath": "data/openmic-2018/audio/124/124923_207360.ogg", "artist": "James William Hindle", "title": "(Masks)", "album": "James William Hindle", "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "124924_188160", "filepath": "data/openmic-2018/audio/124/124924_188160.ogg", "artist": "James William Hindle", "title": "Brooklyn Song", "album": "James William Hindle", "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "125070_65280", "filepath": "data/openmic-2018/audio/125/125070_65280.ogg", "artist": "Cagey House", "title": "she found him in 22", "album": "sometimes always never", "instrument": ["violin"], "openmic_genres": ["Pop", "Electronic", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "125204_107520", "filepath": "data/openmic-2018/audio/125/125204_107520.ogg", "artist": "Kai Engel", "title": "Heart and Mind", "album": "Idea", "instrument": ["flute", "piano"], "openmic_genres": ["Classical", "Soundtrack"], "genre": ["soundtrack", "cla"], "tags": []}
{"sample_key": "126903_295680", "filepath": "data/openmic-2018/audio/126/126903_295680.ogg", "artist": "The Gateless Gate", "title": "The Idea of North", "album": "Cold Front", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Post-Rock", "Krautrock", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "126979_84480", "filepath": "data/openmic-2018/audio/126/126979_84480.ogg", "artist": "Vio/Mire", "title": "Listening for Sounds", "album": "Maine songs", "instrument": ["cello", "piano"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "128630_176640", "filepath": "data/openmic-2018/audio/128/128630_176640.ogg", "artist": "Cloudjumper", "title": "Flight", "album": NaN, "instrument": ["violin"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "128655_3840", "filepath": "data/openmic-2018/audio/128/128655_3840.ogg", "artist": "Coldnoise", "title": "Good Night", "album": "Good Night", "instrument": ["cello"], "openmic_genres": ["Ambient", "Chill-out", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "128816_126720", "filepath": "data/openmic-2018/audio/128/128816_126720.ogg", "artist": "krackatoa", "title": "The big out there", "album": "The Big out there", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "129729_314880", "filepath": "data/openmic-2018/audio/129/129729_314880.ogg", "artist": "Song Machine", "title": "The One", "album": "Song Machine", "instrument": ["cello"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "130390_0", "filepath": "data/openmic-2018/audio/130/130390_0.ogg", "artist": "REW<<", "title": "The Lights in the Sands of Katumpkale (INSTRUMENTAL)", "album": "Olive Skinned, Silver Tongued Sirens Sing Swan Songs (INSTRUMENTAL)", "instrument": ["cello"], "openmic_genres": ["Classical", "Indie-Rock", "Instrumental"], "genre": ["instrumental", "pop_roc", "cla"], "tags": []}
{"sample_key": "131913_61440", "filepath": "data/openmic-2018/audio/131/131913_61440.ogg", "artist": "David Szesztay", "title": "Backyard", "album": "Cinematic", "instrument": ["cello", "violin"], "openmic_genres": ["Soundtrack", "Ambient", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "132239_88320", "filepath": "data/openmic-2018/audio/132/132239_88320.ogg", "artist": "Luno", "title": "Prelude (Stopping, Starting)", "album": "Across the Yellow Sky", "instrument": ["piano"], "openmic_genres": ["Indie-Rock", "Singer-Songwriter", "Shoegaze"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "132923_180480", "filepath": "data/openmic-2018/audio/132/132923_180480.ogg", "artist": "Blue Dot Sessions", "title": "Transit Chrysl", "album": "Glacier Quartet - Araby", "instrument": ["cello", "other instrument"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "134328_218880", "filepath": "data/openmic-2018/audio/134/134328_218880.ogg", "artist": "Hicham Chahidi", "title": "Genval", "album": NaN, "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "134329_46080", "filepath": "data/openmic-2018/audio/134/134329_46080.ogg", "artist": "Hicham Chahidi", "title": "Tendresse", "album": NaN, "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "134752_38400", "filepath": "data/openmic-2018/audio/134/134752_38400.ogg", "artist": "Laszlo Harsanyi", "title": "She must burn", "album": "Witchcraft", "instrument": ["cello"], "openmic_genres": ["Classical", "Ambient", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "134753_61440", "filepath": "data/openmic-2018/audio/134/134753_61440.ogg", "artist": "Laszlo Harsanyi", "title": "The weeping willow", "album": "Witchcraft", "instrument": ["cello"], "openmic_genres": ["Classical", "Ambient", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "134983_53760", "filepath": "data/openmic-2018/audio/134/134983_53760.ogg", "artist": "Gavin Gamboa", "title": "II. Scherzo", "album": "Anima extasis", "instrument": ["cello", "violin"], "openmic_genres": ["Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "135262_257280", "filepath": "data/openmic-2018/audio/135/135262_257280.ogg", "artist": "Kevin Kastning & Mark Wingfield", "title": "Improv no. 4", "album": "Live at WFMU on Irene Trudel's Show, 4/5/2016", "instrument": ["acoustic guitar", "trumpet"], "openmic_genres": ["Improv"], "genre": ["NA"], "tags": []}
{"sample_key": "135412_0", "filepath": "data/openmic-2018/audio/135/135412_0.ogg", "artist": "Ketsa", "title": "Hard sell", "album": "Universal Law", "instrument": ["cello", "piano"], "openmic_genres": ["Classical", "Soundtrack", "Ambient Electronic", "Downtempo"], "genre": ["soundtrack", "cla"], "tags": []}
{"sample_key": "137459_107520", "filepath": "data/openmic-2018/audio/137/137459_107520.ogg", "artist": "Elemental Noise", "title": "Helicoidal Time", "album": "The Curved Light", "instrument": ["cello"], "openmic_genres": ["Electronic", "Experimental", "Ambient Electronic"], "genre": ["instrumental"], "tags": []}
{"sample_key": "137781_15360", "filepath": "data/openmic-2018/audio/137/137781_15360.ogg", "artist": "Laszlo Harsanyi", "title": "Out from the Mist They Came", "album": "Viking Fury", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Experimental", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "138448_65280", "filepath": "data/openmic-2018/audio/138/138448_65280.ogg", "artist": "Mister Drey", "title": "Relationships seem to take the worst out of me", "album": "There is No \"Us\"", "instrument": ["cello"], "openmic_genres": ["Soul-RnB", "Post-Rock", "Ambient"], "genre": ["instrumental", "lat_sou", "pop_roc"], "tags": []}
{"sample_key": "139423_76800", "filepath": "data/openmic-2018/audio/139/139423_76800.ogg", "artist": "Blue Dot Session", "title": "The Elusive Word", "album": "K2", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "139974_34560", "filepath": "data/openmic-2018/audio/139/139974_34560.ogg", "artist": "Unheard Music Concepts", "title": "Afraid to Go", "album": "Harbour", "instrument": ["cello", "piano"], "openmic_genres": ["Modern Jazz", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "140941_7680", "filepath": "data/openmic-2018/audio/140/140941_7680.ogg", "artist": "Dexter Britain", "title": "Seven", "album": "Creative Commons Vol. 7", "instrument": ["cello"], "openmic_genres": ["Composed Music"], "genre": ["cla"], "tags": []}
{"sample_key": "140946_103680", "filepath": "data/openmic-2018/audio/140/140946_103680.ogg", "artist": "Dexter Britain", "title": "Juncture", "album": "Creative Commons Vol. 7", "instrument": ["cello", "violin"], "openmic_genres": ["Composed Music"], "genre": ["cla"], "tags": []}
{"sample_key": "141086_65280", "filepath": "data/openmic-2018/audio/141/141086_65280.ogg", "artist": "Blue Dot Sessions", "title": "The Air Escaping", "album": "K4", "instrument": ["cello", "other instrument"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "144964_88320", "filepath": "data/openmic-2018/audio/144/144964_88320.ogg", "artist": "MMFFF", "title": "Polychromatic Journey", "album": "The Dance of the Sky", "instrument": ["cello", "piano"], "openmic_genres": ["Easy Listening", "Soundtrack", "Instrumental"], "genre": ["instrumental", "pop_roc", "soundtrack"], "tags": []}
{"sample_key": "144970_3840", "filepath": "data/openmic-2018/audio/144/144970_3840.ogg", "artist": "MMFFF", "title": "Meeting the Demon", "album": "The Dance of the Sky", "instrument": ["cello", "other instrument"], "openmic_genres": ["Easy Listening", "Soundtrack", "Instrumental"], "genre": ["instrumental", "pop_roc", "soundtrack"], "tags": []}
{"sample_key": "145634_11520", "filepath": "data/openmic-2018/audio/145/145634_11520.ogg", "artist": "Komiku", "title": "Victory", "album": "It's time for adventure ! vol 2", "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Folk", "Soundtrack", "Experimental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "147081_142080", "filepath": "data/openmic-2018/audio/147/147081_142080.ogg", "artist": "Blue Dot Sessions", "title": "Pull Beyond Pull", "album": "K2", "instrument": ["cello", "violin"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "147274_222720", "filepath": "data/openmic-2018/audio/147/147274_222720.ogg", "artist": "Dana Boul\u00e9", "title": "Joie", "album": "We All Need To Calm Down", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "147751_622080", "filepath": "data/openmic-2018/audio/147/147751_622080.ogg", "artist": "Sobria Ebrietas", "title": "The Veil part 7", "album": "The Veil", "instrument": ["cello"], "openmic_genres": ["Experimental", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "147894_119040", "filepath": "data/openmic-2018/audio/147/147894_119040.ogg", "artist": "Ketsa", "title": "Follow the Course", "album": "End is Beginning", "instrument": ["cello"], "openmic_genres": ["Soundtrack", "Ambient Electronic", "Downtempo", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "147937_57600", "filepath": "data/openmic-2018/audio/147/147937_57600.ogg", "artist": "Pk jazz Collective", "title": "If You Be My Baby", "album": "Love's Secret", "instrument": ["electric guitar", "violin"], "openmic_genres": ["Psych-Rock", "Indie-Rock", "Lounge", "Downtempo"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "149143_99840", "filepath": "data/openmic-2018/audio/149/149143_99840.ogg", "artist": "Blue Dot Sessions", "title": "Celestial Navigation", "album": "Aeronaut", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "149180_30720", "filepath": "data/openmic-2018/audio/149/149180_30720.ogg", "artist": "Sobria Ebrietas", "title": "Happily Ever After part 2", "album": "Happily Ever After", "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "149717_115200", "filepath": "data/openmic-2018/audio/149/149717_115200.ogg", "artist": "Wayne Kinos", "title": "Dark November #2", "album": "Dark November", "instrument": ["cello"], "openmic_genres": ["Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "149719_7680", "filepath": "data/openmic-2018/audio/149/149719_7680.ogg", "artist": "Wayne Kinos", "title": "Dark November #4", "album": "Dark November", "instrument": ["cello"], "openmic_genres": ["Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "149861_314880", "filepath": "data/openmic-2018/audio/149/149861_314880.ogg", "artist": "Marwood Williams", "title": "Sing to the Ages", "album": "Waiting for the Rain", "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "150588_230400", "filepath": "data/openmic-2018/audio/150/150588_230400.ogg", "artist": "masato abe", "title": "fog in a dawn", "album": "[EPV_197] author", "instrument": ["violin"], "openmic_genres": ["Ambient Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "150593_46080", "filepath": "data/openmic-2018/audio/150/150593_46080.ogg", "artist": "masato abe", "title": "touch your breath", "album": "[EPV_197] author", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "151524_7680", "filepath": "data/openmic-2018/audio/151/151524_7680.ogg", "artist": "Kyle Preston", "title": "Below the Surface", "album": "Geo", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "151527_76800", "filepath": "data/openmic-2018/audio/151/151527_76800.ogg", "artist": "Kyle Preston", "title": "A Sea Change", "album": "Geo", "instrument": ["cello"], "openmic_genres": ["Ambient Electronic", "Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "151981_7680", "filepath": "data/openmic-2018/audio/151/151981_7680.ogg", "artist": "Concealed Sequence", "title": "C6+Ustep (Abjective mx)", "album": "Gimme A Minute", "instrument": ["cello"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "152559_46080", "filepath": "data/openmic-2018/audio/152/152559_46080.ogg", "artist": "Siddhartha", "title": "Victory of Buddha", "album": "Freedom", "instrument": ["cello", "piano"], "openmic_genres": ["New Age", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "152846_65280", "filepath": "data/openmic-2018/audio/152/152846_65280.ogg", "artist": "Maciej \u017bo\u0142nowski", "title": "Kwartet Japonski II", "album": "Kwartet Japonski I + II", "instrument": ["cello"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "153860_96000", "filepath": "data/openmic-2018/audio/153/153860_96000.ogg", "artist": "Hicham Chahidi", "title": "Convergence", "album": NaN, "instrument": ["violin"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "154765_126720", "filepath": "data/openmic-2018/audio/154/154765_126720.ogg", "artist": "Rocco Granata", "title": "Lost Memories", "album": "Works", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack", "Ambient", "Minimalism"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "154766_103680", "filepath": "data/openmic-2018/audio/154/154766_103680.ogg", "artist": "Rocco Granata", "title": "A Young Man", "album": "Works", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack", "Ambient", "Minimalism"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "154770_65280", "filepath": "data/openmic-2018/audio/154/154770_65280.ogg", "artist": "Rocco Granata", "title": "Without You", "album": "Works", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack", "Ambient", "Minimalism"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "154771_107520", "filepath": "data/openmic-2018/audio/154/154771_107520.ogg", "artist": "Rocco Granata", "title": "Lost Memories (piano and cello vrs)", "album": "Works", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack", "Ambient", "Minimalism"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "154968_34560", "filepath": "data/openmic-2018/audio/154/154968_34560.ogg", "artist": "Pavlina Roscakova and Denis Bango", "title": "Improvisation 2", "album": "VR(Y)T Improvisations", "instrument": ["cello", "piano"], "openmic_genres": ["Ambient", "Improv", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "155193_145920", "filepath": "data/openmic-2018/audio/155/155193_145920.ogg", "artist": "M\u200b.\u200bNomized And Midnight Moodswings", "title": "Sleep, Tired (sweet night mix)", "album": "The Surrogate Piano Reworks", "instrument": ["cello", "piano"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "000403_0", "filepath": "data/openmic-2018/audio/000/000403_0.ogg", "artist": "Borful Tang", "title": "Roach", "album": "split with Sunshine Militant Children's Hour", "instrument": ["clarinet"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "001211_119040", "filepath": "data/openmic-2018/audio/001/001211_119040.ogg", "artist": "Mr. Gutter", "title": "Track 07", "album": "Thee Haunted Cobblestone Sunset Concert Series #1", "instrument": ["clarinet"], "openmic_genres": ["Field Recordings"], "genre": ["instrumental"], "tags": []}
{"sample_key": "005955_1486080", "filepath": "data/openmic-2018/audio/005/005955_1486080.ogg", "artist": "Jeremiah Cymerman", "title": "Kerplunk!!!", "album": "Live at WFMU on The Long Rally 11/26/2008", "instrument": ["clarinet"], "openmic_genres": ["Jazz: Out"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "006967_23040", "filepath": "data/openmic-2018/audio/006/006967_23040.ogg", "artist": "Hat City Intuitive", "title": "Passionate conjugate chemistry", "album": "Live at WFMU on Stork's Show on 10/12/1997", "instrument": ["clarinet"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "010358_65280", "filepath": "data/openmic-2018/audio/010/010358_65280.ogg", "artist": "Eugene C. Rose and George Rubel", "title": "The butterfly", "album": "Edison Blue Amberol: 1870", "instrument": ["clarinet", "flute"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "010987_230400", "filepath": "data/openmic-2018/audio/010/010987_230400.ogg", "artist": "1,2,3,4", "title": "Doctor", "album": "Doctor", "instrument": ["saxophone"], "openmic_genres": ["Experimental", "Jazz: Out"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "012508_99840", "filepath": "data/openmic-2018/audio/012/012508_99840.ogg", "artist": "Big Blood", "title": "Satie (First Gnossienne)", "album": "Strange Maine 1.20.07", "instrument": ["clarinet", "acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "012979_449280", "filepath": "data/openmic-2018/audio/012/012979_449280.ogg", "artist": "Weasel Walter/Mary Halvorson/Peter Evans", "title": "Mystery", "album": "Live at WFMU on Scott McDowell's Show 5/13/09", "instrument": ["other instrument"], "openmic_genres": ["Jazz: Out", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "015056_34560", "filepath": "data/openmic-2018/audio/015/015056_34560.ogg", "artist": "Vladislav Makarov", "title": "641", "album": "Multiplying Real - Multicello", "instrument": ["cello"], "openmic_genres": ["Jazz: Out", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "019489_288000", "filepath": "data/openmic-2018/audio/019/019489_288000.ogg", "artist": "Ilia Belorukov", "title": "IX (for Philip Croaton)", "album": "Saxophone Solos vol.1", "instrument": ["saxophone"], "openmic_genres": ["Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "019674_15360", "filepath": "data/openmic-2018/audio/019/019674_15360.ogg", "artist": "Smokey Hormel", "title": "Sous les Tropiques", "album": "Smokey's Secret Family live at Barb\u00e9s on WFMU 9/19/2009", "instrument": ["clarinet", "electric guitar"], "openmic_genres": ["International", "African", "Brazilian"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "024721_506880", "filepath": "data/openmic-2018/audio/024/024721_506880.ogg", "artist": "Kadife", "title": "medley: Dardha Rrumbullake / Osmantaka / Lemza", "album": "Live at the Golden Festival, Jan 16 2010 (Kadife)", "instrument": ["clarinet", "other instrument"], "openmic_genres": ["Balkan", "Europe"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "028331_322560", "filepath": "data/openmic-2018/audio/028/028331_322560.ogg", "artist": "Blarvuster", "title": "Blind Piper's Obstinacy #1", "album": "Porter Records Showcase", "instrument": ["clarinet", "electric guitar"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "034340_69120", "filepath": "data/openmic-2018/audio/034/034340_69120.ogg", "artist": "Ergo Phizmiz and his Orchestra", "title": "Honour Roman Nip", "album": "plays Aphex Twin", "instrument": ["trumpet", "voice"], "openmic_genres": ["Lo-Fi", "Experimental Pop", "20th Century Classical", "IDM"], "genre": ["pop_roc", "cla"], "tags": []}
{"sample_key": "038570_145920", "filepath": "data/openmic-2018/audio/038/038570_145920.ogg", "artist": "Tinyfolk", "title": "Make it Rain", "album": "Black Bears", "instrument": ["trumpet"], "openmic_genres": ["Pop", "Folk", "Lo-Fi"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "041518_15360", "filepath": "data/openmic-2018/audio/041/041518_15360.ogg", "artist": "Francesco Lettera", "title": "The Wicked Witch", "album": "The Wizard of OZ", "instrument": ["clarinet"], "openmic_genres": ["Classical", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "042790_80640", "filepath": "data/openmic-2018/audio/042/042790_80640.ogg", "artist": "Julian Lynch", "title": "Untitled", "album": "Live at WFMU on Talk's Cheap, Jan 20th 2011", "instrument": ["clarinet"], "openmic_genres": ["International", "Drone", "Free-Folk"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "043698_115200", "filepath": "data/openmic-2018/audio/043/043698_115200.ogg", "artist": "MWE", "title": "Syrtos", "album": "MWE Demo", "instrument": ["other instrument"], "openmic_genres": ["Middle East", "Balkan", "Europe"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "043699_145920", "filepath": "data/openmic-2018/audio/043/043699_145920.ogg", "artist": "MWE", "title": "Varshaver", "album": "MWE Demo", "instrument": ["clarinet"], "openmic_genres": ["Middle East", "Balkan", "Europe"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "047064_0", "filepath": "data/openmic-2018/audio/047/047064_0.ogg", "artist": "The United States Army Old Guard Fife and Drum Corps", "title": "Boismortiers Concerto for Five Flutes No. 4, Mvt II. Allegro", "album": "Celebrating 50 Years", "instrument": ["flute"], "openmic_genres": ["Classical", "Americana"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "047576_241920", "filepath": "data/openmic-2018/audio/047/047576_241920.ogg", "artist": "Gosprom", "title": "Kofta Fata", "album": "20", "instrument": ["clarinet", "other instrument"], "openmic_genres": ["Jazz", "Experimental Pop", "Trip-Hop"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "047669_168960", "filepath": "data/openmic-2018/audio/047/047669_168960.ogg", "artist": "Ten Thousand Hours", "title": "Vinny Golia & James llgenfritz: Part II", "album": "Ten Thousand Hours Podcast 11: Vinny Golia", "instrument": ["clarinet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "050948_134400", "filepath": "data/openmic-2018/audio/050/050948_134400.ogg", "artist": "Kevin MacLeod", "title": "Amazing Grace 2011", "album": "Classical Sampler", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "051936_192000", "filepath": "data/openmic-2018/audio/051/051936_192000.ogg", "artist": "The Chris Kelsey 4", "title": "The Past is a Frightening Prospect", "album": "Not Cool ( \u2026 as in, \u201cThe Oppo\u00adsite of Paul Desmond\u201d)", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "052205_445440", "filepath": "data/openmic-2018/audio/052/052205_445440.ogg", "artist": "Mittimus", "title": "One Second in the History of the Universe", "album": "Antidote for Tragedy", "instrument": ["trumpet"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "052657_103680", "filepath": "data/openmic-2018/audio/052/052657_103680.ogg", "artist": "Jason Shaw", "title": "BIRD IN HAND", "album": "Audionautix: Acoustic", "instrument": ["clarinet", "acoustic guitar"], "openmic_genres": ["Country", "Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "054343_3840", "filepath": "data/openmic-2018/audio/054/054343_3840.ogg", "artist": "Digital Primitives", "title": "Walkabout", "album": "Hum crackle & pop", "instrument": ["clarinet"], "openmic_genres": ["Blues", "Modern Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "056114_99840", "filepath": "data/openmic-2018/audio/056/056114_99840.ogg", "artist": "The Freak Fandango Orchestra", "title": "Bublitzki", "album": "Live From WFMU's Transpacific Sound Paradise broadcast from Barb\u00e9s September 17, 2011", "instrument": ["violin", "other instrument"], "openmic_genres": ["International", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "056188_30720", "filepath": "data/openmic-2018/audio/056/056188_30720.ogg", "artist": "The Freak Fandango Orchestra", "title": "Balkan Beats", "album": "Tales Of A Dead Fish", "instrument": ["violin"], "openmic_genres": ["International", "Indie-Rock", "Balkan", "Romany (Gypsy)"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "057194_72960", "filepath": "data/openmic-2018/audio/057/057194_72960.ogg", "artist": "Senyawa", "title": "ABU", "album": "Live At Grub", "instrument": ["other instrument"], "openmic_genres": ["International", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "058714_0", "filepath": "data/openmic-2018/audio/058/058714_0.ogg", "artist": "James Kibbie", "title": "BWV 529: Trio Sonata V in C Major - 2. Largo", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["clarinet"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058965_15360", "filepath": "data/openmic-2018/audio/058/058965_15360.ogg", "artist": "James Kibbie", "title": "BWV 762: Vater unser im Himmelreich", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "064500_272640", "filepath": "data/openmic-2018/audio/064/064500_272640.ogg", "artist": "Kevin Kastning and Carl Clements", "title": "Untitled", "album": "Live at WFMU on Irene Trudel's Show April 30th 2012", "instrument": ["clarinet", "acoustic guitar"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "066710_1770240", "filepath": "data/openmic-2018/audio/066/066710_1770240.ogg", "artist": "WORM RADIOPLAYS", "title": "fatalistic flatworm", "album": "WORM RADIOPLAYS", "instrument": ["clarinet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "075706_7680", "filepath": "data/openmic-2018/audio/075/075706_7680.ogg", "artist": "Chad Crouch", "title": "Gymnopedie 3", "album": "Vol 4: Satie: Rearranged Furniture Music", "instrument": ["organ", "piano"], "openmic_genres": ["Classical", "20th Century Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "078281_115200", "filepath": "data/openmic-2018/audio/078/078281_115200.ogg", "artist": "The Dream Team", "title": "Les tr\u00e9fonds inexplor\u00e9s des signes (40)", "album": "Transient Series II.1: J\u00fcrg Frey: Unh\u00f6rbare Zeit", "instrument": ["clarinet"], "openmic_genres": ["Experimental", "Composed Music"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "081821_3840", "filepath": "data/openmic-2018/audio/081/081821_3840.ogg", "artist": "Podington Bear", "title": "Windy", "album": "Woodwinds", "instrument": ["clarinet", "flute"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "089958_249600", "filepath": "data/openmic-2018/audio/089/089958_249600.ogg", "artist": "S\u00e9bastien Branche", "title": "g", "album": "Classwar Karaoke - 0023 Survey", "instrument": ["clarinet"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "091874_11520", "filepath": "data/openmic-2018/audio/091/091874_11520.ogg", "artist": "Candlegravity", "title": "Aalborg Pulse", "album": "Kokoro No Toiki", "instrument": ["other instrument"], "openmic_genres": ["Electronic", "Post-Rock", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "096168_115200", "filepath": "data/openmic-2018/audio/096/096168_115200.ogg", "artist": "Sound: The Encounter", "title": "Song From South Of Iran", "album": "Live on WFMU's Transpacific Sound Paradise with Rob Weisberg - December 7, 2013", "instrument": ["other instrument"], "openmic_genres": ["International", "Middle East"], "genre": ["NA"], "tags": []}
{"sample_key": "096720_142080", "filepath": "data/openmic-2018/audio/096/096720_142080.ogg", "artist": "Soldier Kane", "title": "Hoagy's Groove", "album": "Live on WFMU with Irene Trudel - December 2, 2013", "instrument": ["violin"], "openmic_genres": ["Blues", "Experimental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "097628_952320", "filepath": "data/openmic-2018/audio/097/097628_952320.ogg", "artist": "Ravi Padmanabha and Arrington de Dionyso", "title": "Tabla and Bromiophone Improvisation", "album": "Snowstorm Ragas", "instrument": ["saxophone"], "openmic_genres": ["International", "Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "098643_149760", "filepath": "data/openmic-2018/audio/098/098643_149760.ogg", "artist": "Brazda", "title": "Tih Vyatur Vee", "album": "Live at the 2014 Golden Festival", "instrument": ["other instrument"], "openmic_genres": ["International", "Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "099128_26880", "filepath": "data/openmic-2018/audio/099/099128_26880.ogg", "artist": "Zikrayat", "title": "Ala Warag Il Ful", "album": "Live at the 2014 Golden Festival", "instrument": ["violin", "voice"], "openmic_genres": ["International", "Soundtrack", "Middle East"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "100755_218880", "filepath": "data/openmic-2018/audio/100/100755_218880.ogg", "artist": "Tim Brady", "title": "Frame 4 - Still", "album": NaN, "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "100756_345600", "filepath": "data/openmic-2018/audio/100/100756_345600.ogg", "artist": "Tim Brady", "title": "Canonic Strategies", "album": NaN, "instrument": ["clarinet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "104728_11520", "filepath": "data/openmic-2018/audio/104/104728_11520.ogg", "artist": "Ergo Phizmiz & Simon Simon", "title": "Bob the Builder", "album": "Live at Studio 54b", "instrument": ["other instrument"], "openmic_genres": ["Pop", "Power-Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "106363_88320", "filepath": "data/openmic-2018/audio/106/106363_88320.ogg", "artist": "Adriano Orru", "title": "chant", "album": "palimpsest", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "106685_453120", "filepath": "data/openmic-2018/audio/106/106685_453120.ogg", "artist": "Music Factory", "title": "Music Factory 11", "album": "Music Factory", "instrument": ["saxophone"], "openmic_genres": ["Free-Folk", "Jazz: Out", "Improv"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "106754_330240", "filepath": "data/openmic-2018/audio/106/106754_330240.ogg", "artist": "Music Factory", "title": "Music Factory 47", "album": "Music Factory", "instrument": ["clarinet", "violin"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "106785_1344000", "filepath": "data/openmic-2018/audio/106/106785_1344000.ogg", "artist": "Music Factory", "title": "Music Factory 68", "album": "Music Factory", "instrument": ["clarinet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "106796_529920", "filepath": "data/openmic-2018/audio/106/106796_529920.ogg", "artist": "Music Factory", "title": "Music Factory 79", "album": "Music Factory", "instrument": ["clarinet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "106812_1720320", "filepath": "data/openmic-2018/audio/106/106812_1720320.ogg", "artist": "Music Factory", "title": "Music Factory 95", "album": "Music Factory", "instrument": ["clarinet", "flute"], "openmic_genres": ["Free-Folk", "Jazz: Out", "Improv"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "109931_84480", "filepath": "data/openmic-2018/audio/109/109931_84480.ogg", "artist": "Kai Engel", "title": "Streets As Friends", "album": "Paradigm Lost", "instrument": ["piano", "trumpet"], "openmic_genres": ["Classical", "Soundtrack", "Ambient", "IDM"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "112297_445440", "filepath": "data/openmic-2018/audio/112/112297_445440.ogg", "artist": "The Underscore Orkestra", "title": "I'se a Muggin", "album": "The ExtraOrdinary Adventures of...", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Balkan", "Americana", "Big Band/Swing"], "genre": ["cou_fol", "jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "114383_272640", "filepath": "data/openmic-2018/audio/114/114383_272640.ogg", "artist": "Jahzzar", "title": "Flutter", "album": "Onus", "instrument": ["clarinet"], "openmic_genres": ["Pop", "Electronic", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "116765_188160", "filepath": "data/openmic-2018/audio/116/116765_188160.ogg", "artist": "Friction! (feat. Helia Claire Chardet)", "title": "Thru' The Wires", "album": "If You Turn Around You'll See Me", "instrument": ["other instrument"], "openmic_genres": ["Folk", "Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "117827_253440", "filepath": "data/openmic-2018/audio/117/117827_253440.ogg", "artist": "Unthunk", "title": "Diorama", "album": "Jumblesque", "instrument": ["clarinet", "voice"], "openmic_genres": ["Free-Folk", "Experimental Pop", "Chamber Music"], "genre": ["cou_fol", "pop_roc", "cla"], "tags": []}
{"sample_key": "120407_15360", "filepath": "data/openmic-2018/audio/120/120407_15360.ogg", "artist": "Art of Flying", "title": "the jaguar song", "album": "I'm Already Crying", "instrument": ["electric guitar", "trumpet"], "openmic_genres": ["Soundtrack", "Singer-Songwriter", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "131197_42240", "filepath": "data/openmic-2018/audio/131/131197_42240.ogg", "artist": "V~Nessy", "title": "Symphony De La Apple", "album": "Elsewhere", "instrument": ["cello", "clarinet"], "openmic_genres": ["House"], "genre": ["NA"], "tags": []}
{"sample_key": "133433_61440", "filepath": "data/openmic-2018/audio/133/133433_61440.ogg", "artist": "TRG Banks", "title": "Horse ride 1", "album": "Instrumentals", "instrument": ["clarinet", "piano"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "134141_142080", "filepath": "data/openmic-2018/audio/134/134141_142080.ogg", "artist": "owczarek caicedo ponsa trio", "title": "los falso profestas han estado invirtiendo por mucho tiempo lo justo y lo injusto, lo bueno y lo malo", "album": "owczarek caicedo ponsa", "instrument": ["clarinet", "electric guitar"], "openmic_genres": ["Jazz", "Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "134790_23040", "filepath": "data/openmic-2018/audio/134/134790_23040.ogg", "artist": "Pianochocolate", "title": "Analemma", "album": "Blueberry", "instrument": ["other instrument"], "openmic_genres": ["New Age", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "134946_115200", "filepath": "data/openmic-2018/audio/134/134946_115200.ogg", "artist": "Turku, Nomads of the Silk Road", "title": "Aksaray'in Taslari", "album": "\u00d6zlem", "instrument": ["other instrument"], "openmic_genres": ["International", "Turkish"], "genre": ["NA"], "tags": []}
{"sample_key": "139059_326400", "filepath": "data/openmic-2018/audio/139/139059_326400.ogg", "artist": "Alavedra, McColl, Levine", "title": "Meyerbeer - Hirtenlied", "album": "Voice, Clarinet, Fortepiano", "instrument": ["clarinet"], "openmic_genres": ["Classical", "Opera"], "genre": ["cla"], "tags": []}
{"sample_key": "139061_211200", "filepath": "data/openmic-2018/audio/139/139061_211200.ogg", "artist": "Alavedra, McColl, Levine", "title": "Spohr - Sechs Deutsche Lieder - Sei Still Mein Herz", "album": "Voice, Clarinet, Fortepiano", "instrument": ["clarinet", "voice"], "openmic_genres": ["Classical", "Opera"], "genre": ["cla"], "tags": []}
{"sample_key": "140840_92160", "filepath": "data/openmic-2018/audio/140/140840_92160.ogg", "artist": "Laszlo Harsanyi", "title": "La Bodeguita del Medio.mp3", "album": "Havana Heat", "instrument": ["trumpet"], "openmic_genres": ["Jazz", "Latin", "Instrumental"], "genre": ["instrumental", "jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "145865_384000", "filepath": "data/openmic-2018/audio/145/145865_384000.ogg", "artist": "cuicuitte (feat renoncule) / comme \u00e7a", "title": "Des animaux grignotent", "album": "Nous avons vu le Diable", "instrument": ["cello"], "openmic_genres": ["Folk", "Soundtrack", "Experimental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "148767_30720", "filepath": "data/openmic-2018/audio/148/148767_30720.ogg", "artist": "Unheard Music Concepts", "title": "Unforeseen Space", "album": "Home", "instrument": ["clarinet"], "openmic_genres": ["Jazz", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "151103_234240", "filepath": "data/openmic-2018/audio/151/151103_234240.ogg", "artist": "Balkan Fields", "title": "Jouane", "album": "Live at the 2017 Golden Festival", "instrument": ["voice", "other instrument"], "openmic_genres": ["International", "Folk", "Balkan"], "genre": ["cou_fol", "lat_sou"], "tags": []}
{"sample_key": "000411_30720", "filepath": "data/openmic-2018/audio/000/000411_30720.ogg", "artist": "Borful Tang", "title": "Orp", "album": "Root", "instrument": ["flute"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "004310_115200", "filepath": "data/openmic-2018/audio/004/004310_115200.ogg", "artist": "The Cynics", "title": "Yeah", "album": "Live at WFMU on Terre T's Show on 10/6/2007", "instrument": ["acoustic guitar", "other instrument"], "openmic_genres": ["Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "005044_184320", "filepath": "data/openmic-2018/audio/005/005044_184320.ogg", "artist": "Thomas Chalmers and Elizabeth Spencer", "title": "The star spangled banner", "album": "Edison Blue Amberol: 2652", "instrument": ["violin"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "006342_226560", "filepath": "data/openmic-2018/audio/006/006342_226560.ogg", "artist": "Zikrayat", "title": "Doulab Nahawand Murassaa", "album": "Zikrayat Live on WFMU from the 2009 Golden Festival in NYC", "instrument": ["flute", "violin"], "openmic_genres": ["International", "Middle East"], "genre": ["NA"], "tags": []}
{"sample_key": "007114_115200", "filepath": "data/openmic-2018/audio/007/007114_115200.ogg", "artist": "Projekt Karpaty Magiczne / Magic Carpathians", "title": "Mountains Above Clouds", "album": "Live at WFMU with Scott Williams on 3/16/2001", "instrument": ["flute", "acoustic guitar"], "openmic_genres": ["Psych-Folk", "Experimental", "Free-Jazz", "Europe"], "genre": ["cou_fol", "jaz_blu", "instrumental"], "tags": []}
{"sample_key": "017224_15360", "filepath": "data/openmic-2018/audio/017/017224_15360.ogg", "artist": "Jon Rose", "title": "Greg Kniston, Electric Guitar, Louis Burdett, Changing From Flute To Trumpet To Clarinet, Jon Rose, 19-String Violin", "album": "Fringe Benefits", "instrument": ["flute", "violin"], "openmic_genres": ["Avant-Garde", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "025357_34560", "filepath": "data/openmic-2018/audio/025/025357_34560.ogg", "artist": "Martha Moopette, Heather McCal", "title": "Edit 1", "album": "Hedgehogs and Honeybeads", "instrument": ["flute"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "025644_3840", "filepath": "data/openmic-2018/audio/025/025644_3840.ogg", "artist": "New Waver", "title": "Money for Lugging", "album": "Bohemian Suburb Rhapsody", "instrument": ["flute"], "openmic_genres": ["Comedy", "Nerdcore"], "genre": ["NA"], "tags": []}
{"sample_key": "028875_126720", "filepath": "data/openmic-2018/audio/028/028875_126720.ogg", "artist": "Chan Wai Fat", "title": "Wu Hwa Hong She (sung by Po Sun Yi)", "album": "Children of Soul Mountain (original soundtrack)", "instrument": ["flute", "other instrument"], "openmic_genres": ["Folk", "Soundtrack", "Asia-Far East"], "genre": ["cou_fol", "soundtrack"], "tags": []}
{"sample_key": "030977_34560", "filepath": "data/openmic-2018/audio/030/030977_34560.ogg", "artist": "Mombojo", "title": "Nem Parece", "album": "Nadadenovo", "instrument": ["flute", "voice"], "openmic_genres": ["International", "Pop", "Folk", "Brazilian"], "genre": ["cou_fol", "lat_sou", "pop_roc"], "tags": []}
{"sample_key": "035457_80640", "filepath": "data/openmic-2018/audio/035/035457_80640.ogg", "artist": "Zeptosound", "title": "Space + Light", "album": "Zeptosound", "instrument": ["flute", "piano"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "035896_57600", "filepath": "data/openmic-2018/audio/035/035896_57600.ogg", "artist": "Colonel Trip & Captain Future", "title": "Campfire on Bubble Mountain", "album": "Campfire on Bubble Mountain", "instrument": ["flute", "voice"], "openmic_genres": ["Lo-Fi", "Experimental Pop", "British Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "038444_234240", "filepath": "data/openmic-2018/audio/038/038444_234240.ogg", "artist": "Hanage Youchien", "title": "Untitled", "album": "Children Of Ganga", "instrument": ["flute"], "openmic_genres": ["Experimental", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "038446_49920", "filepath": "data/openmic-2018/audio/038/038446_49920.ogg", "artist": "Hanage Youchien", "title": "Untitled", "album": "Children Of Ganga", "instrument": ["flute"], "openmic_genres": ["Experimental", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "040921_49920", "filepath": "data/openmic-2018/audio/040/040921_49920.ogg", "artist": "Mopno", "title": "Pre", "album": "Dancehall", "instrument": ["clarinet"], "openmic_genres": ["Avant-Garde", "Musique Concrete"], "genre": ["cla"], "tags": []}
{"sample_key": "042443_99840", "filepath": "data/openmic-2018/audio/042/042443_99840.ogg", "artist": "univeria zekt", "title": "A3 Clementine", "album": "Unnamables", "instrument": ["flute", "acoustic guitar"], "openmic_genres": ["Progressive"], "genre": ["NA"], "tags": []}
{"sample_key": "042576_142080", "filepath": "data/openmic-2018/audio/042/042576_142080.ogg", "artist": "Entertainment for the Braindead", "title": "Hold/Break.", "album": "hypersomnia", "instrument": ["flute", "acoustic guitar"], "openmic_genres": ["Folk", "Experimental Pop", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "047049_30720", "filepath": "data/openmic-2018/audio/047/047049_30720.ogg", "artist": "The United States Army Old Guard Fife and Drum Corps", "title": "The Presidents March", "album": "Celebrating 50 Years", "instrument": ["flute"], "openmic_genres": ["Classical", "Americana"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "047053_46080", "filepath": "data/openmic-2018/audio/047/047053_46080.ogg", "artist": "The United States Army Old Guard Fife and Drum Corps", "title": "Soldiers Farewell Fanfare/Montezuma/March of War/Windsor Park....", "album": "Celebrating 50 Years", "instrument": ["flute"], "openmic_genres": ["Classical", "Americana"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "047776_134400", "filepath": "data/openmic-2018/audio/047/047776_134400.ogg", "artist": "Margaret Lancaster", "title": "Piker: Daughter of Piker", "album": "Piker: Daughter of Piker", "instrument": ["flute"], "openmic_genres": ["Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "049094_157440", "filepath": "data/openmic-2018/audio/049/049094_157440.ogg", "artist": "Piccola Orchestra Gagarin", "title": "Budim Zdarovi", "album": "Platos Combinados", "instrument": ["flute"], "openmic_genres": ["Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "057917_84480", "filepath": "data/openmic-2018/audio/057/057917_84480.ogg", "artist": "IKOS David Clifton with the choirs of Peterborough Cathedral", "title": "The Gloucestershire Wassail", "album": "Christmas Carols And Songs", "instrument": ["flute"], "openmic_genres": ["Choral Music", "Holiday"], "genre": ["cla"], "tags": []}
{"sample_key": "058901_61440", "filepath": "data/openmic-2018/audio/058/058901_61440.ogg", "artist": "James Kibbie", "title": "BWV 803: Duetto II", "album": "Bach Organ Works: Clavier\u00fcbung III", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059766_0", "filepath": "data/openmic-2018/audio/059/059766_0.ogg", "artist": "Jared C. Balogh", "title": "GIDDY GIDDY GADDY", "album": "Lunar Elegance", "instrument": ["other instrument"], "openmic_genres": ["Avant-Garde", "Jazz", "Classical", "Experimental", "Free-Jazz", "Composed Music"], "genre": ["jaz_blu", "instrumental", "cla"], "tags": []}
{"sample_key": "063152_49920", "filepath": "data/openmic-2018/audio/063/063152_49920.ogg", "artist": "Lucky Dragons", "title": "22", "album": "Relax in a Hurry", "instrument": ["flute"], "openmic_genres": ["Audio Collage", "Experimental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "063954_414720", "filepath": "data/openmic-2018/audio/063/063954_414720.ogg", "artist": "marina poleukhina", "title": "module of memory. EC-3941.folder #1.Copy 80006", "album": "lp1", "instrument": ["flute"], "openmic_genres": ["Experimental", "Improv", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "064442_15360", "filepath": "data/openmic-2018/audio/064/064442_15360.ogg", "artist": "Jared C. Balogh", "title": "THE BI+-POLARS OF JAZZ WITH HOT SAUCE", "album": "A Compilation From Compilations Of Compositions", "instrument": ["flute"], "openmic_genres": ["Jazz", "Classical", "Experimental", "Free-Jazz", "Composed Music"], "genre": ["jaz_blu", "instrumental", "cla"], "tags": []}
{"sample_key": "064976_230400", "filepath": "data/openmic-2018/audio/064/064976_230400.ogg", "artist": "Parallel Dream", "title": "Agata e le nuvole", "album": "La bambina che voleva volare", "instrument": ["flute"], "openmic_genres": ["Pop", "Electronic"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "065575_230400", "filepath": "data/openmic-2018/audio/065/065575_230400.ogg", "artist": "Paulo Chagas, Matthias Boss and Maresuke Okamoto", "title": "The Decay of the Ice Flower", "album": "Classwar Karaoke - 0018 Survey", "instrument": ["flute", "violin"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "069511_426240", "filepath": "data/openmic-2018/audio/069/069511_426240.ogg", "artist": "LIL Moonroom Sin Senal", "title": "Studnia", "album": "Classwar Karaoke - 0019 Survey", "instrument": ["flute"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "070304_122880", "filepath": "data/openmic-2018/audio/070/070304_122880.ogg", "artist": "Keshco", "title": "Bees (Everything Is Broken)", "album": "Bees", "instrument": ["flute", "acoustic guitar"], "openmic_genres": ["Pop", "Psych-Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "071826_637440", "filepath": "data/openmic-2018/audio/071/071826_637440.ogg", "artist": "Daniel Barbiero", "title": "Eighteen Events for Double Bass", "album": "Not One Nor", "instrument": ["flute"], "openmic_genres": ["Avant-Garde", "Free-Jazz", "Contemporary Classical"], "genre": ["jaz_blu", "cla"], "tags": []}
{"sample_key": "073764_119040", "filepath": "data/openmic-2018/audio/073/073764_119040.ogg", "artist": "Usta", "title": "Ba\u0144ka mydlana", "album": "#CC-10 Europe Mixtape", "instrument": ["saxophone"], "openmic_genres": ["Europe"], "genre": ["NA"], "tags": []}
{"sample_key": "073912_299520", "filepath": "data/openmic-2018/audio/073/073912_299520.ogg", "artist": "YuTaNi", "title": "Apples To Oranges", "album": "Elohei", "instrument": ["flute", "other instrument"], "openmic_genres": ["Hip-Hop", "Ambient Electronic", "Garage"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "074090_122880", "filepath": "data/openmic-2018/audio/074/074090_122880.ogg", "artist": "Curtis Brand", "title": "Older Than Dirt", "album": "Entries", "instrument": ["acoustic guitar", "piano", "other instrument"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "074255_3840", "filepath": "data/openmic-2018/audio/074/074255_3840.ogg", "artist": "Source Of Yellow", "title": "So Long To Folk Dance Again", "album": "Live on WFMU's The Long Rally with Scott McDowell - December 7, 2012", "instrument": ["flute"], "openmic_genres": ["Rock", "Ambient Electronic", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "080146_449280", "filepath": "data/openmic-2018/audio/080/080146_449280.ogg", "artist": "Mons Jacet", "title": "Funeral Jazz", "album": "Endpieces", "instrument": ["flute", "piano"], "openmic_genres": ["Jazz", "Electronic", "Experimental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "080765_15360", "filepath": "data/openmic-2018/audio/080/080765_15360.ogg", "artist": "Rozsa has become... Mad\u00e1rka", "title": "Fa Nye Mama (Romanian)", "album": "Live at the 2013 Golden Festival", "instrument": ["flute"], "openmic_genres": ["Europe", "Romany (Gypsy)", "Klezmer"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "081053_76800", "filepath": "data/openmic-2018/audio/081/081053_76800.ogg", "artist": "Soni Ventorum Wind Quintet", "title": "Danzi: Wind Quintet Op 67 No 2 In E Minor, 1 Allego Vivo", "album": "Franz Danzi: Wind Quintet Opus 67, Nos. 2-3", "instrument": ["flute"], "openmic_genres": ["Classical", "Chamber Music"], "genre": ["cla"], "tags": []}
{"sample_key": "081813_3840", "filepath": "data/openmic-2018/audio/081/081813_3840.ogg", "artist": "Podington Bear", "title": "Aria Area", "album": "Woodwinds", "instrument": ["clarinet", "flute"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "085605_142080", "filepath": "data/openmic-2018/audio/085/085605_142080.ogg", "artist": "dOISsEMIcIRCUITOSiNVERTIDOS", "title": "Live at Audit\u00f3rio Carlos Paredes 27/03/2013 part03", "album": "Live @ Audit\u00f3rio Carlos Paredes 27/03/2013", "instrument": ["flute"], "openmic_genres": ["Jazz", "Noise", "Experimental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "089593_1785600", "filepath": "data/openmic-2018/audio/089/089593_1785600.ogg", "artist": "Keir Neuringer", "title": "untitled improvisation", "album": "Live on WFMU's Gateway to Joy with Donna - July 29th, 2013", "instrument": ["saxophone"], "openmic_genres": ["Spoken", "Experimental", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "091178_76800", "filepath": "data/openmic-2018/audio/091/091178_76800.ogg", "artist": "Aislinn", "title": "Toss the feathers - Otter's holt", "album": "Aislinn", "instrument": ["flute", "acoustic guitar"], "openmic_genres": ["Celtic"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "091383_168960", "filepath": "data/openmic-2018/audio/091/091383_168960.ogg", "artist": "Uniform Motion", "title": "I Was Crushed By A Forty-Foot Man", "album": "One Frame Per Second", "instrument": ["flute", "acoustic guitar", "voice"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "093082_168960", "filepath": "data/openmic-2018/audio/093/093082_168960.ogg", "artist": "Daniele Pasini, Raffaele Pilia", "title": "My\u0301vatn", "album": "Northern Lights", "instrument": ["flute"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "106755_840960", "filepath": "data/openmic-2018/audio/106/106755_840960.ogg", "artist": "Music Factory", "title": "Music Factory 48", "album": "Music Factory", "instrument": ["flute"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "107949_199680", "filepath": "data/openmic-2018/audio/107/107949_199680.ogg", "artist": "Mam\u00e1 Patxanga", "title": "Miralo bien", "album": "Aliwbili", "instrument": ["flute", "saxophone"], "openmic_genres": ["Latin"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "108544_57600", "filepath": "data/openmic-2018/audio/108/108544_57600.ogg", "artist": "Fabian Measures", "title": "Feels Like Home", "album": "Emotion Music", "instrument": ["other instrument"], "openmic_genres": ["Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "110608_38400", "filepath": "data/openmic-2018/audio/110/110608_38400.ogg", "artist": "Ergo Phizmiz", "title": "Music for Snowmen", "album": "Emotional Freedom", "instrument": ["flute"], "openmic_genres": ["Soundtrack", "Radio Art", "Experimental Pop"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "115663_38400", "filepath": "data/openmic-2018/audio/115/115663_38400.ogg", "artist": "The Mind Orchestra", "title": "Nomad", "album": "Devoured by the Comfort Zone", "instrument": ["flute", "acoustic guitar", "other instrument"], "openmic_genres": ["Folk", "New Age"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "118585_794880", "filepath": "data/openmic-2018/audio/118/118585_794880.ogg", "artist": "The Mothership Collective", "title": "Side A", "album": "All Nigga Radio", "instrument": ["other instrument"], "openmic_genres": ["Funk", "Hip-Hop", "Experimental"], "genre": ["instrumental", "lat_sou"], "tags": []}
{"sample_key": "118737_76800", "filepath": "data/openmic-2018/audio/118/118737_76800.ogg", "artist": "The Golden Dawn", "title": "The Outcast", "album": "Changes In Mind", "instrument": ["flute"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "121400_0", "filepath": "data/openmic-2018/audio/121/121400_0.ogg", "artist": "Ketsa", "title": "grasping", "album": "Goodnight Sunlight", "instrument": ["flute", "piano"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient Electronic"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "122216_7680", "filepath": "data/openmic-2018/audio/122/122216_7680.ogg", "artist": "Tab & Anitek", "title": "Sympethizer", "album": "Luna", "instrument": ["flute"], "openmic_genres": ["Hip-Hop", "Trip-Hop", "Downtempo"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "125849_46080", "filepath": "data/openmic-2018/audio/125/125849_46080.ogg", "artist": "Crossworlds", "title": "Searching For You [Side: Day]", "album": "Day & Night", "instrument": ["voice"], "openmic_genres": ["Folk", "Experimental Pop", "Downtempo"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "128296_99840", "filepath": "data/openmic-2018/audio/128/128296_99840.ogg", "artist": "Robert Tilly & Wooden Ambulance", "title": "Listen To The Oldman", "album": "Northern Sadness", "instrument": ["piano", "violin", "voice"], "openmic_genres": ["Folk", "Country & Western"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "128773_560640", "filepath": "data/openmic-2018/audio/128/128773_560640.ogg", "artist": "Das Kabinett", "title": "Episode 2", "album": "The FMA Sessions", "instrument": ["saxophone"], "openmic_genres": ["Radio Art", "Unclassifiable", "Sound Collage"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "132269_7680", "filepath": "data/openmic-2018/audio/132/132269_7680.ogg", "artist": "DBPIT - Kenji Siratori", "title": "id03-dbpit kenjisiratori", "album": "Outerlarvas", "instrument": ["other instrument"], "openmic_genres": ["Electronic", "Noise", "Sound Art"], "genre": ["instrumental"], "tags": []}
{"sample_key": "132594_38400", "filepath": "data/openmic-2018/audio/132/132594_38400.ogg", "artist": "pat moonchy and angelo contini", "title": "sal", "album": "durga puja", "instrument": ["trumpet", "voice"], "openmic_genres": ["Experimental", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "134749_15360", "filepath": "data/openmic-2018/audio/134/134749_15360.ogg", "artist": "Laszlo Harsanyi", "title": "Through the haunted woods", "album": "Witchcraft", "instrument": ["flute"], "openmic_genres": ["Classical", "Ambient", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "137525_134400", "filepath": "data/openmic-2018/audio/137/137525_134400.ogg", "artist": "TALES", "title": "Secret Way of Okhaldhunga", "album": "Sagarmatha", "instrument": ["flute"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient Electronic"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "137577_26880", "filepath": "data/openmic-2018/audio/137/137577_26880.ogg", "artist": "Dyslexic Fudgicle", "title": "Horus", "album": "Dyslexic Fudgicle - 2015 Release", "instrument": ["flute"], "openmic_genres": ["Metal", "Death-Metal", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "138363_88320", "filepath": "data/openmic-2018/audio/138/138363_88320.ogg", "artist": "Wayne Kinos", "title": "Palm Sunday Syndrome", "album": "Sunday Syndrome", "instrument": ["flute", "piano"], "openmic_genres": ["Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "139190_49920", "filepath": "data/openmic-2018/audio/139/139190_49920.ogg", "artist": "Leon Lishner and Friends", "title": "La Comagnola. Ah, Ca Ira (Italy)", "album": "Songs For The Dawn Of Peace", "instrument": ["flute", "piano", "voice"], "openmic_genres": ["Folk", "Opera"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "141316_145920", "filepath": "data/openmic-2018/audio/141/141316_145920.ogg", "artist": "Htoo Trio", "title": "Have you kicked a dead horse today", "album": "Htoo Trio: 2nd album", "instrument": ["flute"], "openmic_genres": ["Avant-Garde", "Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "145917_65280", "filepath": "data/openmic-2018/audio/145/145917_65280.ogg", "artist": "H-LR", "title": "Paradigmatic (Reprise)", "album": "End of the Line", "instrument": ["flute"], "openmic_genres": ["Electronic", "IDM"], "genre": ["NA"], "tags": []}
{"sample_key": "147204_38400", "filepath": "data/openmic-2018/audio/147/147204_38400.ogg", "artist": "Musick's Recreation. Milena Cord-to-Krax", "title": "Allemande (BWV 995)", "album": "Una Reverencia a Bach", "instrument": ["cello", "flute", "other instrument"], "openmic_genres": ["Classical", "Chamber Music", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "147205_72960", "filepath": "data/openmic-2018/audio/147/147205_72960.ogg", "artist": "Musick's Recreation. Milena Cord-to-Krax", "title": "Courante (BWV 995)", "album": "Una Reverencia a Bach", "instrument": ["flute"], "openmic_genres": ["Classical", "Chamber Music", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "147206_145920", "filepath": "data/openmic-2018/audio/147/147206_145920.ogg", "artist": "Musick's Recreation. Milena Cord-to-Krax", "title": "Sarabande (BWV 995)", "album": "Una Reverencia a Bach", "instrument": ["flute"], "openmic_genres": ["Classical", "Chamber Music", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "152275_103680", "filepath": "data/openmic-2018/audio/152/152275_103680.ogg", "artist": "Trans Atlantic Rage", "title": "The Big Pearly Crookid Teeth", "album": "Sincerity Is The Key", "instrument": ["flute", "voice"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "153397_253440", "filepath": "data/openmic-2018/audio/153/153397_253440.ogg", "artist": "Downbeat", "title": "Black Panthers", "album": "Introspeccio\u0301n", "instrument": ["flute", "electric guitar"], "openmic_genres": ["Reggae - Dub", "Chill-out"], "genre": ["NA"], "tags": []}
{"sample_key": "001383_134400", "filepath": "data/openmic-2018/audio/001/001383_134400.ogg", "artist": "Parsley Flakes", "title": "Remember, Forget", "album": "Parsley Flakes mp3s", "instrument": ["electric guitar"], "openmic_genres": ["Electro-Punk"], "genre": ["NA"], "tags": []}
{"sample_key": "003522_195840", "filepath": "data/openmic-2018/audio/003/003522_195840.ogg", "artist": "Country Teasers", "title": "It Is My Duty", "album": "Live at WFMU on Brian Turner's Show on 6/27/2006", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "003553_560640", "filepath": "data/openmic-2018/audio/003/003553_560640.ogg", "artist": "DMBQ", "title": "Part 3", "album": "Live at WFMU on Joe Belock's Show on 4/12/2005", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "003710_126720", "filepath": "data/openmic-2018/audio/003/003710_126720.ogg", "artist": "Ignatz", "title": "Rise and Fall", "album": "Live at WFMU on Brian Turner's Show on 6/10/2008", "instrument": ["electric guitar"], "openmic_genres": ["Blues"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "003769_11520", "filepath": "data/openmic-2018/audio/003/003769_11520.ogg", "artist": "Kurt Vile", "title": "Space Forklift", "album": "Live at WFMU on Talk's Cheap 8/11/2008", "instrument": ["acoustic guitar"], "openmic_genres": ["Pop", "Rock", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "003905_280320", "filepath": "data/openmic-2018/audio/003/003905_280320.ogg", "artist": "Michael Chapman", "title": "Twisted Road", "album": "Live at WFMU on Irene Trudel's Show on 10/13/2008", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "003910_280320", "filepath": "data/openmic-2018/audio/003/003910_280320.ogg", "artist": "Michael Chapman", "title": "Kodak Ghosts", "album": "Live at WFMU on Hatch's Show on 12/12/2005", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "003913_23040", "filepath": "data/openmic-2018/audio/003/003913_23040.ogg", "artist": "Michael Chapman", "title": "Memhpis in Winter", "album": "Live at WFMU on Hatch's Show on 12/12/2005", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "004066_234240", "filepath": "data/openmic-2018/audio/004/004066_234240.ogg", "artist": "Peter Walker", "title": "Soleade", "album": "Live at WFMU on Irene Trudel's Show on 6/9/2008", "instrument": ["acoustic guitar"], "openmic_genres": ["Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "004201_7680", "filepath": "data/openmic-2018/audio/004/004201_7680.ogg", "artist": "Sic Alps", "title": "Semi-Streets", "album": "Live at WFMU on Brian Turner's Show on 11/6/2007", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "004366_3840", "filepath": "data/openmic-2018/audio/004/004366_3840.ogg", "artist": "Means", "title": "Primitive", "album": "Live at WFMU on Cherry Blossom Clinic with Terre T's Show on 11/15/2002", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "004709_234240", "filepath": "data/openmic-2018/audio/004/004709_234240.ogg", "artist": "Wooden Shjips", "title": "I Hear The Vibrations (live at ATP-NY '08)", "album": "Wooden Shjips Live at ATP NY 2008", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "004836_203520", "filepath": "data/openmic-2018/audio/004/004836_203520.ogg", "artist": "Peelander-Z", "title": "Panda Punk Tongue", "album": "Live at WFMU on The Cherry Blossom Clinic 6/21/2002", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "005159_149760", "filepath": "data/openmic-2018/audio/005/005159_149760.ogg", "artist": "Peter Biedermann", "title": "Christiania", "album": "Live at WFMU 5/5/08 on Irene Trudel's show", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "005406_0", "filepath": "data/openmic-2018/audio/005/005406_0.ogg", "artist": "Thomas Function", "title": "Hope You Die", "album": "Live at WFMU on The Evan Funk Davies show 1/27/2009", "instrument": ["electric guitar"], "openmic_genres": ["Punk", "Power-Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "005923_3840", "filepath": "data/openmic-2018/audio/005/005923_3840.ogg", "artist": "Cheetah Chrome", "title": "Love Song To Death", "album": "Live at WFMU on Diane's Show 2/5/09", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "006529_172800", "filepath": "data/openmic-2018/audio/006/006529_172800.ogg", "artist": "Schocholautte", "title": "Mario History/Spin The Bottle", "album": "Live at WFMU on Keili's Show 2/15/09", "instrument": ["electric guitar"], "openmic_genres": ["Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "007069_11520", "filepath": "data/openmic-2018/audio/007/007069_11520.ogg", "artist": "Tough Darts!", "title": "Nuclear Waste", "album": "Live at WFMU on Pat Duncan's show 2/12/2009", "instrument": ["electric guitar"], "openmic_genres": ["Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "007122_218880", "filepath": "data/openmic-2018/audio/007/007122_218880.ogg", "artist": "P.G. Six", "title": "Cover Art/Curragh of Kildare", "album": "Live at WFMU on Irene Trudel's Show on 6/21/2001", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "007493_464640", "filepath": "data/openmic-2018/audio/007/007493_464640.ogg", "artist": "Homosexuals", "title": "(full set)", "album": "Live at WFMU's SXSW Showcase at Spiro's in Austin, TX on 3/14/2008", "instrument": ["electric guitar"], "openmic_genres": ["Post-Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "007837_42240", "filepath": "data/openmic-2018/audio/007/007837_42240.ogg", "artist": "The Boardlords", "title": "100 MPH", "album": "Live at WFMU on Pat Duncan's Show on 11/13/2008", "instrument": ["electric guitar"], "openmic_genres": ["Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "008908_61440", "filepath": "data/openmic-2018/audio/008/008908_61440.ogg", "artist": "Hayvanlar Alemi", "title": "Karpuzkafa 777", "album": "666", "instrument": ["electric guitar"], "openmic_genres": ["International", "Psych-Rock", "Rockabilly"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "008928_30720", "filepath": "data/openmic-2018/audio/008/008928_30720.ogg", "artist": "Lettuce Prey", "title": "Why She Cried", "album": "Phoning It In 03/09/05", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Lo-Fi", "Psych-Folk", "Freak-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "008985_3840", "filepath": "data/openmic-2018/audio/008/008985_3840.ogg", "artist": "Colin Clary", "title": "The Whole Weekend To Go", "album": "Phoning It In 05/03/05", "instrument": ["electric guitar"], "openmic_genres": ["Pop", "Lo-Fi"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "009468_261120", "filepath": "data/openmic-2018/audio/009/009468_261120.ogg", "artist": "Peter Walker with Jack Rose", "title": "live dublab \"sprout session\" (11.19.06)", "album": "live on dublab 11.19.06", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Flamenco"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "009474_579840", "filepath": "data/openmic-2018/audio/009/009474_579840.ogg", "artist": "Erlend Oye", "title": "dublab VisionVersion sounds", "album": "dublab VisionVersion sounds 09.11.08", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "009978_426240", "filepath": "data/openmic-2018/audio/009/009978_426240.ogg", "artist": "Mount Eerie", "title": "Phoning It In 02/09/05", "album": "Phoning It In 02/09/05", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Experimental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "010476_23040", "filepath": "data/openmic-2018/audio/010/010476_23040.ogg", "artist": "Thee Moths", "title": "Don't Let The Crows Take Your Sight", "album": "Phoning It In 05/19/05", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Lo-Fi", "British Folk", "Musique Concrete"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "010995_184320", "filepath": "data/openmic-2018/audio/010/010995_184320.ogg", "artist": "Spheriot", "title": "Aufmarsch der Lemminge", "album": "Bekennerschreiben", "instrument": ["electric guitar"], "openmic_genres": ["Pop", "Indie-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "011092_0", "filepath": "data/openmic-2018/audio/011/011092_0.ogg", "artist": "The Observers", "title": "Slipping Away", "album": "The Observers Live on KBOO", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "011455_3840", "filepath": "data/openmic-2018/audio/011/011455_3840.ogg", "artist": "Obits", "title": "Back And Forth (live at Cake Shop, 2008)", "album": "Live at Cake Shop 1/12/2008", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "011686_46080", "filepath": "data/openmic-2018/audio/011/011686_46080.ogg", "artist": "Matt Keating", "title": "Go Down", "album": "Live at WFMU with Irene Trudel 4/20/2009", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "012125_88320", "filepath": "data/openmic-2018/audio/012/012125_88320.ogg", "artist": "The Flat Can Co.", "title": "Shot With Half A Bullet", "album": NaN, "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "012423_226560", "filepath": "data/openmic-2018/audio/012/012423_226560.ogg", "artist": "Night Gallery", "title": "Sara", "album": "Live at WFMU on Pat Duncan's Show 1/22/09", "instrument": ["electric guitar"], "openmic_genres": ["Goth"], "genre": ["NA"], "tags": []}
{"sample_key": "012451_142080", "filepath": "data/openmic-2018/audio/012/012451_142080.ogg", "artist": "Wizzard Sleeve", "title": "High Bugs", "album": "Live at WFMU on Michael Goodstein's Show 5/2/09", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Psych-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "012470_387840", "filepath": "data/openmic-2018/audio/012/012470_387840.ogg", "artist": "Greg Ashley", "title": "Down With Jesus", "album": "Live at WFMU on Three Chord Monte 5/12/09", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "013538_15360", "filepath": "data/openmic-2018/audio/013/013538_15360.ogg", "artist": "Abdoulaye Alhassane Tour\u00e9", "title": "Kurbu", "album": "Live With Banning Eyre at WFMU on Transpacific Sound Paradise 5/19/09", "instrument": ["acoustic guitar"], "openmic_genres": ["North African"], "genre": ["NA"], "tags": []}
{"sample_key": "014472_65280", "filepath": "data/openmic-2018/audio/014/014472_65280.ogg", "artist": "Blek Ink", "title": "Flag", "album": "Live at WFMU on Douglas Wolk's Show on 12/7/2000", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Experimental Pop", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "014531_107520", "filepath": "data/openmic-2018/audio/014/014531_107520.ogg", "artist": "dmyra", "title": "Mother Natures Sun", "album": "Love in the Air", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Folk", "Psych-Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "014661_184320", "filepath": "data/openmic-2018/audio/014/014661_184320.ogg", "artist": "Jonathan Coulton", "title": "Re: Your Brains", "album": "JoCo Looks Back", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "016354_168960", "filepath": "data/openmic-2018/audio/016/016354_168960.ogg", "artist": "Michael Gira", "title": "Rose of Los Angeles", "album": "I Am Singing to You From My Room", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "017413_203520", "filepath": "data/openmic-2018/audio/017/017413_203520.ogg", "artist": "Theo Angell", "title": "Bye Gone", "album": "Live at WFMU's Day for Night with Maria Levitsky on 07/22/09", "instrument": ["acoustic guitar"], "openmic_genres": ["Psych-Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "017420_115200", "filepath": "data/openmic-2018/audio/017/017420_115200.ogg", "artist": "Theo Angell", "title": "New Instrumental (untitled as of now)", "album": "Live at WFMU's Day for Night with Maria Levitsky on 07/22/09", "instrument": ["acoustic guitar"], "openmic_genres": ["Psych-Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "017834_172800", "filepath": "data/openmic-2018/audio/017/017834_172800.ogg", "artist": "Joe Pernice", "title": "How Can I Compare", "album": "Live at WFMU on Pseu Braun's show 8/7/2009", "instrument": ["acoustic guitar"], "openmic_genres": ["Pop", "Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "019351_72960", "filepath": "data/openmic-2018/audio/019/019351_72960.ogg", "artist": "Kraus", "title": "Strangers in the Night", "album": "The Facts", "instrument": ["acoustic guitar"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "019383_49920", "filepath": "data/openmic-2018/audio/019/019383_49920.ogg", "artist": "Chris Brokaw", "title": "Anyway", "album": "Live at ISSUE Project Room 9/29/2009", "instrument": ["electric guitar"], "openmic_genres": ["Spoken"], "genre": ["NA"], "tags": []}
{"sample_key": "019737_92160", "filepath": "data/openmic-2018/audio/019/019737_92160.ogg", "artist": "Kowloon Walled City", "title": "Clockwork", "album": "Gambling on the Richter Scale", "instrument": ["electric guitar"], "openmic_genres": ["Metal", "Noise-Rock", "Sludge"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "019790_38400", "filepath": "data/openmic-2018/audio/019/019790_38400.ogg", "artist": "Liturgy", "title": "Mysterium", "album": "Live on My Castle of Quiet, 14th October 2009", "instrument": ["electric guitar"], "openmic_genres": ["Progressive", "Black-Metal"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "020008_483840", "filepath": "data/openmic-2018/audio/020/020008_483840.ogg", "artist": "Marianne Nowottny", "title": "Phoning It In 06/25/05", "album": "Phoning It In 06/25/05", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk", "Lo-Fi", "Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "020102_72960", "filepath": "data/openmic-2018/audio/020/020102_72960.ogg", "artist": "Picastro", "title": "No Contest", "album": "Phoning It In 10/05/05", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "020107_111360", "filepath": "data/openmic-2018/audio/020/020107_111360.ogg", "artist": "Picastro", "title": "Phoning It In 10 05 05", "album": "Phoning It In 10/05/05", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "021115_38400", "filepath": "data/openmic-2018/audio/021/021115_38400.ogg", "artist": "Kelly Slusher", "title": "Wined & Dined", "album": "The Lovely Leave", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "022216_107520", "filepath": "data/openmic-2018/audio/022/022216_107520.ogg", "artist": "The 'Mericans", "title": "Charlotte", "album": "Phoning It In 10/19/06", "instrument": ["electric guitar", "other instrument"], "openmic_genres": ["Country", "Folk", "Lo-Fi", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "022360_76800", "filepath": "data/openmic-2018/audio/022/022360_76800.ogg", "artist": "Zombie Prom Queen", "title": "Leavin' Man", "album": "Stone Cold and Gray", "instrument": ["electric guitar"], "openmic_genres": ["Blues", "Rock", "Lo-Fi"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "022419_468480", "filepath": "data/openmic-2018/audio/022/022419_468480.ogg", "artist": "Spider", "title": "Phoning It In 06/14/07", "album": "Phoning It In 06/14/07", "instrument": ["electric guitar", "violin"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "022421_203520", "filepath": "data/openmic-2018/audio/022/022421_203520.ogg", "artist": "Spider", "title": "The Ballad Of Clementine Jones", "album": "Phoning It In 06/14/07", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "022889_153600", "filepath": "data/openmic-2018/audio/022/022889_153600.ogg", "artist": "Bear is Driving", "title": "A Symptomatic Approach to Wellness", "album": "Underground Epiphanies at High Speed Prove Fatal", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Experimental", "Progressive"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "023277_23040", "filepath": "data/openmic-2018/audio/023/023277_23040.ogg", "artist": "Gillicuddy", "title": "Sme. Li. Co.", "album": "The Yaouhl! Mashups", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "023900_53760", "filepath": "data/openmic-2018/audio/023/023900_53760.ogg", "artist": "Virgin of the Birds", "title": "Two Horses", "album": "Phoning It In 08/02/07", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Pop", "Lo-Fi", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "026004_552960", "filepath": "data/openmic-2018/audio/026/026004_552960.ogg", "artist": "Steve Gunn", "title": "Improvisation 1", "album": "ISSUE Project Room 1/29/10", "instrument": ["acoustic guitar", "electric guitar"], "openmic_genres": ["Blues", "Lo-Fi", "Psych-Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "027227_69120", "filepath": "data/openmic-2018/audio/027/027227_69120.ogg", "artist": "Sakee Sed", "title": "I'm Drunk", "album": "Alle basi della roncola", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Post-Rock", "Psych-Rock", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "028264_65280", "filepath": "data/openmic-2018/audio/028/028264_65280.ogg", "artist": "Possum", "title": "Red Hot", "album": "Various Deficiencies Vol. 1", "instrument": ["electric guitar", "violin"], "openmic_genres": ["Lo-Fi", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "030070_0", "filepath": "data/openmic-2018/audio/030/030070_0.ogg", "artist": "Big Naptar", "title": "Cross-Country", "album": "Artifacts Vol. 1", "instrument": ["cello"], "openmic_genres": ["Rock", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "033913_487680", "filepath": "data/openmic-2018/audio/033/033913_487680.ogg", "artist": "Gigi y los Putos", "title": "02 en el satanic club", "album": "No s\u00e9", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "034003_7680", "filepath": "data/openmic-2018/audio/034/034003_7680.ogg", "artist": "Andrij Orel", "title": "On Eerie Bonds", "album": "WHNZ:11:SOM", "instrument": ["acoustic guitar"], "openmic_genres": ["Avant-Garde", "Experimental", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "035310_702720", "filepath": "data/openmic-2018/audio/035/035310_702720.ogg", "artist": "Elephant Micah", "title": "Phoning It In 07/06/05", "album": "Phoning It In 07/06/05", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Lo-Fi", "Freak-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "035961_15360", "filepath": "data/openmic-2018/audio/035/035961_15360.ogg", "artist": "The LibraryAnns", "title": "#5", "album": "Olde Sex Songs", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Psych-Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "036847_30720", "filepath": "data/openmic-2018/audio/036/036847_30720.ogg", "artist": "Miguel Uza", "title": "sere", "album": "single tracks", "instrument": ["electric guitar"], "openmic_genres": ["Pop", "Lo-Fi", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "037985_199680", "filepath": "data/openmic-2018/audio/037/037985_199680.ogg", "artist": "Andy Wagner", "title": "What I've Been Looking For", "album": "Those Who Forgive", "instrument": ["voice"], "openmic_genres": ["Rock", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "038539_138240", "filepath": "data/openmic-2018/audio/038/038539_138240.ogg", "artist": "Nobody's Bizness", "title": "Ain't Nobody's Bizness", "album": "Ao Vivo Na Capela da Miseric\u00f3rdia", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Blues"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "040618_3840", "filepath": "data/openmic-2018/audio/040/040618_3840.ogg", "artist": "The Re-Stoned", "title": "fra fuf", "album": "Vermel", "instrument": ["electric guitar"], "openmic_genres": ["Blues", "Loud-Rock", "Psych-Rock"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "040736_349440", "filepath": "data/openmic-2018/audio/040/040736_349440.ogg", "artist": "Giraffe", "title": "Bear Trap", "album": "There Is No Devil", "instrument": ["acoustic guitar"], "openmic_genres": ["Post-Rock", "Experimental", "Singer-Songwriter"], "genre": ["cou_fol", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "040742_84480", "filepath": "data/openmic-2018/audio/040/040742_84480.ogg", "artist": "Giraffe", "title": "Shit-storm Chaser", "album": "There Is No Devil", "instrument": ["acoustic guitar"], "openmic_genres": ["Post-Rock", "Experimental", "Singer-Songwriter"], "genre": ["cou_fol", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "042099_92160", "filepath": "data/openmic-2018/audio/042/042099_92160.ogg", "artist": "The HATE Noise and Anonymous", "title": "Rex the Miami Crack Dealer Part 2", "album": "The Hate Noise Calling Vol. 1 & 2", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Novelty"], "genre": ["NA"], "tags": []}
{"sample_key": "043239_3840", "filepath": "data/openmic-2018/audio/043/043239_3840.ogg", "artist": "Innig", "title": "Turkish Delight", "album": "Liminal Chorus Of Dawn", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk", "Experimental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "043243_88320", "filepath": "data/openmic-2018/audio/043/043243_88320.ogg", "artist": "Scarm", "title": "Mezzogiorno Tardivo", "album": "Several Minutes of the Man", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Noise-Rock"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "043453_57600", "filepath": "data/openmic-2018/audio/043/043453_57600.ogg", "artist": "Henry Hynes", "title": "space villagers", "album": "In The Noon and Other Songs", "instrument": ["acoustic guitar"], "openmic_genres": ["Experimental", "Free-Folk", "Indie-Rock"], "genre": ["cou_fol", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "044196_7680", "filepath": "data/openmic-2018/audio/044/044196_7680.ogg", "artist": "Tiger Flowers", "title": "Cuts", "album": "NYC Sucks, Volume 1", "instrument": ["electric guitar"], "openmic_genres": ["Metal"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "044204_261120", "filepath": "data/openmic-2018/audio/044/044204_261120.ogg", "artist": "Wizardry", "title": "The Falconer", "album": "NYC Sucks, Volume 1", "instrument": ["electric guitar"], "openmic_genres": ["Metal"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "045519_188160", "filepath": "data/openmic-2018/audio/045/045519_188160.ogg", "artist": "Plusplus", "title": "Swimmer", "album": "Evils", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "047774_26880", "filepath": "data/openmic-2018/audio/047/047774_26880.ogg", "artist": "Tim Berne", "title": "Sequel Ex", "album": "Sequel Ex", "instrument": ["acoustic guitar"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "047960_38400", "filepath": "data/openmic-2018/audio/047/047960_38400.ogg", "artist": "Cranston", "title": "Measuring Stick", "album": "Time Sessions", "instrument": ["electric guitar"], "openmic_genres": ["Experimental Pop", "Sound Poetry", "Minimalism"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "048076_276480", "filepath": "data/openmic-2018/audio/048/048076_276480.ogg", "artist": "Mr. & Mrs. Smith", "title": "The Days of the Tumbleweeds", "album": "All Women Are Created Evul", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Blues", "Folk", "Singer-Songwriter"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "049030_165120", "filepath": "data/openmic-2018/audio/049/049030_165120.ogg", "artist": "Mia Doi Todd", "title": "Under The Sun", "album": "Live at WFMU on Irene Trudel's Show on June 13 2011", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "049100_0", "filepath": "data/openmic-2018/audio/049/049100_0.ogg", "artist": "White Fence", "title": "Sara Snow (Live @ WFMU)", "album": "Live at WFMU on Talk's Cheap, May 5th 2011", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "049793_3840", "filepath": "data/openmic-2018/audio/049/049793_3840.ogg", "artist": "Mia Doi Todd", "title": "Luna Lune//Tongue Tied", "album": "Live on Stork's Show on 4/29/2001", "instrument": ["acoustic guitar"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "049844_0", "filepath": "data/openmic-2018/audio/049/049844_0.ogg", "artist": "My Bubba & Mi", "title": "Bubba\u2019s Blues", "album": "How It\u2019s Done In Italy", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "050269_96000", "filepath": "data/openmic-2018/audio/050/050269_96000.ogg", "artist": "Mach FoX", "title": "Nu Dead Pretty", "album": "Free! Music! Contest! Sampler 2010 \"Sinn\"", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Goth"], "genre": ["NA"], "tags": []}
{"sample_key": "050334_253440", "filepath": "data/openmic-2018/audio/050/050334_253440.ogg", "artist": "Claudio Nu\u00f1ez", "title": "Death", "album": "Love Hurts", "instrument": ["acoustic guitar"], "openmic_genres": ["Jazz", "Classical", "Free-Jazz", "20th Century Classical", "Improv"], "genre": ["jaz_blu", "cla"], "tags": []}
{"sample_key": "050338_798720", "filepath": "data/openmic-2018/audio/050/050338_798720.ogg", "artist": "Claudio Nu\u00f1ez", "title": "Life ii", "album": "Love Hurts", "instrument": ["acoustic guitar"], "openmic_genres": ["Jazz", "Classical", "Free-Jazz", "20th Century Classical", "Improv"], "genre": ["jaz_blu", "cla"], "tags": []}
{"sample_key": "050499_7680", "filepath": "data/openmic-2018/audio/050/050499_7680.ogg", "artist": "Ty Segall", "title": "I Can't Feel It", "album": "Live at WFMU on The Cherry Blossom Clinic with Terre T June 25, 2011", "instrument": ["electric guitar"], "openmic_genres": ["Garage", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "050818_11520", "filepath": "data/openmic-2018/audio/050/050818_11520.ogg", "artist": "New Mortal Gods", "title": "Pointless Crusade", "album": "Demo 2010", "instrument": ["electric guitar"], "openmic_genres": ["Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "051690_0", "filepath": "data/openmic-2018/audio/051/051690_0.ogg", "artist": "Eric Boros", "title": "Ode To Old Goat", "album": "Comrades! Solo Travel-Guitar", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "052502_180480", "filepath": "data/openmic-2018/audio/052/052502_180480.ogg", "artist": "Kalli", "title": "To Be Free", "album": "Live at WFMU on Irene Trudel's Show on August 15, 2011", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "052684_145920", "filepath": "data/openmic-2018/audio/052/052684_145920.ogg", "artist": "Jason Shaw", "title": "SOLO ACOUSTIC GUITAR", "album": "Audionautix: Acoustic", "instrument": ["acoustic guitar"], "openmic_genres": ["Country", "Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "052954_126720", "filepath": "data/openmic-2018/audio/052/052954_126720.ogg", "artist": "Marissa Nadler", "title": "Wind Up Doll", "album": "Live at WFMU on Dark Night of the Soul with Julie on August 23, 2011", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "052955_61440", "filepath": "data/openmic-2018/audio/052/052955_61440.ogg", "artist": "Marissa Nadler", "title": "Mr. John Lee, Revisited", "album": "Live at WFMU on Dark Night of the Soul with Julie on August 23, 2011", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "053680_115200", "filepath": "data/openmic-2018/audio/053/053680_115200.ogg", "artist": "Rock Monsieur", "title": "Rock Mr VS l'ing\u00e9 son et le motard", "album": "Au pr\u00e9au", "instrument": ["acoustic guitar"], "openmic_genres": ["Noise-Rock", "Experimental Pop", "Improv"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "054473_34560", "filepath": "data/openmic-2018/audio/054/054473_34560.ogg", "artist": "Solo Dja Kabako", "title": "Souba", "album": "Solo Dja Kabaco", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Folk", "African"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "054699_88320", "filepath": "data/openmic-2018/audio/054/054699_88320.ogg", "artist": "Bird of Youth", "title": "Right On Red", "album": "Live at WFMU on Gaylord Fields' Show on September 25, 2011", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "055138_23040", "filepath": "data/openmic-2018/audio/055/055138_23040.ogg", "artist": "Alaclair Ensemble", "title": "La peau de toi", "album": "Touladis", "instrument": ["acoustic guitar"], "openmic_genres": ["Electronic", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "057841_257280", "filepath": "data/openmic-2018/audio/057/057841_257280.ogg", "artist": "Cian Nugent", "title": "Grass Above My Head", "album": "Live at WFMU on The Long Rally with Scott McDowell December 16, 2011", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Folk", "Singer-Songwriter"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "057966_145920", "filepath": "data/openmic-2018/audio/057/057966_145920.ogg", "artist": "Ljudske Potrebe", "title": "U javi", "album": "Povratak u realno", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Punk", "Electro-Punk", "Industrial"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "058340_176640", "filepath": "data/openmic-2018/audio/058/058340_176640.ogg", "artist": "Inch Chua", "title": "Hurt", "album": "FrostWire Creative Commons Mixtape 2 Side B", "instrument": ["acoustic guitar"], "openmic_genres": ["Pop", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "062443_49920", "filepath": "data/openmic-2018/audio/062/062443_49920.ogg", "artist": "Jahzzar", "title": "Last Dance", "album": "Blinded by Dust", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Americana"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "063016_7680", "filepath": "data/openmic-2018/audio/063/063016_7680.ogg", "artist": "Tyrannosaurus Dracula", "title": "Most Dangerous Game (2007)", "album": "We're Gonna Get You", "instrument": ["electric guitar"], "openmic_genres": ["Loud-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "063774_172800", "filepath": "data/openmic-2018/audio/063/063774_172800.ogg", "artist": "Chain & The Gang", "title": "Certain Kinds Of Trash", "album": "Live at WFMU on the Cherry Blossom Clinic with Terre T on April 14, 2012", "instrument": ["electric guitar"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "064171_119040", "filepath": "data/openmic-2018/audio/064/064171_119040.ogg", "artist": "Marisa Anderson", "title": "A Dream of Willie McTell", "album": "Live at WFMU on Shrunken Planet April 28th, 2012", "instrument": ["electric guitar"], "openmic_genres": ["Blues", "Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "064669_80640", "filepath": "data/openmic-2018/audio/064/064669_80640.ogg", "artist": "Zea", "title": "Zea Live at Beginner", "album": "Zea Live at Beginner", "instrument": ["electric guitar"], "openmic_genres": ["Electro-Punk"], "genre": ["NA"], "tags": []}
{"sample_key": "064910_3840", "filepath": "data/openmic-2018/audio/064/064910_3840.ogg", "artist": "Apneu", "title": "Apneu Live at Purple Pop", "album": "Apneu Live at Purple Pop", "instrument": ["electric guitar"], "openmic_genres": ["Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "065685_111360", "filepath": "data/openmic-2018/audio/065/065685_111360.ogg", "artist": "Dick Whyte and his Golden Guitar", "title": "Maybelle (feat. Robyn Kenealy)", "album": "Stories and songs", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "066055_11520", "filepath": "data/openmic-2018/audio/066/066055_11520.ogg", "artist": "Gillicuddy", "title": "A Garden And A Library", "album": "...Plays Guitar", "instrument": ["acoustic guitar"], "openmic_genres": ["Rock", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "066410_1301760", "filepath": "data/openmic-2018/audio/066/066410_1301760.ogg", "artist": "Milk Music", "title": "Live at Primavera Sound 2012 on WFMU", "album": "Live at Primavera Sound 2012 on WFMU", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "067239_19200", "filepath": "data/openmic-2018/audio/067/067239_19200.ogg", "artist": "Thomas Allan", "title": "Sensation", "album": "Break The News EP", "instrument": ["electric guitar", "other instrument"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "067331_30720", "filepath": "data/openmic-2018/audio/067/067331_30720.ogg", "artist": "Drama for Yamaha", "title": "Diver", "album": "Archipelago", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "067674_184320", "filepath": "data/openmic-2018/audio/067/067674_184320.ogg", "artist": "James Beaudreau", "title": "Union Square", "album": "Soft Power b/w Union Square", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Funk", "Progressive"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "067764_322560", "filepath": "data/openmic-2018/audio/067/067764_322560.ogg", "artist": "Meg Baird", "title": "Share", "album": "Live at WFMU on Shrunken Planet with Jeffrey Davison July 7th 2012", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "067765_211200", "filepath": "data/openmic-2018/audio/067/067765_211200.ogg", "artist": "Meg Baird", "title": "Stars Climb Up the Vine", "album": "Live at WFMU on Shrunken Planet with Jeffrey Davison July 7th 2012", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "068422_69120", "filepath": "data/openmic-2018/audio/068/068422_69120.ogg", "artist": "Chris Forsyth", "title": "Downs & Ups + Boston Street Lullaby No. 2", "album": "Live at WFMU on the Long Rally July 13th 2012", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "068423_241920", "filepath": "data/openmic-2018/audio/068/068423_241920.ogg", "artist": "Chris Forsyth", "title": "East Kensington Run Down", "album": "Live at WFMU on the Long Rally July 13th 2012", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "068820_3840", "filepath": "data/openmic-2018/audio/068/068820_3840.ogg", "artist": "Zulus", "title": "Blackout", "album": "Live at WFMU on Dangerous for the Brain with Thomas Storck, August 5 2012", "instrument": ["electric guitar"], "openmic_genres": ["Hardcore", "Thrash"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "070686_3840", "filepath": "data/openmic-2018/audio/070/070686_3840.ogg", "artist": "MI-GU", "title": "Choose The Light", "album": "Live On WFMU With DJ Trouble October 2, 2012", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "070886_215040", "filepath": "data/openmic-2018/audio/070/070886_215040.ogg", "artist": "Cheap Time", "title": "Same Surprise", "album": "Live at WFMU on the Cherry Blossom Clinic, 11-6-12", "instrument": ["electric guitar"], "openmic_genres": ["Punk", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "071092_3840", "filepath": "data/openmic-2018/audio/071/071092_3840.ogg", "artist": "Bitbasic", "title": "Halfway Hut", "album": "Meek", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Electronic", "Glitch", "IDM"], "genre": ["NA"], "tags": []}
{"sample_key": "071317_84480", "filepath": "data/openmic-2018/audio/071/071317_84480.ogg", "artist": "Lofiuser", "title": "To The Sun", "album": "Feast", "instrument": ["electric guitar", "other instrument"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "072382_188160", "filepath": "data/openmic-2018/audio/072/072382_188160.ogg", "artist": "Sergi Boal", "title": "percorso", "album": "Nylon & Turtle", "instrument": ["acoustic guitar"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "072386_119040", "filepath": "data/openmic-2018/audio/072/072386_119040.ogg", "artist": "Sergi Boal", "title": "the incident of the bell", "album": "Nylon & Turtle", "instrument": ["acoustic guitar"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "073584_92160", "filepath": "data/openmic-2018/audio/073/073584_92160.ogg", "artist": "James Beaudreau", "title": "Goodmorning Junction", "album": "Astral Law (WBR 35)", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "074668_215040", "filepath": "data/openmic-2018/audio/074/074668_215040.ogg", "artist": "Long Hair", "title": "Fifteen Layers and Five Fathoms Deep", "album": "Squirrelwood", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Rock", "Progressive", "Space-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "074883_103680", "filepath": "data/openmic-2018/audio/074/074883_103680.ogg", "artist": "Chotto Ghetto", "title": "In The Wharehouse Of The 7 Sins", "album": "Walk Is Godlike", "instrument": ["electric guitar"], "openmic_genres": ["Punk", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "074885_57600", "filepath": "data/openmic-2018/audio/074/074885_57600.ogg", "artist": "Chotto Ghetto", "title": "Walk Is Godlike", "album": "Walk Is Godlike", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Punk", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "075219_261120", "filepath": "data/openmic-2018/audio/075/075219_261120.ogg", "artist": "Hypermagic", "title": "Tim and Henry's Pack of Lies", "album": NaN, "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "075686_84480", "filepath": "data/openmic-2018/audio/075/075686_84480.ogg", "artist": "Shearer", "title": "Is it you (Paradise Mix)", "album": "Adam", "instrument": ["piano", "voice"], "openmic_genres": ["Rock", "Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "076285_184320", "filepath": "data/openmic-2018/audio/076/076285_184320.ogg", "artist": "Surak", "title": "Ray Bradbury", "album": "Space Invaders", "instrument": ["electric guitar"], "openmic_genres": ["Post-Rock", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "079842_11520", "filepath": "data/openmic-2018/audio/079/079842_11520.ogg", "artist": "Kacey Explosion", "title": "Rough Divide", "album": "INGWAZ", "instrument": ["electric guitar"], "openmic_genres": ["Lo-Fi", "Indie-Rock", "Shoegaze"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "080575_172800", "filepath": "data/openmic-2018/audio/080/080575_172800.ogg", "artist": "lo-fi is sci-fi", "title": "Deep Red", "album": "We Were Wrong", "instrument": ["acoustic guitar"], "openmic_genres": ["Rock", "Lo-Fi", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "081380_119040", "filepath": "data/openmic-2018/audio/081/081380_119040.ogg", "artist": "E. R. Goodman", "title": "Mudskirts", "album": "Under the Lamp", "instrument": ["acoustic guitar"], "openmic_genres": ["Jazz", "Folk", "Americana", "Improv", "Composed Music"], "genre": ["cou_fol", "jaz_blu", "cla"], "tags": []}
{"sample_key": "081944_72960", "filepath": "data/openmic-2018/audio/081/081944_72960.ogg", "artist": "Jenny O.", "title": "Opposite Island", "album": "Live on WFMU with Irwin - April 3, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "083439_215040", "filepath": "data/openmic-2018/audio/083/083439_215040.ogg", "artist": "Keaton Henson", "title": "Lying To You", "album": "Live on WFMU's Shrunken Planet with Jeffrey Davison - April 20, 2013", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "084035_264960", "filepath": "data/openmic-2018/audio/084/084035_264960.ogg", "artist": "Matt LeGroulx", "title": "So Glad (Pink)", "album": "Solo Guitar", "instrument": ["acoustic guitar"], "openmic_genres": ["Country", "Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "085339_119040", "filepath": "data/openmic-2018/audio/085/085339_119040.ogg", "artist": "Silence Is Sexy", "title": "(Are We Losing) Faith", "album": "Everything You Should Know", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Pop", "Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "085436_291840", "filepath": "data/openmic-2018/audio/085/085436_291840.ogg", "artist": "Chuck Johnson", "title": "Albion Source", "album": "Live at WFMU on Irene Trudel's Show - May 27, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "085485_65280", "filepath": "data/openmic-2018/audio/085/085485_65280.ogg", "artist": "Derek Clegg", "title": "Photograph", "album": "Overlook The Human Race", "instrument": ["cello", "electric guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "085967_318720", "filepath": "data/openmic-2018/audio/085/085967_318720.ogg", "artist": "Star Rover", "title": "We Would Be Building (Hymn) & Blind Willie (Sonnie Sharrock)", "album": "Live on WFMU's Airborne Event with Dan Bodah - May 6th, 2013", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "085969_42240", "filepath": "data/openmic-2018/audio/085/085969_42240.ogg", "artist": "Seaven Teares", "title": "Grown Woman", "album": "Live on WFMU's Airborne Event with Dan Bodah - April 29th, 2013", "instrument": ["acoustic guitar", "electric guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "086370_42240", "filepath": "data/openmic-2018/audio/086/086370_42240.ogg", "artist": "David Grubbs", "title": "Abracadabrant", "album": "Live on WFMU's The Long Rally with Scott McDowell - April 26, 2013", "instrument": ["electric guitar"], "openmic_genres": ["Post-Rock", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "087409_26880", "filepath": "data/openmic-2018/audio/087/087409_26880.ogg", "artist": "Factories and Alleyways", "title": "Life Is Now", "album": "Canadiana", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Country", "Folk", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "087507_3840", "filepath": "data/openmic-2018/audio/087/087507_3840.ogg", "artist": "Chris Forsyth and the Solar Motel Band", "title": "Boston Street Lullaby", "album": "Live On WFMU's Airborne Event with Dan Bodah - July 8, 2013", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "088869_122880", "filepath": "data/openmic-2018/audio/088/088869_122880.ogg", "artist": "Josh Woodward", "title": "Gallows Hill (No Vocals)", "album": "Dirty Wings (Instrumentals)", "instrument": ["electric guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "088873_88320", "filepath": "data/openmic-2018/audio/088/088873_88320.ogg", "artist": "Josh Woodward", "title": "Cien Volando (No Vocals)", "album": "Dirty Wings (Instrumentals)", "instrument": ["electric guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "090619_3840", "filepath": "data/openmic-2018/audio/090/090619_3840.ogg", "artist": "Nick Corbo", "title": "Bird Watching In America", "album": "Bird Watching In America", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "091058_238080", "filepath": "data/openmic-2018/audio/091/091058_238080.ogg", "artist": "Cian Nugent", "title": "Grass Above My Head", "album": "Live on WFMU's The Long Rally with Scott McDowell -Sep 17, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Ambient"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "091232_76800", "filepath": "data/openmic-2018/audio/091/091232_76800.ogg", "artist": "Lonely Faction", "title": "On The Loose", "album": "So Few Comfortable Places", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "091366_280320", "filepath": "data/openmic-2018/audio/091/091366_280320.ogg", "artist": "BRIGAND", "title": "Tri Noci(feat. Jarboe)", "album": "ZAPLE\u0160IMO GRE\u0160NICI", "instrument": ["electric guitar"], "openmic_genres": ["Post-Rock", "Metal"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "091446_69120", "filepath": "data/openmic-2018/audio/091/091446_69120.ogg", "artist": "Cal Folger Day", "title": "Stupid", "album": "Live on WFMU's Shrunken Planet with Jeffrey Davison - Aug 3, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "091641_157440", "filepath": "data/openmic-2018/audio/091/091641_157440.ogg", "artist": "Son Altesse curieuse", "title": "Sous seing priv\u00e9", "album": "Frivolit\u00e9s", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Freak-Folk", "Progressive"], "genre": ["NA"], "tags": []}
{"sample_key": "091935_261120", "filepath": "data/openmic-2018/audio/091/091935_261120.ogg", "artist": "Zachary Cale", "title": "Wayward Son", "album": "Live on WFMU's Shrunken Planet with Jeffrey Davison - Sep 28, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "092722_264960", "filepath": "data/openmic-2018/audio/092/092722_264960.ogg", "artist": "Josh Woodward", "title": "Private Hurricane", "album": "Breadcrumbs", "instrument": ["electric guitar"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "092723_46080", "filepath": "data/openmic-2018/audio/092/092723_46080.ogg", "artist": "Josh Woodward", "title": "Under the Stairs", "album": "Breadcrumbs", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "093344_99840", "filepath": "data/openmic-2018/audio/093/093344_99840.ogg", "artist": "\u010copor", "title": "Kao Ja I Ti", "album": "Ukleti Holandez", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Blues", "Spoken", "Freak-Folk"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "094225_38400", "filepath": "data/openmic-2018/audio/094/094225_38400.ogg", "artist": "Josh Woodward", "title": "I'm Letting Go (Instrumental)", "album": "The Simple Life (Part 1)", "instrument": ["acoustic guitar"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "096135_11520", "filepath": "data/openmic-2018/audio/096/096135_11520.ogg", "artist": "Samm Bennett", "title": "Devil On The Level", "album": "Live on WFMU's Miniature Minotaurs with Kurt Gottschalk - November 11, 2013", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Blues", "Folk", "Experimental"], "genre": ["jaz_blu", "instrumental", "cou_fol"], "tags": []}
{"sample_key": "096508_80640", "filepath": "data/openmic-2018/audio/096/096508_80640.ogg", "artist": "Henry Adam Svec (Feat. Huey Lewis on Harmonica)", "title": "(A Christmas Elf) Goin' Down the Road Feeling Bad", "album": "Yuletide Entertainments (2012)", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Rock", "Folk", "Christmas"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "096693_145920", "filepath": "data/openmic-2018/audio/096/096693_145920.ogg", "artist": "Melissa Laveaux", "title": "Move On", "album": "Live on WFMU's 100% Whatever with Mary Wing - December 12, 2013", "instrument": ["electric guitar", "voice", "other instrument"], "openmic_genres": ["Folk", "Free-Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "096726_226560", "filepath": "data/openmic-2018/audio/096/096726_226560.ogg", "artist": "Allysen Callery", "title": "Shoot Me", "album": "Live on WFMU's Shrunken Planet with Jeffrey Davison- November 30, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "096729_69120", "filepath": "data/openmic-2018/audio/096/096729_69120.ogg", "artist": "Allysen Callery", "title": "I Had A Lover I Thought Was My Own", "album": "Live on WFMU's Shrunken Planet with Jeffrey Davison- November 30, 2013", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "096745_76800", "filepath": "data/openmic-2018/audio/096/096745_76800.ogg", "artist": "Fred and Toody", "title": "Down The Road", "album": "Live on WFMU's Distort Jersey City with Reed Dunlea- December 10, 2013", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Punk", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "097617_157440", "filepath": "data/openmic-2018/audio/097/097617_157440.ogg", "artist": "Gary Lucas", "title": "Songstress on the Edge of Heaven (With Maggie Mo)", "album": "Live on WFMU's Airborne Event with Dan Bodah - September 30, 2013", "instrument": ["electric guitar"], "openmic_genres": ["International", "Folk", "Asia-Far East"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "098220_268800", "filepath": "data/openmic-2018/audio/098/098220_268800.ogg", "artist": "M\u00e1rio Gajarsk\u00fd", "title": "Music Scenery", "album": "M\u00e1rio Gajarsk\u00fd", "instrument": ["electric guitar"], "openmic_genres": ["Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "098496_46080", "filepath": "data/openmic-2018/audio/098/098496_46080.ogg", "artist": "ROW", "title": "Sighted Echo", "album": "Strachan", "instrument": ["electric guitar"], "openmic_genres": ["Electronic", "Experimental", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "099103_7680", "filepath": "data/openmic-2018/audio/099/099103_7680.ogg", "artist": "Rooster Tail", "title": "None of Your Business", "album": "Rooster Tail", "instrument": ["electric guitar"], "openmic_genres": ["Noise-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "101909_42240", "filepath": "data/openmic-2018/audio/101/101909_42240.ogg", "artist": "So Brown", "title": "River Song", "album": "Live on WFMU with Irene Trudel: March 17, 2014", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Blues", "Garage", "Singer-Songwriter"], "genre": ["jaz_blu", "pop_roc", "cou_fol"], "tags": []}
{"sample_key": "101919_157440", "filepath": "data/openmic-2018/audio/101/101919_157440.ogg", "artist": "So Brown", "title": "Lonesome George", "album": "Live on WFMU with Irene Trudel: March 17, 2014", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Blues", "Garage", "Singer-Songwriter"], "genre": ["jaz_blu", "pop_roc", "cou_fol"], "tags": []}
{"sample_key": "102059_84480", "filepath": "data/openmic-2018/audio/102/102059_84480.ogg", "artist": "shapes and monsters", "title": "control", "album": "chkm", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "104110_295680", "filepath": "data/openmic-2018/audio/104/104110_295680.ogg", "artist": "Wall Matthews", "title": "Neptune Rising", "album": "Live on WFMU with Irene Trudel: April 14, 2014", "instrument": ["acoustic guitar"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "104148_195840", "filepath": "data/openmic-2018/audio/104/104148_195840.ogg", "artist": "Nodus1", "title": "Raven Slow", "album": "Slough", "instrument": ["acoustic guitar"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "105102_26880", "filepath": "data/openmic-2018/audio/105/105102_26880.ogg", "artist": "Live Fast Die", "title": "Forged In Flame 1776", "album": "Live on WFMU's Cherry Blossom Clinic with Terre T: May 3, 2014", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "105945_261120", "filepath": "data/openmic-2018/audio/105/105945_261120.ogg", "artist": "Hallock Hill", "title": "Her Grass Will Not Grow", "album": "Live on WFMU's Airborne Event with Dan Bodah may 5, 2014", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Ambient Electronic", "Indie-Rock"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "109478_103680", "filepath": "data/openmic-2018/audio/109/109478_103680.ogg", "artist": "Rachel Ries", "title": "Holiest Day", "album": "Live on WFMU with Irene Trudel - September 15, 2014", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "110172_172800", "filepath": "data/openmic-2018/audio/110/110172_172800.ogg", "artist": "Peter Biedermann", "title": "Blues For Big Red", "album": "Live on WFMU with Irene Trudel - October 20, 2014", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "110341_111360", "filepath": "data/openmic-2018/audio/110/110341_111360.ogg", "artist": "Jarby Mc Coy", "title": "congorama (b.o.)", "album": "d\u00e9mos et vieilleries", "instrument": ["electric guitar"], "openmic_genres": ["Experimental Pop", "Europe"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "110384_84480", "filepath": "data/openmic-2018/audio/110/110384_84480.ogg", "artist": "Peter Biedermann", "title": "Train Coming In", "album": "Live on WFMU with Irene Trudel - October 20, 2014", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "110626_61440", "filepath": "data/openmic-2018/audio/110/110626_61440.ogg", "artist": "Mirbeau", "title": "Her Dark Eyes Flashed", "album": "Silence and Blue Notes", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Minimalism"], "genre": ["instrumental"], "tags": []}
{"sample_key": "111031_92160", "filepath": "data/openmic-2018/audio/111/111031_92160.ogg", "artist": "Mr. & Mrs. Smith", "title": "What if Lovin just makes you Lonely", "album": "Oh...by the way... Your Roots Are Showin", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Blues", "Country", "Folk", "Singer-Songwriter"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "111292_161280", "filepath": "data/openmic-2018/audio/111/111292_161280.ogg", "artist": "\u0427\u043e\u043a\u043d\u0443\u0442\u044b\u0439 \u041f\u0440\u043e\u043f\u0435\u043b\u043b\u0435\u0440", "title": "Red Girl", "album": "\u041c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u043b\u0435\u0442", "instrument": ["electric guitar"], "openmic_genres": ["Country", "Punk", "Americana"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "112104_7680", "filepath": "data/openmic-2018/audio/112/112104_7680.ogg", "artist": "On Tour", "title": "the map", "album": "Folkrock", "instrument": ["acoustic guitar"], "openmic_genres": ["Country", "Folk", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "112315_65280", "filepath": "data/openmic-2018/audio/112/112315_65280.ogg", "artist": "Cloudkicker", "title": "Digital Lightning", "album": "Little histories", "instrument": ["electric guitar"], "openmic_genres": ["Metal", "Progressive"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "112806_0", "filepath": "data/openmic-2018/audio/112/112806_0.ogg", "artist": "\u041c\u0438\u0442\u0440\u0438\u0439 \u0413\u0440\u0430\u043d\u043a\u043e\u0432", "title": "\u0412\u043e\u043d\u0430 \u0411\u0438 \u0401 \u0414\u043e\u0433 \u041b\u0430\u0432 \u041c\u0438 \u0422\u0435\u043d\u0434\u0435\u0440", "album": "\u0412\u0435\u0440\u043d\u0438\u0442\u0435 \u041c\u0438\u0442\u0435!", "instrument": ["acoustic guitar"], "openmic_genres": ["Lo-Fi", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "114416_23040", "filepath": "data/openmic-2018/audio/114/114416_23040.ogg", "artist": "Scott Holmes", "title": "Beyond Something Beautiful", "album": "We Used To Paint Stars In The Sky (2012)", "instrument": ["electric guitar"], "openmic_genres": ["Post-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "114444_19200", "filepath": "data/openmic-2018/audio/114/114444_19200.ogg", "artist": "Fyodorovitch.", "title": "Fire", "album": "Escape Reality", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Punk", "Lo-Fi", "Garage"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "114462_53760", "filepath": "data/openmic-2018/audio/114/114462_53760.ogg", "artist": "The Agrarians", "title": "Princely & Comely", "album": "Uncomfortably(,) Songwriter Vol. III", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Blues", "Lo-Fi", "Psych-Folk", "Psych-Rock", "Experimental Pop", "Singer-Songwriter"], "genre": ["jaz_blu", "pop_roc", "cou_fol"], "tags": []}
{"sample_key": "115003_11520", "filepath": "data/openmic-2018/audio/115/115003_11520.ogg", "artist": "Squire Tuck", "title": "Squire Tuck - Listen to Your Heart (and Stay)", "album": "Lost in the Moment", "instrument": ["electric guitar"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "115289_84480", "filepath": "data/openmic-2018/audio/115/115289_84480.ogg", "artist": "Squire Tuck", "title": "Squire Tuck - Overjoyed", "album": "Lay Your Ukulele On Me", "instrument": ["electric guitar"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "115602_7680", "filepath": "data/openmic-2018/audio/115/115602_7680.ogg", "artist": "Mr. & Mrs. Smith", "title": "Painted Words", "album": "La mort de l'amour", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Country", "Folk", "Singer-Songwriter"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "115775_138240", "filepath": "data/openmic-2018/audio/115/115775_138240.ogg", "artist": "Jelsonic", "title": "Vapour Trails", "album": "Various Moods", "instrument": ["acoustic guitar"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "116070_145920", "filepath": "data/openmic-2018/audio/116/116070_145920.ogg", "artist": "Jenks Miller", "title": "Spirit Signal", "album": "Spirit Signal", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "116527_153600", "filepath": "data/openmic-2018/audio/116/116527_153600.ogg", "artist": "Squire Tuck", "title": "Declaration of Love", "album": "Muse", "instrument": ["acoustic guitar"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "116787_15360", "filepath": "data/openmic-2018/audio/116/116787_15360.ogg", "artist": "Janina Frank", "title": "Cult for Crows", "album": "The Ghost Of Janina Frank #01", "instrument": ["acoustic guitar"], "openmic_genres": ["Indie-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "116898_0", "filepath": "data/openmic-2018/audio/116/116898_0.ogg", "artist": "The Gateless Gate", "title": "All Is One", "album": "All Is One", "instrument": ["acoustic guitar"], "openmic_genres": ["Electronic", "Psych-Folk", "Ambient"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "116913_72960", "filepath": "data/openmic-2018/audio/116/116913_72960.ogg", "artist": "Squire Tuck", "title": "Rush to the Head", "album": "Punkture Repair Kit", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "117612_199680", "filepath": "data/openmic-2018/audio/117/117612_199680.ogg", "artist": "Blue Dot Sessions", "title": "Mobile", "album": "Albany, NY", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "117716_0", "filepath": "data/openmic-2018/audio/117/117716_0.ogg", "artist": "Ketsa", "title": "end count", "album": "Impermanence", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient Electronic", "Downtempo"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "117768_15360", "filepath": "data/openmic-2018/audio/117/117768_15360.ogg", "artist": "Derek Clegg", "title": "Untitled", "album": "Far Better Off Worse", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Country", "Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "118799_30720", "filepath": "data/openmic-2018/audio/118/118799_30720.ogg", "artist": "Peripheral Living", "title": "Fate Dodge", "album": "Experimental Lakes", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk", "Experimental", "Instrumental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "118803_142080", "filepath": "data/openmic-2018/audio/118/118803_142080.ogg", "artist": "Peripheral Living", "title": "When Youngsters", "album": "Experimental Lakes", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk", "Experimental", "Instrumental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "118805_88320", "filepath": "data/openmic-2018/audio/118/118805_88320.ogg", "artist": "Peripheral Living", "title": "Town v. City", "album": "Experimental Lakes", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk", "Experimental", "Instrumental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "120661_245760", "filepath": "data/openmic-2018/audio/120/120661_245760.ogg", "artist": "Sean Derrick Cooper Maquardt and Rosendo J. Rocha", "title": "The Day God Took Your Blues Away", "album": "Classwar Karaoke - 0030 Survey", "instrument": ["electric guitar"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "121280_195840", "filepath": "data/openmic-2018/audio/121/121280_195840.ogg", "artist": "Cahill Locksmith", "title": "Rail in Window Nights", "album": "Starter Kin", "instrument": ["acoustic guitar"], "openmic_genres": ["Experimental", "Improv", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "121515_122880", "filepath": "data/openmic-2018/audio/121/121515_122880.ogg", "artist": "Tate Peterson", "title": "Kentucky Mule", "album": "Blues Guitar Instrumentals", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Soundtrack", "Instrumental"], "genre": ["jaz_blu", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "121634_72960", "filepath": "data/openmic-2018/audio/121/121634_72960.ogg", "artist": "Steve Combs & Delta Is", "title": "Theme I", "album": "California & What It Means For American Small Business (EP)", "instrument": ["acoustic guitar", "piano"], "openmic_genres": ["Electronic", "Experimental Pop", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "122363_46080", "filepath": "data/openmic-2018/audio/122/122363_46080.ogg", "artist": "David Mumford", "title": "Bonfire Music", "album": "Bonfire Music", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "123263_130560", "filepath": "data/openmic-2018/audio/123/123263_130560.ogg", "artist": "Son Altesse Furieuse", "title": "Avant propos", "album": "Impertinences", "instrument": ["electric guitar"], "openmic_genres": ["Progressive"], "genre": ["NA"], "tags": []}
{"sample_key": "123313_0", "filepath": "data/openmic-2018/audio/123/123313_0.ogg", "artist": "Breatherholes", "title": "out of my skull", "album": "Come Home", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "123527_3840", "filepath": "data/openmic-2018/audio/123/123527_3840.ogg", "artist": "Alexandre Navarro", "title": "Vents et vagues", "album": "Vents et vagues", "instrument": ["electric guitar"], "openmic_genres": ["Electronic", "Post-Rock", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "123767_583680", "filepath": "data/openmic-2018/audio/123/123767_583680.ogg", "artist": "Running Point", "title": "Medita/Medica 2", "album": "Medita/Medica", "instrument": ["electric guitar"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "123768_38400", "filepath": "data/openmic-2018/audio/123/123768_38400.ogg", "artist": "Running Point", "title": "Medita/Medica 3", "album": "Medita/Medica", "instrument": ["electric guitar"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "124192_46080", "filepath": "data/openmic-2018/audio/124/124192_46080.ogg", "artist": "All Dogs", "title": "Say", "album": "Live on WFMU's Hello Children with Faye: Aug 23, 2015", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Pop", "Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "124390_234240", "filepath": "data/openmic-2018/audio/124/124390_234240.ogg", "artist": "Radius System", "title": "Mental Guides", "album": "Escape / Restart", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Post-Rock", "Progressive"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "124628_211200", "filepath": "data/openmic-2018/audio/124/124628_211200.ogg", "artist": "Jack Kotz", "title": "I'm The Only Road You Know", "album": "What's All The Fuss About", "instrument": ["electric guitar"], "openmic_genres": ["Lo-Fi", "Indie-Rock", "Synth Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "125081_284160", "filepath": "data/openmic-2018/audio/125/125081_284160.ogg", "artist": "Pleasant Grove", "title": "We Made Our Way", "album": "The Art Of Leaving", "instrument": ["electric guitar"], "openmic_genres": ["Pop", "Rock", "Soundtrack"], "genre": ["pop_roc", "soundtrack"], "tags": []}
{"sample_key": "125185_0", "filepath": "data/openmic-2018/audio/125/125185_0.ogg", "artist": "Derek Clegg", "title": "Life Unfolds", "album": "Loose Fur - The Best of Derek Clegg", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "126488_168960", "filepath": "data/openmic-2018/audio/126/126488_168960.ogg", "artist": "Nate Maingard", "title": "Cat's Got Time", "album": "The Wild land", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "126578_103680", "filepath": "data/openmic-2018/audio/126/126578_103680.ogg", "artist": "Guillaume Maupin", "title": "Pretty Boy Floyd", "album": "Around John Locke in a Day", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Lo-Fi", "Freak-Folk"], "genre": ["NA"], "tags": []}
{"sample_key": "127032_119040", "filepath": "data/openmic-2018/audio/127/127032_119040.ogg", "artist": "Cousin Silas / Black Hill", "title": "Black Hill - Shepherd", "album": "Bridges of the South", "instrument": ["electric guitar"], "openmic_genres": ["Ambient", "Shoegaze"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "127520_61440", "filepath": "data/openmic-2018/audio/127/127520_61440.ogg", "artist": "Squire Tuck", "title": "Unfinished Business", "album": "Ambient Airwaves", "instrument": ["acoustic guitar"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "127632_34560", "filepath": "data/openmic-2018/audio/127/127632_34560.ogg", "artist": "Music for Rabbits", "title": "Beinen", "album": "Music for Rabbits", "instrument": ["electric guitar"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "127706_0", "filepath": "data/openmic-2018/audio/127/127706_0.ogg", "artist": "The Ex with Ken Vandermark", "title": "How Thick You Think", "album": "Live at WFMU's Monty Hall 10/23/2015", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Punk", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "127796_115200", "filepath": "data/openmic-2018/audio/127/127796_115200.ogg", "artist": "Doctor Turtle", "title": "You Um, I'll Ah", "album": NaN, "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Folk", "Soundtrack"], "genre": ["jaz_blu", "soundtrack", "cou_fol"], "tags": []}
{"sample_key": "128522_19200", "filepath": "data/openmic-2018/audio/128/128522_19200.ogg", "artist": "Doctor Turtle", "title": "New Boots Rag", "album": "Jonah's Message for New York", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "128526_88320", "filepath": "data/openmic-2018/audio/128/128526_88320.ogg", "artist": "The Strangelet Disasters", "title": "Abridged List Of Suicidal Authors", "album": "Morbid Fascination", "instrument": ["electric guitar"], "openmic_genres": ["Lo-Fi", "Freak-Folk"], "genre": ["NA"], "tags": []}
{"sample_key": "128879_111360", "filepath": "data/openmic-2018/audio/128/128879_111360.ogg", "artist": "Squire Tuck", "title": "Bringing Joy at Christmas", "album": "A Festive Felicitations", "instrument": ["acoustic guitar", "electric guitar"], "openmic_genres": ["Holiday", "Christmas"], "genre": ["NA"], "tags": []}
{"sample_key": "128881_23040", "filepath": "data/openmic-2018/audio/128/128881_23040.ogg", "artist": "Squire Tuck", "title": "Alone Again at Christmas", "album": "A Festive Felicitations", "instrument": ["electric guitar"], "openmic_genres": ["Holiday", "Christmas"], "genre": ["NA"], "tags": []}
{"sample_key": "128890_15360", "filepath": "data/openmic-2018/audio/128/128890_15360.ogg", "artist": "Return to Normal", "title": "Down in the Valley", "album": "The Briars and the Brome", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "128899_203520", "filepath": "data/openmic-2018/audio/128/128899_203520.ogg", "artist": "Return to Normal", "title": "Waterthrush", "album": "The Briars and the Brome", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "129135_46080", "filepath": "data/openmic-2018/audio/129/129135_46080.ogg", "artist": "j moss", "title": "slide (improvisation two)", "album": "improvisations and overlays for prepared guitar", "instrument": ["acoustic guitar"], "openmic_genres": ["Experimental", "Free-Folk", "Improv"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "129190_96000", "filepath": "data/openmic-2018/audio/129/129190_96000.ogg", "artist": "Blue Dot Sessions", "title": "Wisteria", "album": "The Contessa", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "129429_34560", "filepath": "data/openmic-2018/audio/129/129429_34560.ogg", "artist": "Steve Gunn", "title": "Old Strange", "album": "Live at WFMU's Monty Hall: Oct 18, 2015", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Psych-Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "129430_261120", "filepath": "data/openmic-2018/audio/129/129430_261120.ogg", "artist": "Steve Gunn", "title": "Milly's Garden", "album": "Live at WFMU's Monty Hall: Oct 18, 2015", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Psych-Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "129433_19200", "filepath": "data/openmic-2018/audio/129/129433_19200.ogg", "artist": "Steve Gunn", "title": "Shadow Bros", "album": "Live at WFMU's Monty Hall: Oct 18, 2015", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Psych-Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "129959_3840", "filepath": "data/openmic-2018/audio/129/129959_3840.ogg", "artist": "Jahzzar", "title": "Chunk of Lawn", "album": "Natural Therapy", "instrument": ["electric guitar"], "openmic_genres": ["Pop", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "129997_0", "filepath": "data/openmic-2018/audio/129/129997_0.ogg", "artist": "springtide", "title": "Bright Sunny End", "album": "Just Before April", "instrument": ["electric guitar"], "openmic_genres": ["Indie-Rock", "Garage", "New Wave"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "130066_138240", "filepath": "data/openmic-2018/audio/130/130066_138240.ogg", "artist": "Jon Watts", "title": "Open Your Sunroof, The Tornadoes Coming", "album": "Limits & Emotions (Instrumental)", "instrument": ["acoustic guitar"], "openmic_genres": ["Hip-Hop", "Instrumental"], "genre": ["instrumental", "lat_sou"], "tags": []}
{"sample_key": "130148_149760", "filepath": "data/openmic-2018/audio/130/130148_149760.ogg", "artist": "Ozum Itez", "title": "Sequoia Variations", "album": "TYRO", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Psych-Rock", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "130151_88320", "filepath": "data/openmic-2018/audio/130/130151_88320.ogg", "artist": "Ozum Itez", "title": "\u00dctopya Arac\u0131", "album": "TYRO", "instrument": ["electric guitar"], "openmic_genres": ["Experimental", "Psych-Rock", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "130664_46080", "filepath": "data/openmic-2018/audio/130/130664_46080.ogg", "artist": "Six Organs of Admittance", "title": "Acteon's Fall", "album": "Live on WFMU's Imaginary Radio with Chris M, 11/12/2015", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "130758_96000", "filepath": "data/openmic-2018/audio/130/130758_96000.ogg", "artist": "Keijo", "title": "Today Is the Night", "album": "WHNZ\u200b:\u200b68\u200b:\u200bTDNGHT", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Folk", "Free-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "130948_53760", "filepath": "data/openmic-2018/audio/130/130948_53760.ogg", "artist": "Albin Andersson", "title": "A Penny For Your Dreams", "album": "It Never Happened", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "131572_96000", "filepath": "data/openmic-2018/audio/131/131572_96000.ogg", "artist": "Tanz", "title": "2) Barbaraalbar", "album": "Terracarne", "instrument": ["electric guitar"], "openmic_genres": ["Post-Rock", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "131585_19200", "filepath": "data/openmic-2018/audio/131/131585_19200.ogg", "artist": "vicbang", "title": "cantri dahi", "album": "valses del futuro", "instrument": ["electric guitar"], "openmic_genres": ["Experimental Pop", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "131866_192000", "filepath": "data/openmic-2018/audio/131/131866_192000.ogg", "artist": "Robin Allender", "title": "Gravestones (Vinyl Version)", "album": "Foxes In The Foyer", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Indie-Rock", "Instrumental"], "genre": ["instrumental", "soundtrack", "pop_roc"], "tags": []}
{"sample_key": "132491_184320", "filepath": "data/openmic-2018/audio/132/132491_184320.ogg", "artist": "Doctor Turtle", "title": "Unexpected Hoedown In Bagging Area", "album": "Flush Your Rolex", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Folk", "Instrumental"], "genre": ["jaz_blu", "instrumental", "cou_fol"], "tags": []}
{"sample_key": "133050_0", "filepath": "data/openmic-2018/audio/133/133050_0.ogg", "artist": "Michael Howard", "title": "Raven King (Instrumental)", "album": "The Martyr and the Magician (Instrumentals)", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Americana", "Instrumental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "133064_7680", "filepath": "data/openmic-2018/audio/133/133064_7680.ogg", "artist": "Melange", "title": "Los Ojos Negros (buler\u00edas de D\u00fcsseldorf)", "album": "Melange", "instrument": ["electric guitar"], "openmic_genres": ["Psych-Rock", "Progressive"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "134057_230400", "filepath": "data/openmic-2018/audio/134/134057_230400.ogg", "artist": "The Loving Knives", "title": "Good Luck Sweater", "album": "Christy Lane", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Electronic", "Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "135961_46080", "filepath": "data/openmic-2018/audio/135/135961_46080.ogg", "artist": "Josh Woodward", "title": "Bloom (Instrumental Version)", "album": "Addressed to the Stars", "instrument": ["acoustic guitar"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "136100_111360", "filepath": "data/openmic-2018/audio/136/136100_111360.ogg", "artist": "Daddy Long Legs", "title": "Mornin', Noon & Nite", "album": "Live at WFMU with Todd-O-Phonic Todd, 2/6/2016", "instrument": ["electric guitar"], "openmic_genres": ["Blues", "Rockabilly"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "137943_19200", "filepath": "data/openmic-2018/audio/137/137943_19200.ogg", "artist": "CRTVTR", "title": "Dog Bones / Canossa", "album": "Streamo", "instrument": ["electric guitar"], "openmic_genres": ["Indie-Rock", "Post-Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "138069_119040", "filepath": "data/openmic-2018/audio/138/138069_119040.ogg", "artist": "Black Flamingo", "title": "Places", "album": "Winter sun", "instrument": ["electric guitar"], "openmic_genres": ["Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "138918_284160", "filepath": "data/openmic-2018/audio/138/138918_284160.ogg", "artist": "Billy Torello", "title": "Notturno", "album": "Il Passato Ha Gli Zoccoli", "instrument": ["acoustic guitar"], "openmic_genres": ["Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "138923_23040", "filepath": "data/openmic-2018/audio/138/138923_23040.ogg", "artist": "Billy Torello", "title": "Io Non Uso La Schiuma", "album": "Il Passato Ha Gli Zoccoli", "instrument": ["acoustic guitar"], "openmic_genres": ["Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "138924_130560", "filepath": "data/openmic-2018/audio/138/138924_130560.ogg", "artist": "Billy Torello", "title": "Le Pulci Pesano Sul Cuore Come Elefanti", "album": "Il Passato Ha Gli Zoccoli", "instrument": ["acoustic guitar"], "openmic_genres": ["Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "139041_69120", "filepath": "data/openmic-2018/audio/139/139041_69120.ogg", "artist": "Doctor Turtle", "title": "Beaconsfield Villas Stomp", "album": "Search For The Zero Inside Yourself", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues", "Folk", "Soundtrack", "Instrumental"], "genre": ["jaz_blu", "soundtrack", "cou_fol", "instrumental"], "tags": []}
{"sample_key": "139429_7680", "filepath": "data/openmic-2018/audio/139/139429_7680.ogg", "artist": "Blue Dot Sessions", "title": "Santre", "album": "K2", "instrument": ["acoustic guitar"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "140591_3840", "filepath": "data/openmic-2018/audio/140/140591_3840.ogg", "artist": "The Quahogs", "title": "Dorothy", "album": "AS220 Foo Fest 2016 Sampler", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Punk", "Americana"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "140878_326400", "filepath": "data/openmic-2018/audio/140/140878_326400.ogg", "artist": "C Joynes", "title": "Medley: Our Prayer/On Reading \"On Sleeping It Off In Rapid City\"/Happy and Delightful", "album": "Live at WFMU for Surface Noise with Joe McGasko, 7/11/2016", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "140887_84480", "filepath": "data/openmic-2018/audio/140/140887_84480.ogg", "artist": "C Joynes", "title": "Nuevo Tango", "album": "Live at WFMU for Surface Noise with Joe McGasko, 7/11/2016", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Lo-Fi"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "141279_15360", "filepath": "data/openmic-2018/audio/141/141279_15360.ogg", "artist": "Nutmeg", "title": "Arthur's Dream", "album": "Camelot Calling", "instrument": ["acoustic guitar", "other instrument"], "openmic_genres": ["Comedy", "Pop", "British Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "141876_99840", "filepath": "data/openmic-2018/audio/141/141876_99840.ogg", "artist": "Andy G. Cohen", "title": "Warmer", "album": "MUL / DIV", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "142256_26880", "filepath": "data/openmic-2018/audio/142/142256_26880.ogg", "artist": "Blue Dot Sessions", "title": "Pukae", "album": "Cloud Harbor", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "143223_1413120", "filepath": "data/openmic-2018/audio/143/143223_1413120.ogg", "artist": "Rosali", "title": "Live on Brian Turner's Show, 8/16/16", "album": "Live on Brian Turner's Show, 8/16/16", "instrument": ["electric guitar"], "openmic_genres": ["Country", "Pop", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "143915_215040", "filepath": "data/openmic-2018/audio/143/143915_215040.ogg", "artist": "Freakwater", "title": "Velveteen Matador", "album": "Live on WFMU's Three Chord Monte with Joe Belock - February 22, 2016", "instrument": ["electric guitar"], "openmic_genres": ["Country", "Rock", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "145026_176640", "filepath": "data/openmic-2018/audio/145/145026_176640.ogg", "artist": "Little Ozzy & J. E. Frey", "title": "Does The Evil Belong Here?", "album": "The Darkness Thou Canst Not Dispel", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Metal"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "145115_422400", "filepath": "data/openmic-2018/audio/145/145115_422400.ogg", "artist": "Hermelin", "title": "Mellow F.S.", "album": "Hermelin", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Progressive", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "145400_11520", "filepath": "data/openmic-2018/audio/145/145400_11520.ogg", "artist": "Behavior", "title": "Untitled 2", "album": "Live on WFMU's Infinite Distortion with Josh Landes - 4/25/16", "instrument": ["electric guitar"], "openmic_genres": ["Rock", "Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "145457_46080", "filepath": "data/openmic-2018/audio/145/145457_46080.ogg", "artist": "Squire Tuck", "title": "Loving You Because...", "album": "The Pleasure of Discovery", "instrument": ["acoustic guitar"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "145509_96000", "filepath": "data/openmic-2018/audio/145/145509_96000.ogg", "artist": "Squire Tuck", "title": "A Journey In To The Great Unknown", "album": "Long Time Comin'", "instrument": ["acoustic guitar"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "145937_76800", "filepath": "data/openmic-2018/audio/145/145937_76800.ogg", "artist": "Blue Dot Sessions", "title": "Filing Away", "album": "Crab Shack", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "146071_53760", "filepath": "data/openmic-2018/audio/146/146071_53760.ogg", "artist": "Doctor Turtle", "title": "Robot Crambo", "album": "Hasta La Blister: Longer Guitar Instrumentals", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Soundtrack", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "147271_34560", "filepath": "data/openmic-2018/audio/147/147271_34560.ogg", "artist": "Dana Boul\u00e9", "title": "Burgundy and the Trumpet", "album": "We All Need To Calm Down", "instrument": ["acoustic guitar", "violin"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "148407_38400", "filepath": "data/openmic-2018/audio/148/148407_38400.ogg", "artist": "Squire Tuck", "title": "Running Out of Heroes", "album": "Running Out of Heroes", "instrument": ["acoustic guitar"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "148567_245760", "filepath": "data/openmic-2018/audio/148/148567_245760.ogg", "artist": "Jan M\u00f6rgenson", "title": "Concatenation", "album": "STUDIO", "instrument": ["acoustic guitar"], "openmic_genres": ["Blues"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "148933_230400", "filepath": "data/openmic-2018/audio/148/148933_230400.ogg", "artist": "Stolen Children Surf Gang", "title": "Flat Spell", "album": "Uninvite Me!", "instrument": ["electric guitar"], "openmic_genres": ["Lo-Fi", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "152263_337920", "filepath": "data/openmic-2018/audio/152/152263_337920.ogg", "artist": "Terra Selvaggia", "title": "terra selvaggia", "album": "Sincerity Is The Key", "instrument": ["electric guitar", "other instrument"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "152470_184320", "filepath": "data/openmic-2018/audio/152/152470_184320.ogg", "artist": "Kuniya", "title": "Higan no Hana", "album": "Live at WFMU on What Was Music? with Marcel M, 1/11/2017", "instrument": ["acoustic guitar", "voice"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "154246_84480", "filepath": "data/openmic-2018/audio/154/154246_84480.ogg", "artist": "Blue Dot Sessions", "title": "Waterbourne", "album": "Algea Fields", "instrument": ["electric guitar"], "openmic_genres": ["Soundtrack", "Minimalism", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "154624_88320", "filepath": "data/openmic-2018/audio/154/154624_88320.ogg", "artist": "Greg Cartwright", "title": "We Repel Each Other", "album": "Live at Monty Hall, 2/10/2017", "instrument": ["electric guitar"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "154666_61440", "filepath": "data/openmic-2018/audio/154/154666_61440.ogg", "artist": "Montana Skies", "title": "Soulstice 21", "album": "Lullaby and Goodnight", "instrument": ["cello", "acoustic guitar"], "openmic_genres": ["Kid-Friendly"], "genre": ["NA"], "tags": []}
{"sample_key": "155067_49920", "filepath": "data/openmic-2018/audio/155/155067_49920.ogg", "artist": "Tim Evans", "title": "Lights That Glow", "album": "Live at WFMU on Burn It Down! with Nate K, 1/22/2017", "instrument": ["acoustic guitar"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "005202_330240", "filepath": "data/openmic-2018/audio/005/005202_330240.ogg", "artist": "Carla Bozulich's Evangelista", "title": "Pissing", "album": "Live at WFMU on Brian Turner's Show on 12/5/2006\u2026", "instrument": ["organ"], "openmic_genres": ["Rock", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "012131_76800", "filepath": "data/openmic-2018/audio/012/012131_76800.ogg", "artist": "Heather Perkins", "title": "Waiting Becomes Not Waiting", "album": "Little Humans", "instrument": ["voice", "other instrument"], "openmic_genres": ["Electronic", "Ambient Electronic", "Minimal Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "018407_234240", "filepath": "data/openmic-2018/audio/018/018407_234240.ogg", "artist": "Learning Music", "title": "Nature's Cup", "album": "LMM 2.1 - Allegro", "instrument": ["organ", "saxophone"], "openmic_genres": ["Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "036762_111360", "filepath": "data/openmic-2018/audio/036/036762_111360.ogg", "artist": "Koen Park", "title": "Distortions Grains and Emotions", "album": "Nowhere Home", "instrument": ["organ"], "openmic_genres": ["Ambient Electronic", "Experimental Pop", "IDM"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "038609_46080", "filepath": "data/openmic-2018/audio/038/038609_46080.ogg", "artist": "Dr. Phibes and The Ten Plagues of Egypt", "title": "Veris leta facies", "album": "Carmina Burana", "instrument": ["electric guitar", "organ"], "openmic_genres": ["Classical", "Metal", "Experimental"], "genre": ["instrumental", "pop_roc", "cla"], "tags": []}
{"sample_key": "039220_23040", "filepath": "data/openmic-2018/audio/039/039220_23040.ogg", "artist": "Igor Krutogolov & Kenji Siratori", "title": "Corpse City 2", "album": "WHNZ:15:KATER", "instrument": ["organ"], "openmic_genres": ["Ambient", "Spoken Weird"], "genre": ["instrumental"], "tags": []}
{"sample_key": "039223_107520", "filepath": "data/openmic-2018/audio/039/039223_107520.ogg", "artist": "Igor Krutogolov & Kenji Siratori", "title": "Corpse City 0", "album": "WHNZ:15:KATER", "instrument": ["organ"], "openmic_genres": ["Ambient", "Spoken Weird"], "genre": ["instrumental"], "tags": []}
{"sample_key": "042733_272640", "filepath": "data/openmic-2018/audio/042/042733_272640.ogg", "artist": "Colin Johnco", "title": "Comme les \u00c9toiles", "album": "Neo Love", "instrument": ["organ"], "openmic_genres": ["Experimental", "Ambient Electronic"], "genre": ["instrumental"], "tags": []}
{"sample_key": "047915_34560", "filepath": "data/openmic-2018/audio/047/047915_34560.ogg", "artist": "Dumbo Gets Mad", "title": "Limbo's Village", "album": "Elephants At The Door", "instrument": ["organ"], "openmic_genres": ["Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "048789_23040", "filepath": "data/openmic-2018/audio/048/048789_23040.ogg", "artist": "The Valleys", "title": "8", "album": "Tape", "instrument": ["organ"], "openmic_genres": ["Lo-Fi", "Shoegaze"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "054618_184320", "filepath": "data/openmic-2018/audio/054/054618_184320.ogg", "artist": "Le Chevalier", "title": "Fields", "album": "Bad Panda #102", "instrument": ["organ"], "openmic_genres": ["Psych-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "057736_307200", "filepath": "data/openmic-2018/audio/057/057736_307200.ogg", "artist": "Act", "title": "Wait & See For Restart", "album": "XL", "instrument": ["organ"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "058039_245760", "filepath": "data/openmic-2018/audio/058/058039_245760.ogg", "artist": "The Ghost Of 29 Megacycles", "title": "Leelo (Part 1)", "album": "Broadcast One", "instrument": ["organ"], "openmic_genres": ["Electronic", "Post-Rock", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "058702_491520", "filepath": "data/openmic-2018/audio/058/058702_491520.ogg", "artist": "James Kibbie", "title": "BWV 525: Trio Sonata I in E-Flat Major - 2. Adagio", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058707_61440", "filepath": "data/openmic-2018/audio/058/058707_61440.ogg", "artist": "James Kibbie", "title": "BWV 527: Trio Sonata III in D Minor - 1. Andante", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058709_34560", "filepath": "data/openmic-2018/audio/058/058709_34560.ogg", "artist": "James Kibbie", "title": "BWV 527: Trio Sonata III in D Minor - 3. Vivace", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058710_34560", "filepath": "data/openmic-2018/audio/058/058710_34560.ogg", "artist": "James Kibbie", "title": "BWV 528: Trio Sonata IV in E Minor - 1. Adagio; vivace", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058717_19200", "filepath": "data/openmic-2018/audio/058/058717_19200.ogg", "artist": "James Kibbie", "title": "BWV 530: Trio Sonata VI in G Major - 2. Lente", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058718_192000", "filepath": "data/openmic-2018/audio/058/058718_192000.ogg", "artist": "James Kibbie", "title": "BWV 530: Trio Sonata VI in G Major - 3. Allegro", "album": "Bach Organ Works: Trio Sonatas", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058719_203520", "filepath": "data/openmic-2018/audio/058/058719_203520.ogg", "artist": "James Kibbie", "title": "BWV 566: Prelude and E Major", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058721_84480", "filepath": "data/openmic-2018/audio/058/058721_84480.ogg", "artist": "James Kibbie", "title": "BWV 531: Prelude and Fugue in C Major - 2. Fuga", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058725_46080", "filepath": "data/openmic-2018/audio/058/058725_46080.ogg", "artist": "James Kibbie", "title": "BWV 533: Prelude and Fugue in E Minor - 2. Fuga", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058734_65280", "filepath": "data/openmic-2018/audio/058/058734_65280.ogg", "artist": "James Kibbie", "title": "BWV 541: Prelude and Fugue in G Major - 1. Praeludium", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058736_99840", "filepath": "data/openmic-2018/audio/058/058736_99840.ogg", "artist": "James Kibbie", "title": "BWV 543: Prelude and Fugue in A Minor - 1. Praeludium", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058739_3840", "filepath": "data/openmic-2018/audio/058/058739_3840.ogg", "artist": "James Kibbie", "title": "BWV 544: Prelude and Fugue in B Minor - 2. Fuga", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058742_157440", "filepath": "data/openmic-2018/audio/058/058742_157440.ogg", "artist": "James Kibbie", "title": "BWV 546: Prelude and Fugue in C Minor - 1. Praeludium", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058743_76800", "filepath": "data/openmic-2018/audio/058/058743_76800.ogg", "artist": "James Kibbie", "title": "BWV 546: Prelude and Fugue in C Minor - 2. Fuga", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058746_53760", "filepath": "data/openmic-2018/audio/058/058746_53760.ogg", "artist": "James Kibbie", "title": "BWV 548: Prelude and Fugue in E Minor - 1. Praeludium", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058748_7680", "filepath": "data/openmic-2018/audio/058/058748_7680.ogg", "artist": "James Kibbie", "title": "BWV 549: Prelude and Fugue in C Minor - 1. Praeludium", "album": "Bach Organ Works: Preludes and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058757_0", "filepath": "data/openmic-2018/audio/058/058757_0.ogg", "artist": "James Kibbie", "title": "BWV 540: Toccata and Fugue in F Major - 2. Fuga", "album": "Bach Organ Works: Fantasias and Fugues, Toccatas and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058758_168960", "filepath": "data/openmic-2018/audio/058/058758_168960.ogg", "artist": "James Kibbie", "title": "BWV 542: Fantasia and Fugue in G Minor - 1. Fantasia", "album": "Bach Organ Works: Fantasias and Fugues, Toccatas and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058760_142080", "filepath": "data/openmic-2018/audio/058/058760_142080.ogg", "artist": "James Kibbie", "title": "BWV 562: Fantasia and Fugue in C Minor - 1. Fantasia", "album": "Bach Organ Works: Fantasias and Fugues, Toccatas and Fugues", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058766_84480", "filepath": "data/openmic-2018/audio/058/058766_84480.ogg", "artist": "James Kibbie", "title": "Anh. 42: Fugue in F Major", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058768_165120", "filepath": "data/openmic-2018/audio/058/058768_165120.ogg", "artist": "James Kibbie", "title": "BWV 563: Fantasia con imitatione in B Minor", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058773_111360", "filepath": "data/openmic-2018/audio/058/058773_111360.ogg", "artist": "James Kibbie", "title": "BWV 572: Fantasia in G Major", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058774_15360", "filepath": "data/openmic-2018/audio/058/058774_15360.ogg", "artist": "James Kibbie", "title": "BWV 573: Fantasia in C", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058779_26880", "filepath": "data/openmic-2018/audio/058/058779_26880.ogg", "artist": "James Kibbie", "title": "BWV 579: Fugue in B Minor", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058784_130560", "filepath": "data/openmic-2018/audio/058/058784_130560.ogg", "artist": "James Kibbie", "title": "BWV 587: Aria in F", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058785_84480", "filepath": "data/openmic-2018/audio/058/058785_84480.ogg", "artist": "James Kibbie", "title": "BWV 588: Canzona in d", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058787_7680", "filepath": "data/openmic-2018/audio/058/058787_7680.ogg", "artist": "James Kibbie", "title": "BWV 590: Pastorale in F Major - 1. [Prelude]", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058792_61440", "filepath": "data/openmic-2018/audio/058/058792_61440.ogg", "artist": "James Kibbie", "title": "BWV 598: Pedal-Exercitium", "album": "Bach Organ Works: Other Free Works", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058793_65280", "filepath": "data/openmic-2018/audio/058/058793_65280.ogg", "artist": "James Kibbie", "title": "BWV 596: Concerto in d - 5. [Allegro]", "album": "Bach Organ Works: Concerti", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058806_107520", "filepath": "data/openmic-2018/audio/058/058806_107520.ogg", "artist": "James Kibbie", "title": "BWV 596: Concerto in d - 4. Largo e spiccato", "album": "Bach Organ Works: Concerti", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058809_49920", "filepath": "data/openmic-2018/audio/058/058809_49920.ogg", "artist": "James Kibbie", "title": "BWV 599: Nun komm, der Heiden Heiland", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058815_53760", "filepath": "data/openmic-2018/audio/058/058815_53760.ogg", "artist": "James Kibbie", "title": "BWV 605: Der Tag, der is so freudenreich", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058818_46080", "filepath": "data/openmic-2018/audio/058/058818_46080.ogg", "artist": "James Kibbie", "title": "BWV 608: In dulci jubilo", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058820_3840", "filepath": "data/openmic-2018/audio/058/058820_3840.ogg", "artist": "James Kibbie", "title": "BWV 610: Jesu, meine Freude", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058822_26880", "filepath": "data/openmic-2018/audio/058/058822_26880.ogg", "artist": "James Kibbie", "title": "BWV 612: Wir Christenleut", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058825_88320", "filepath": "data/openmic-2018/audio/058/058825_88320.ogg", "artist": "James Kibbie", "title": "BWV 615: In dir ist Freude", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058826_69120", "filepath": "data/openmic-2018/audio/058/058826_69120.ogg", "artist": "James Kibbie", "title": "BWV 616: Mit Fried und Freud ich fahr dahin", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058831_42240", "filepath": "data/openmic-2018/audio/058/058831_42240.ogg", "artist": "James Kibbie", "title": "BWV 621: Da Jesus an dem Kreuze stund", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058837_61440", "filepath": "data/openmic-2018/audio/058/058837_61440.ogg", "artist": "James Kibbie", "title": "BWV 627: Christ ist erstanden", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058840_46080", "filepath": "data/openmic-2018/audio/058/058840_46080.ogg", "artist": "James Kibbie", "title": "BWV 630: Heut triumphieret Gottes Sohn", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058847_3840", "filepath": "data/openmic-2018/audio/058/058847_3840.ogg", "artist": "James Kibbie", "title": "BWV 638: Es ist das Heil uns kommen her", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058848_23040", "filepath": "data/openmic-2018/audio/058/058848_23040.ogg", "artist": "James Kibbie", "title": "BWV 639: Ich ruf zu dir, Herr Jesu Christ", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058851_65280", "filepath": "data/openmic-2018/audio/058/058851_65280.ogg", "artist": "James Kibbie", "title": "BWV 642: Wer nur den lieben Gott l\u00e4\u00dft walten", "album": "Bach Organ Works: Orgelb\u00fcchlein", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058861_299520", "filepath": "data/openmic-2018/audio/058/058861_299520.ogg", "artist": "James Kibbie", "title": "BWV 652: Komm, Heiliger Geist", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058863_218880", "filepath": "data/openmic-2018/audio/058/058863_218880.ogg", "artist": "James Kibbie", "title": "BWV 654: Schm\u00fccke dich, o liebe Seele", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058865_57600", "filepath": "data/openmic-2018/audio/058/058865_57600.ogg", "artist": "James Kibbie", "title": "BWV 656: O Lamm Gottes, unschuldig", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058867_153600", "filepath": "data/openmic-2018/audio/058/058867_153600.ogg", "artist": "James Kibbie", "title": "BWV 658: Von Gott will ich nicht lassen", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058868_211200", "filepath": "data/openmic-2018/audio/058/058868_211200.ogg", "artist": "James Kibbie", "title": "BWV 659: Nun komm, der Heiden Heiland", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058869_72960", "filepath": "data/openmic-2018/audio/058/058869_72960.ogg", "artist": "James Kibbie", "title": "BWV 660: Trio super Nun komm, der Heiden Heiland", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058870_88320", "filepath": "data/openmic-2018/audio/058/058870_88320.ogg", "artist": "James Kibbie", "title": "BWV 661: Nun komm, der Heiden Heiland", "album": "Bach Organ Works: Leipzig Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058879_138240", "filepath": "data/openmic-2018/audio/058/058879_138240.ogg", "artist": "James Kibbie", "title": "BWV 669: Kyrie, Gott Vater in Ewigkeit", "album": "Bach Organ Works: Clavier\u00fcbung III", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058880_19200", "filepath": "data/openmic-2018/audio/058/058880_19200.ogg", "artist": "James Kibbie", "title": "BWV 670: Christe, aller Welt Trost", "album": "Bach Organ Works: Clavier\u00fcbung III", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058884_34560", "filepath": "data/openmic-2018/audio/058/058884_34560.ogg", "artist": "James Kibbie", "title": "BWV 674: Kyrie, Gott heiliger Geist", "album": "Bach Organ Works: Clavier\u00fcbung III", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058896_161280", "filepath": "data/openmic-2018/audio/058/058896_161280.ogg", "artist": "James Kibbie", "title": "BWV 686: Aus tiefer Not schrei ich zu dir", "album": "Bach Organ Works: Clavier\u00fcbung III", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058904_180480", "filepath": "data/openmic-2018/audio/058/058904_180480.ogg", "artist": "James Kibbie", "title": "Anh. 49: Ein feste Burg ist unser Gott", "album": "Bach Organ Works: Individual Chorale Preludes (anh.)", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058906_19200", "filepath": "data/openmic-2018/audio/058/058906_19200.ogg", "artist": "James Kibbie", "title": "Anh. 58: Jesu, meine Freude", "album": "Bach Organ Works: Individual Chorale Preludes (anh.)", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058907_19200", "filepath": "data/openmic-2018/audio/058/058907_19200.ogg", "artist": "James Kibbie", "title": "Anh. 75: Herr Christ, der ein\u0092ge Gottes Sohn", "album": "Bach Organ Works: Individual Chorale Preludes (anh.)", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058908_42240", "filepath": "data/openmic-2018/audio/058/058908_42240.ogg", "artist": "James Kibbie", "title": "BWV 668: Vor deinen Thron tret ich hiermit", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058920_7680", "filepath": "data/openmic-2018/audio/058/058920_7680.ogg", "artist": "James Kibbie", "title": "BWV 703: Gottes Sohn ist kommen", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058930_222720", "filepath": "data/openmic-2018/audio/058/058930_222720.ogg", "artist": "James Kibbie", "title": "BWV 713: Fantasia super Jesu, meine Freude", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058931_7680", "filepath": "data/openmic-2018/audio/058/058931_7680.ogg", "artist": "James Kibbie", "title": "BWV 715: Allein Gott in der H\u00f6h sei Ehr", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058939_180480", "filepath": "data/openmic-2018/audio/058/058939_180480.ogg", "artist": "James Kibbie", "title": "BWV 725: Herr Gott, dich loben wir", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058944_61440", "filepath": "data/openmic-2018/audio/058/058944_61440.ogg", "artist": "James Kibbie", "title": "BWV 730: Liebster Jesu, wir sind hier", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058946_34560", "filepath": "data/openmic-2018/audio/058/058946_34560.ogg", "artist": "James Kibbie", "title": "BWV 732: Lobt Gott, ihr Christen, allzugleich", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058950_30720", "filepath": "data/openmic-2018/audio/058/058950_30720.ogg", "artist": "James Kibbie", "title": "BWV 736: Valet will ich dir geben", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058960_7680", "filepath": "data/openmic-2018/audio/058/058960_7680.ogg", "artist": "James Kibbie", "title": "BWV 753: Jesu, meine Freude", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058966_26880", "filepath": "data/openmic-2018/audio/058/058966_26880.ogg", "artist": "James Kibbie", "title": "BWV 763: Wie sch\u00f6n leuchtet der Morgenstern", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "058968_0", "filepath": "data/openmic-2018/audio/058/058968_0.ogg", "artist": "James Kibbie", "title": "BWV 765: Wir glauben all' an einen Gott, Sch\u00f6pfer", "album": "Bach Organ Works: Individual Chorale Preludes", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059019_913920", "filepath": "data/openmic-2018/audio/059/059019_913920.ogg", "artist": "James Kibbie", "title": "BWV 768: Partite diverse sopra il Corale Sei gegr\u00fc\u00dfet, Jesu g\u00fctig", "album": "Bach Organ Works: Chorale Variations", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059022_3840", "filepath": "data/openmic-2018/audio/059/059022_3840.ogg", "artist": "James Kibbie", "title": "BWV 769a: Canonic Variations - 3. Canone alla settima", "album": "Bach Organ Works: Chorale Variations", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059023_184320", "filepath": "data/openmic-2018/audio/059/059023_184320.ogg", "artist": "James Kibbie", "title": "BWV 769a: Canonic Variations - 4. Canon per augmentationem", "album": "Bach Organ Works: Chorale Variations", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059026_7680", "filepath": "data/openmic-2018/audio/059/059026_7680.ogg", "artist": "James Kibbie", "title": "BWV 714: Ach Gott und Herr", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059029_72960", "filepath": "data/openmic-2018/audio/059/059029_72960.ogg", "artist": "James Kibbie", "title": "BWV 957: Machs mit mir, Gott, nach deiner G\u00fct", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059035_96000", "filepath": "data/openmic-2018/audio/059/059035_96000.ogg", "artist": "James Kibbie", "title": "BWV 1095: O Lamm Gottes unschuldig", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059037_19200", "filepath": "data/openmic-2018/audio/059/059037_19200.ogg", "artist": "James Kibbie", "title": "BWV 1098: Wir glauben all an einen Gott", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059038_53760", "filepath": "data/openmic-2018/audio/059/059038_53760.ogg", "artist": "James Kibbie", "title": "BWV 1099: Aus tiefer Not schrei ich zu dir", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059039_15360", "filepath": "data/openmic-2018/audio/059/059039_15360.ogg", "artist": "James Kibbie", "title": "BWV 1100: Allein zu dir, Herr Jesu Christ", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059041_23040", "filepath": "data/openmic-2018/audio/059/059041_23040.ogg", "artist": "James Kibbie", "title": "BWV 1102: Du Friedef\u00fcrst, Herr Jesu Christ", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059045_65280", "filepath": "data/openmic-2018/audio/059/059045_65280.ogg", "artist": "James Kibbie", "title": "BWV 1106: Gott ist mein Heil, mein Hilf und Trost", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059049_76800", "filepath": "data/openmic-2018/audio/059/059049_76800.ogg", "artist": "James Kibbie", "title": "BWV 1110: O Herre Gott, dein g\u00f6ttlich Wort", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059056_42240", "filepath": "data/openmic-2018/audio/059/059056_42240.ogg", "artist": "James Kibbie", "title": "BWV 1117: Alle Menschen m\u00fcssen sterben", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059057_84480", "filepath": "data/openmic-2018/audio/059/059057_84480.ogg", "artist": "James Kibbie", "title": "BWV 1118: Werde munter, mein Gem\u00fcte", "album": "Bach Organ Works: Neumeister Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059063_38400", "filepath": "data/openmic-2018/audio/059/059063_38400.ogg", "artist": "James Kibbie", "title": "BWV deest (Emans 100): Herr Jesu Christ, wahr' Mensch und Gott", "album": "Bach Organ Works: Rudorff Chorales", "instrument": ["organ"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "064124_215040", "filepath": "data/openmic-2018/audio/064/064124_215040.ogg", "artist": "Trills", "title": "Fetal Discoveries", "album": "Best Of 2006-2011", "instrument": ["organ"], "openmic_genres": ["Experimental", "Ambient Electronic", "IDM", "Downtempo"], "genre": ["instrumental"], "tags": []}
{"sample_key": "064528_403200", "filepath": "data/openmic-2018/audio/064/064528_403200.ogg", "artist": "Antony Raijekov", "title": "Don-ki-Not (2003)", "album": "Jazz U", "instrument": ["piano", "trumpet"], "openmic_genres": ["Jazz", "Trip-Hop", "Lounge"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "070327_134400", "filepath": "data/openmic-2018/audio/070/070327_134400.ogg", "artist": "Jahzzar", "title": "Pigalle", "album": "Paris, Lisboa", "instrument": ["organ"], "openmic_genres": ["Pop", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "071594_57600", "filepath": "data/openmic-2018/audio/071/071594_57600.ogg", "artist": "Mr Morse", "title": "Renunciation", "album": "Collapse", "instrument": ["organ"], "openmic_genres": ["Electronic", "Synth Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "074273_92160", "filepath": "data/openmic-2018/audio/074/074273_92160.ogg", "artist": "johnny_ripper", "title": "gone (with bijou)", "album": "l'esprit d'escalier", "instrument": ["piano", "voice"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient Electronic", "Minimalism"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "084848_80640", "filepath": "data/openmic-2018/audio/084/084848_80640.ogg", "artist": "Vladim\u00edr Hirsch", "title": "Mechanical Sketch I", "album": "Selected Organ & Piano Works", "instrument": ["organ"], "openmic_genres": ["Avant-Garde", "Ambient Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "092953_3840", "filepath": "data/openmic-2018/audio/092/092953_3840.ogg", "artist": "Muhmood", "title": "Organ Etude", "album": "Tamara and Demon", "instrument": ["organ"], "openmic_genres": ["Soundtrack", "Ambient"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "093933_34560", "filepath": "data/openmic-2018/audio/093/093933_34560.ogg", "artist": "kesson shoujo", "title": "April", "album": "childhood in housing complex", "instrument": ["organ"], "openmic_genres": ["Minimal Electronic", "Chill-out"], "genre": ["NA"], "tags": []}
{"sample_key": "094207_149760", "filepath": "data/openmic-2018/audio/094/094207_149760.ogg", "artist": "Josh Woodward", "title": "Flypaper", "album": "The Simple Life (Part 1)", "instrument": ["electric guitar", "organ"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "096791_107520", "filepath": "data/openmic-2018/audio/096/096791_107520.ogg", "artist": "Asthmaboy", "title": "No Ups No Downs (Moon)", "album": "Wanderers", "instrument": ["piano", "voice"], "openmic_genres": ["Electroacoustic", "Indie-Rock"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "097353_19200", "filepath": "data/openmic-2018/audio/097/097353_19200.ogg", "artist": "Setamur - Vladimir KlonK Antonov", "title": "Behind Those Clouds (Vladimir KlonK Antonov RMX)", "album": "Remix Eye Movement", "instrument": ["other instrument"], "openmic_genres": ["Avant-Garde", "Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "098454_99840", "filepath": "data/openmic-2018/audio/098/098454_99840.ogg", "artist": "Morphine Bandit", "title": "[txr065] Morphine Bandit (Ruin and Oblivion) - 01.Information is fragile", "album": "nx2014-01", "instrument": ["organ"], "openmic_genres": ["Experimental", "Drone", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "099929_322560", "filepath": "data/openmic-2018/audio/099/099929_322560.ogg", "artist": "Art Electronix", "title": "Glitchmosphere", "album": "Classwar Karaoke - 0025 Survey", "instrument": ["other instrument"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "102353_76800", "filepath": "data/openmic-2018/audio/102/102353_76800.ogg", "artist": "Alison Eales", "title": "Overblown Gestures", "album": "Dressing Up - The EPOP Covers", "instrument": ["organ"], "openmic_genres": ["Pop", "Indie-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "107017_69120", "filepath": "data/openmic-2018/audio/107/107017_69120.ogg", "artist": "Ergo Phizmiz", "title": "The Coronation of Whomever", "album": "Ergo Phizmiz Spells Trouble", "instrument": ["organ"], "openmic_genres": ["Soundtrack", "Experimental Pop"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "109180_119040", "filepath": "data/openmic-2018/audio/109/109180_119040.ogg", "artist": "Peacock Ball", "title": "Dead Man", "album": "Live in Radio Bunker 15.03.2014", "instrument": ["electric guitar", "organ"], "openmic_genres": ["Experimental", "Psych-Rock", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "119236_207360", "filepath": "data/openmic-2018/audio/119/119236_207360.ogg", "artist": "Vegaenduro", "title": "Ash Blond Garden", "album": "Vegaenduro", "instrument": ["electric guitar", "organ"], "openmic_genres": ["Pop", "Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "120505_26880", "filepath": "data/openmic-2018/audio/120/120505_26880.ogg", "artist": "Samoln", "title": "Oh well, good", "album": "Sways", "instrument": ["organ"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "122659_368640", "filepath": "data/openmic-2018/audio/122/122659_368640.ogg", "artist": "Alan Singley", "title": "One Last Sunset", "album": "Cold Truth", "instrument": ["organ", "piano"], "openmic_genres": ["Soundtrack", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "124872_72960", "filepath": "data/openmic-2018/audio/124/124872_72960.ogg", "artist": "Sergey Cheremisinov", "title": "Drown in Mirrors", "album": "Sea & Night", "instrument": ["organ", "piano", "violin"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "126424_76800", "filepath": "data/openmic-2018/audio/126/126424_76800.ogg", "artist": "Martin Rach", "title": "Double Winds 2", "album": "Double Winds", "instrument": ["organ"], "openmic_genres": ["Drone", "Minimalism", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "129009_165120", "filepath": "data/openmic-2018/audio/129/129009_165120.ogg", "artist": "bbatv", "title": ", isn't the rain nice today?", "album": "PEACE is king here.", "instrument": ["electric guitar", "organ"], "openmic_genres": ["Post-Rock", "Ambient", "New Age"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "130601_184320", "filepath": "data/openmic-2018/audio/130/130601_184320.ogg", "artist": "Alexandre Navarro", "title": "Message", "album": "Daimon", "instrument": ["organ"], "openmic_genres": ["Electronic", "Post-Rock", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "130857_65280", "filepath": "data/openmic-2018/audio/130/130857_65280.ogg", "artist": "Anna von Hausswolff", "title": "Come Wander With Me", "album": "Live on WFMU with Irene Trudel, 11/17/2015", "instrument": ["organ"], "openmic_genres": ["Post-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "131368_130560", "filepath": "data/openmic-2018/audio/131/131368_130560.ogg", "artist": "Luke Pigott", "title": "The Womb (when can we go home?)", "album": "When Can We Go Home", "instrument": ["organ", "other instrument"], "openmic_genres": ["Post-Rock", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "134306_80640", "filepath": "data/openmic-2018/audio/134/134306_80640.ogg", "artist": "Homesick Suni", "title": "Mountain Song", "album": "Crackup Songs ( EP )", "instrument": ["acoustic guitar", "organ"], "openmic_genres": ["Folk", "Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "137409_46080", "filepath": "data/openmic-2018/audio/137/137409_46080.ogg", "artist": "Wayne Kinos", "title": "Pilgrimage - Admiration", "album": "Pilgrimage", "instrument": ["other instrument"], "openmic_genres": ["Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "137823_80640", "filepath": "data/openmic-2018/audio/137/137823_80640.ogg", "artist": "BG du 72", "title": "Faisons la bise au soleil", "album": "Stress et paillettes", "instrument": ["organ", "voice"], "openmic_genres": ["Experimental", "No Wave", "Freak-Folk"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "138364_34560", "filepath": "data/openmic-2018/audio/138/138364_34560.ogg", "artist": "Wayne Kinos", "title": "Monday Meditation", "album": "Sunday Syndrome", "instrument": ["organ"], "openmic_genres": ["Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "141417_230400", "filepath": "data/openmic-2018/audio/141/141417_230400.ogg", "artist": "Solo Organ", "title": "Untitled/As the World Weeps/Untitled/Axis", "album": "Live on WFMU's Surface Noise with Joe McGasko - August 8, 2016", "instrument": ["organ"], "openmic_genres": ["Experimental", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "142172_149760", "filepath": "data/openmic-2018/audio/142/142172_149760.ogg", "artist": "Father Murphy", "title": "Father Murphy", "album": "OCCII Snippets 2002 - 2009", "instrument": ["organ"], "openmic_genres": ["Avant-Garde", "Punk", "Noise"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "143857_65280", "filepath": "data/openmic-2018/audio/143/143857_65280.ogg", "artist": "Merankorii", "title": "Barbershop", "album": "Necktar Volume 3", "instrument": ["organ"], "openmic_genres": ["Electronic", "Noise", "Experimental", "Electroacoustic"], "genre": ["instrumental"], "tags": []}
{"sample_key": "148602_245760", "filepath": "data/openmic-2018/audio/148/148602_245760.ogg", "artist": "Sea Offs", "title": "Leave", "album": "Sea the blind", "instrument": ["voice"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "149167_34560", "filepath": "data/openmic-2018/audio/149/149167_34560.ogg", "artist": "Keshco", "title": "The Joy Of Memory", "album": "Beware! Vision Vol 8: Keshco Hard Levitation 23/11/13", "instrument": ["organ"], "openmic_genres": ["Pop", "Soundtrack", "Psych-Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc", "soundtrack"], "tags": []}
{"sample_key": "151852_122880", "filepath": "data/openmic-2018/audio/151/151852_122880.ogg", "artist": "Monplaisir", "title": "D\u00e9pression post bad", "album": "Le chant des Stompbox", "instrument": ["organ"], "openmic_genres": ["Rock", "Noise", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "155049_230400", "filepath": "data/openmic-2018/audio/155/155049_230400.ogg", "artist": "Nihilore w. Bignonioides", "title": "Akrasia", "album": "My Invisible Friend Vol.2", "instrument": ["organ"], "openmic_genres": ["Electronic", "Psych-Folk", "Experimental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "155171_42240", "filepath": "data/openmic-2018/audio/155/155171_42240.ogg", "artist": "Komiku", "title": "My hobby, destroy the universe, why ? (Evil character's theme)", "album": "It's time for adventure ! vol 4", "instrument": ["electric guitar"], "openmic_genres": ["Folk", "Soundtrack", "Experimental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "001355_391680", "filepath": "data/openmic-2018/audio/001/001355_391680.ogg", "artist": "Olivia Block", "title": "Live in Toronto", "album": "Live In Toronto", "instrument": ["piano"], "openmic_genres": ["Avant-Garde"], "genre": ["NA"], "tags": []}
{"sample_key": "004850_57600", "filepath": "data/openmic-2018/audio/004/004850_57600.ogg", "artist": "Paul Pitman", "title": "Preludes, Book 2 - ", "album": "Favorite Works", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "007559_34560", "filepath": "data/openmic-2018/audio/007/007559_34560.ogg", "artist": "Alvaro", "title": "Part 3", "album": "Live at WFMU on Brian's Show on 11/18/2003", "instrument": ["voice", "other instrument"], "openmic_genres": ["Experimental", "Unclassifiable"], "genre": ["instrumental"], "tags": []}
{"sample_key": "010026_211200", "filepath": "data/openmic-2018/audio/010/010026_211200.ogg", "artist": "Daniel Veesey", "title": "Sonata No. 1 in F Minor, Op. 2 No. 1 - I. Allegro", "album": "Beethoven's Sonata No. 1 In F Minor", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "010027_207360", "filepath": "data/openmic-2018/audio/010/010027_207360.ogg", "artist": "Daniel Veesey", "title": "Sonata No. 1 in F Minor, Op. 2 No. 1 - II. Adagio", "album": "Beethoven's Sonata No. 1 In F Minor", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "010674_130560", "filepath": "data/openmic-2018/audio/010/010674_130560.ogg", "artist": "Nine Inch Nails", "title": "Lights in the Sky", "album": "The Slip", "instrument": ["piano"], "openmic_genres": ["Industrial"], "genre": ["NA"], "tags": []}
{"sample_key": "011374_295680", "filepath": "data/openmic-2018/audio/011/011374_295680.ogg", "artist": "Carlos Gardels", "title": "Beethoven - Sonata No. 31 in A Flat Major, Op. 110 - I, Moderato cantabile molto espressivo", "album": "Beethoven's Sonata No. 31 in A Flat Major", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "011378_165120", "filepath": "data/openmic-2018/audio/011/011378_165120.ogg", "artist": "Daniel Blanch", "title": "Franz Schubert - Fantasy in C major D.760 (op.15) \"Wanderer\" - III. Presto", "album": "Franz Schubert's Fantasy in C major \"Wanderer\"", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "011395_26880", "filepath": "data/openmic-2018/audio/011/011395_26880.ogg", "artist": "Daniel Veesey", "title": "Sonata No. 11 in B Flat Major Op. 22 - II. Adagio con molta espressione", "album": "Beethoven's Sonata No. 11 in B Flat Major", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "011431_42240", "filepath": "data/openmic-2018/audio/011/011431_42240.ogg", "artist": "Daniel Veesey", "title": "Sonata No. 13 in E Flat Major, Op. 27 No. 1 - III. Adagio con espressione", "album": "Beethoven's Sonata No. 13 in E Flat Major", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "011720_387840", "filepath": "data/openmic-2018/audio/011/011720_387840.ogg", "artist": "Karine Gilanyan", "title": "Beethoven - Piano Sonata nr.15 in D major op.28 \"Pastoral\" - II. Andante", "album": "Beethoven's Sonata No. 15 in D Major", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "013267_69120", "filepath": "data/openmic-2018/audio/013/013267_69120.ogg", "artist": "The Rabbits", "title": "Best is geeja", "album": "Squirrel brain", "instrument": ["piano"], "openmic_genres": ["Pop", "Rock", "Post-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "016989_92160", "filepath": "data/openmic-2018/audio/016/016989_92160.ogg", "artist": "Mieczyslaw Horszowski", "title": "Schubert, Sonata in B flat, Scherzo", "album": "Schubert Recital", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "017370_38400", "filepath": "data/openmic-2018/audio/017/017370_38400.ogg", "artist": "Zack Kouns", "title": "Narbonne", "album": "I lift my hands against the gods", "instrument": ["piano"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "017678_541440", "filepath": "data/openmic-2018/audio/017/017678_541440.ogg", "artist": "Jonathan Biss", "title": "Chopin: Three Mazurkas, Op. 59", "album": "Live at the Gardner Museum's Tapestry Room", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "017689_522240", "filepath": "data/openmic-2018/audio/017/017689_522240.ogg", "artist": "Jeremy Denk", "title": "Ives: Sonata No. 2, \u201cConcord Sonata\u201d", "album": "Live at the Gardner Museum's Tapestry Room", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "019330_65280", "filepath": "data/openmic-2018/audio/019/019330_65280.ogg", "artist": "Fabrizio Paterlini", "title": "Profondo Blu", "album": "Viandanze (EP)", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "019477_7680", "filepath": "data/openmic-2018/audio/019/019477_7680.ogg", "artist": "Evgeny Grinko", "title": "other child room", "album": "Cinematic Melodies EP", "instrument": ["piano"], "openmic_genres": ["Composed Music", "Minimalism"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "022966_53760", "filepath": "data/openmic-2018/audio/022/022966_53760.ogg", "artist": "Delphine Dora", "title": "I contradict myself", "album": "Multitudes : Songs from Walt Whitman's Leaves of Grass (2010)", "instrument": ["piano"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "026738_0", "filepath": "data/openmic-2018/audio/026/026738_0.ogg", "artist": "Roger McGuinn", "title": "Take This Hammer", "album": "Folk Den Project", "instrument": ["piano"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "028099_130560", "filepath": "data/openmic-2018/audio/028/028099_130560.ogg", "artist": "Felipe Sarro", "title": "Alkan, 1ere Suite, Op 31, 3 Dans le genre ancien, Tres lentement", "album": "Alkan 25 Preludes, Alleluia", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "031240_69120", "filepath": "data/openmic-2018/audio/031/031240_69120.ogg", "artist": "Felipe Sarro", "title": "Bach, Sinfonia 11, BWV 797", "album": "Bach: Original works and transcriptions", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "032301_15360", "filepath": "data/openmic-2018/audio/032/032301_15360.ogg", "artist": "Delphine Dora", "title": "Climbing The Mountains", "album": "On The Other Side", "instrument": ["piano", "voice"], "openmic_genres": ["Pop", "Free-Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "032946_23040", "filepath": "data/openmic-2018/audio/032/032946_23040.ogg", "artist": "Marcel Pequel", "title": "June", "album": "12 Months", "instrument": ["piano"], "openmic_genres": ["Composed Music", "Minimalism"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "034166_7680", "filepath": "data/openmic-2018/audio/034/034166_7680.ogg", "artist": "Remote", "title": "The End of Winter", "album": "Sub Rosa", "instrument": ["piano"], "openmic_genres": ["Electronic", "Post-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "034913_72960", "filepath": "data/openmic-2018/audio/034/034913_72960.ogg", "artist": "Jimmy Penguin", "title": "XBells", "album": "The S27 Double Bluff", "instrument": ["piano"], "openmic_genres": ["Hip-Hop", "Ambient Electronic", "Downtempo"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "035353_42240", "filepath": "data/openmic-2018/audio/035/035353_42240.ogg", "artist": "Ion", "title": "I piss into the blue sky", "album": "Elfish Tapes", "instrument": ["piano"], "openmic_genres": ["Experimental", "Ambient Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "038193_42240", "filepath": "data/openmic-2018/audio/038/038193_42240.ogg", "artist": "Brown Torpedo", "title": "The Visible Man", "album": "Away Team", "instrument": ["piano", "voice"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "039198_72960", "filepath": "data/openmic-2018/audio/039/039198_72960.ogg", "artist": "U Can Unlearn Guitar", "title": "Flounced In The Garden Of Sunny Delite", "album": "Klassicarnage! Free Classical Revisited", "instrument": ["piano"], "openmic_genres": ["Avant-Garde", "Noise", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "039552_23040", "filepath": "data/openmic-2018/audio/039/039552_23040.ogg", "artist": "Jonah Dempcy", "title": "Azurescent", "album": "Syncretic Beliefs", "instrument": ["piano"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "041571_192000", "filepath": "data/openmic-2018/audio/041/041571_192000.ogg", "artist": "Gepel", "title": "Empingue", "album": "Absolute Balance", "instrument": ["piano"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "041598_184320", "filepath": "data/openmic-2018/audio/041/041598_184320.ogg", "artist": "Evgeny Grinko", "title": "Winter Sunshine", "album": "Winter Sunshine EP", "instrument": ["piano"], "openmic_genres": ["Soundtrack", "Jazz: Out", "Composed Music"], "genre": ["jaz_blu", "soundtrack", "cla"], "tags": []}
{"sample_key": "048394_126720", "filepath": "data/openmic-2018/audio/048/048394_126720.ogg", "artist": "MIT Concert Choir", "title": "Chramer gip die varwe mir", "album": "Orff: Carmina Burana", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "048407_0", "filepath": "data/openmic-2018/audio/048/048407_0.ogg", "artist": "MIT Concert Choir", "title": "In trutina", "album": "Orff: Carmina Burana", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "048840_42240", "filepath": "data/openmic-2018/audio/048/048840_42240.ogg", "artist": "Les Loustics", "title": "quand je perds je gagne aussi", "album": "Les Squelettes", "instrument": ["piano", "voice"], "openmic_genres": ["Experimental", "Free-Jazz", "Kid-Friendly"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "049537_115200", "filepath": "data/openmic-2018/audio/049/049537_115200.ogg", "artist": "Riding Alone For Thousands Of Miles", "title": "Eli", "album": "Brick City Ghosts", "instrument": ["piano"], "openmic_genres": ["Post-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "050597_230400", "filepath": "data/openmic-2018/audio/050/050597_230400.ogg", "artist": "Kristeen Young", "title": "Life's Not Short It's So Long", "album": "Live at WFMU on Dark Night of the Soul with Julie on May 31, 2011", "instrument": ["piano", "voice"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "053815_49920", "filepath": "data/openmic-2018/audio/053/053815_49920.ogg", "artist": "Chris Zabriskie", "title": "Prelude No. 8", "album": "Preludes", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "053825_34560", "filepath": "data/openmic-2018/audio/053/053825_34560.ogg", "artist": "Chris Zabriskie", "title": "Prelude No. 18", "album": "Preludes", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "053830_65280", "filepath": "data/openmic-2018/audio/053/053830_65280.ogg", "artist": "Chris Zabriskie", "title": "Prelude No. 23", "album": "Preludes", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "058441_7680", "filepath": "data/openmic-2018/audio/058/058441_7680.ogg", "artist": "Terror Bird", "title": "Jacob's Really Boring", "album": "beko_hartzine", "instrument": ["piano"], "openmic_genres": ["Lo-Fi", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "059584_211200", "filepath": "data/openmic-2018/audio/059/059584_211200.ogg", "artist": "Circus Marcus", "title": "B\u00fasqueda exploratoria #008 - Graviora Manent.mp3", "album": "B\u00fasquedas Exploratorias", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "059587_119040", "filepath": "data/openmic-2018/audio/059/059587_119040.ogg", "artist": "Circus Marcus", "title": "B\u00fasqueda exploratoria #011 - Id\u00e9e Fixe.mp3", "album": "B\u00fasquedas Exploratorias", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "061056_76800", "filepath": "data/openmic-2018/audio/061/061056_76800.ogg", "artist": "johnny_ripper", "title": "untitled (waking up)", "album": "soundtrack for a film that doesn't exist", "instrument": ["piano"], "openmic_genres": ["Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "061775_61440", "filepath": "data/openmic-2018/audio/061/061775_61440.ogg", "artist": "Claro de Luna", "title": "Irse", "album": "Lo Que Ha Sido y Lo Que Ser\u00e1", "instrument": ["piano"], "openmic_genres": ["Post-Rock", "Shoegaze"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "063630_26880", "filepath": "data/openmic-2018/audio/063/063630_26880.ogg", "artist": "Collection of the Late Howell Bend", "title": "Dominated by Splendor", "album": "Beasts for a While", "instrument": ["piano"], "openmic_genres": ["Noise", "Psych-Folk", "Experimental"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "064074_26880", "filepath": "data/openmic-2018/audio/064/064074_26880.ogg", "artist": "Marcel Pequel", "title": "Six", "album": "From One To Nine", "instrument": ["piano"], "openmic_genres": ["Ambient", "20th Century Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "064438_126720", "filepath": "data/openmic-2018/audio/064/064438_126720.ogg", "artist": "Jared C. Balogh", "title": "A TOUGH DECISION", "album": "A Compilation From Compilations Of Compositions", "instrument": ["piano"], "openmic_genres": ["Jazz", "Classical", "Experimental", "Free-Jazz", "Composed Music"], "genre": ["jaz_blu", "instrumental", "cla"], "tags": []}
{"sample_key": "065662_19200", "filepath": "data/openmic-2018/audio/065/065662_19200.ogg", "artist": "Kimiko Ishizaka", "title": "Variatio 20 a 2 Clav.", "album": "The Open Goldberg Variations", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "065671_103680", "filepath": "data/openmic-2018/audio/065/065671_103680.ogg", "artist": "Kimiko Ishizaka", "title": "Variatio 11 a 2 Clav.", "album": "The Open Goldberg Variations", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "065677_46080", "filepath": "data/openmic-2018/audio/065/065677_46080.ogg", "artist": "Kimiko Ishizaka", "title": "Variatio 5 a 1 ovvero 2 Clav.", "album": "The Open Goldberg Variations", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "065682_272640", "filepath": "data/openmic-2018/audio/065/065682_272640.ogg", "artist": "Kimiko Ishizaka", "title": "Aria", "album": "The Open Goldberg Variations", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "065793_80640", "filepath": "data/openmic-2018/audio/065/065793_80640.ogg", "artist": "Peter Rudenko", "title": "Unawaken", "album": "15 Etudes", "instrument": ["piano"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "069999_249600", "filepath": "data/openmic-2018/audio/069/069999_249600.ogg", "artist": "Jahzzar", "title": "Guilty", "album": "Grab Bag", "instrument": ["piano"], "openmic_genres": ["Pop", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "070069_46080", "filepath": "data/openmic-2018/audio/070/070069_46080.ogg", "artist": "ioflow", "title": "near", "album": "distance", "instrument": ["piano"], "openmic_genres": ["Electronic", "Ambient", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "070939_49920", "filepath": "data/openmic-2018/audio/070/070939_49920.ogg", "artist": "Peter Rudenko", "title": "Haiku", "album": "Incomplete", "instrument": ["piano"], "openmic_genres": ["Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "070941_30720", "filepath": "data/openmic-2018/audio/070/070941_30720.ogg", "artist": "Peter Rudenko", "title": "Them", "album": "Incomplete", "instrument": ["piano"], "openmic_genres": ["Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "078963_272640", "filepath": "data/openmic-2018/audio/078/078963_272640.ogg", "artist": "The Vainglories", "title": "Chips & Cheese & JW", "album": "Solace", "instrument": ["piano"], "openmic_genres": ["Electronic", "Experimental", "Ambient Electronic"], "genre": ["instrumental"], "tags": []}
{"sample_key": "079909_26880", "filepath": "data/openmic-2018/audio/079/079909_26880.ogg", "artist": "Felipe Sarro", "title": "Ravel - Ma mere l'oye - 5: Le Jardin Feerique", "album": "Ravel", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "081795_34560", "filepath": "data/openmic-2018/audio/081/081795_34560.ogg", "artist": "Podington Bear", "title": "De\u0301sormais", "album": "Thoughtful", "instrument": ["piano"], "openmic_genres": ["Electronic", "Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "083079_61440", "filepath": "data/openmic-2018/audio/083/083079_61440.ogg", "artist": "We Are All Alone", "title": "XIII - XV (And It Feels Like The End)", "album": "And It Feels Like The End", "instrument": ["piano"], "openmic_genres": ["Post-Rock", "Ambient Electronic"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "083780_3840", "filepath": "data/openmic-2018/audio/083/083780_3840.ogg", "artist": "mitsuru shimizu", "title": "c", "album": "[EPV_128] Consciousness Dr.", "instrument": ["piano"], "openmic_genres": ["Electronic", "Experimental", "Ambient Electronic"], "genre": ["instrumental"], "tags": []}
{"sample_key": "084860_157440", "filepath": "data/openmic-2018/audio/084/084860_157440.ogg", "artist": "Vladim\u00edr Hirsch", "title": "Trigonal Sonata - II. Allegro. Espressivo", "album": "Selected Organ & Piano Works", "instrument": ["piano"], "openmic_genres": ["Avant-Garde", "Ambient Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "084869_57600", "filepath": "data/openmic-2018/audio/084/084869_57600.ogg", "artist": "Vladim\u00edr Hirsch", "title": "Detaxichen - Epikrasis", "album": "Selected Organ & Piano Works", "instrument": ["piano"], "openmic_genres": ["Avant-Garde", "Ambient Electronic", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "087087_138240", "filepath": "data/openmic-2018/audio/087/087087_138240.ogg", "artist": "Muhr", "title": "De la neige dans la t\u00eate", "album": "Farewell Anthology", "instrument": ["piano"], "openmic_genres": ["Post-Rock", "Experimental", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "087101_69120", "filepath": "data/openmic-2018/audio/087/087101_69120.ogg", "artist": "XPURM", "title": "AJQEA", "album": "PRUMX", "instrument": ["piano"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "089035_26880", "filepath": "data/openmic-2018/audio/089/089035_26880.ogg", "artist": "Kai Engel", "title": "Nothing Lasts Forever", "album": "Irsen's Tale", "instrument": ["piano"], "openmic_genres": ["Classical", "Ambient", "IDM", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "089904_195840", "filepath": "data/openmic-2018/audio/089/089904_195840.ogg", "artist": "Cagey House", "title": "Katie the Ghost Decides to March", "album": "Classwar Karaoke - 0023 Survey", "instrument": ["flute", "piano"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "092191_15360", "filepath": "data/openmic-2018/audio/092/092191_15360.ogg", "artist": "Josh Woodward", "title": "A Thousand Skins (Part 2) (No Vocals)", "album": "Ashes", "instrument": ["piano"], "openmic_genres": ["Rock", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "094038_395520", "filepath": "data/openmic-2018/audio/094/094038_395520.ogg", "artist": "Coldnoise", "title": "Poems", "album": "Tales For Mind", "instrument": ["piano"], "openmic_genres": ["Ambient", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "094447_57600", "filepath": "data/openmic-2018/audio/094/094447_57600.ogg", "artist": "Circus Marcus", "title": "Les accouplements r\u00e9p\u00e9titifs", "album": "In Orbitas", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "103739_19200", "filepath": "data/openmic-2018/audio/103/103739_19200.ogg", "artist": "Art of Flying", "title": "a. piano #6", "album": "fingerface", "instrument": ["piano"], "openmic_genres": ["Soundtrack", "Singer-Songwriter", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "103744_3840", "filepath": "data/openmic-2018/audio/103/103744_3840.ogg", "artist": "Felix Green", "title": "pan's forest jam (johnny_ripper remix)", "album": "seximer", "instrument": ["piano"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient Electronic", "Minimalism"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "107785_42240", "filepath": "data/openmic-2018/audio/107/107785_42240.ogg", "artist": "Serhio Efremis", "title": "Alice in Wonderland", "album": "Vocalise 8", "instrument": ["piano"], "openmic_genres": ["Electronic", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "108183_72960", "filepath": "data/openmic-2018/audio/108/108183_72960.ogg", "artist": "Pianochocolate", "title": "Pianochocolate - Atlantis", "album": "Lilac Music", "instrument": ["piano"], "openmic_genres": ["Classical", "Ambient", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "109103_168960", "filepath": "data/openmic-2018/audio/109/109103_168960.ogg", "artist": "CKZ", "title": "A Ang\u00fastia das Plantas na Varanda", "album": "Dim Shrewd and Innuendo", "instrument": ["piano"], "openmic_genres": ["Ambient Electronic", "IDM"], "genre": ["NA"], "tags": []}
{"sample_key": "109932_57600", "filepath": "data/openmic-2018/audio/109/109932_57600.ogg", "artist": "Kai Engel", "title": "Comfort In A Bottle", "album": "Paradigm Lost", "instrument": ["piano"], "openmic_genres": ["Classical", "Soundtrack", "Ambient", "IDM"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "110241_96000", "filepath": "data/openmic-2018/audio/110/110241_96000.ogg", "artist": "chientaroli espinal rave vitale", "title": "el misterio del gorgonoxeo", "album": "relatos del terod\u00e1ctilo", "instrument": ["piano", "trumpet"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "110697_84480", "filepath": "data/openmic-2018/audio/110/110697_84480.ogg", "artist": "Lezet", "title": "Nervousness", "album": "Dabblings 4", "instrument": ["piano"], "openmic_genres": ["Avant-Garde", "Experimental", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "112144_199680", "filepath": "data/openmic-2018/audio/112/112144_199680.ogg", "artist": "Bureaucrat & The Conspirators", "title": "Chimpanzee at Dusk", "album": "January of the Amoeba", "instrument": ["piano", "voice"], "openmic_genres": ["Psych-Rock", "Spoken Weird", "Improv"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "112866_30720", "filepath": "data/openmic-2018/audio/112/112866_30720.ogg", "artist": "Keshco", "title": "London Hope (mournful piano)", "album": "Filmmaker's Reference Kit Volume 1", "instrument": ["piano"], "openmic_genres": ["Pop", "Psych-Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "113255_0", "filepath": "data/openmic-2018/audio/113/113255_0.ogg", "artist": "Circus Marcus", "title": "Aux puces No 11", "album": "Aux puces", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "113683_7680", "filepath": "data/openmic-2018/audio/113/113683_7680.ogg", "artist": "Ergo Phizmiz", "title": "A Little Bit of Dreammusik", "album": "Instrumental music from Billiards", "instrument": ["other instrument"], "openmic_genres": ["Soundtrack", "Experimental Pop", "Opera"], "genre": ["soundtrack", "cla", "pop_roc"], "tags": []}
{"sample_key": "117912_238080", "filepath": "data/openmic-2018/audio/117/117912_238080.ogg", "artist": "John Lewis Grant", "title": "Bach Prelude & Fugue 1", "album": "24 Preludes & Fugues, J. S. Bach", "instrument": ["piano"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "117913_0", "filepath": "data/openmic-2018/audio/117/117913_0.ogg", "artist": "John Lewis Grant", "title": "Bach Prelude & Fugue 13", "album": "24 Preludes & Fugues, J. S. Bach", "instrument": ["piano"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "117922_142080", "filepath": "data/openmic-2018/audio/117/117922_142080.ogg", "artist": "John Lewis Grant", "title": "Bach Prelude & Fugue 19", "album": "24 Preludes & Fugues, J. S. Bach", "instrument": ["piano"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "117923_126720", "filepath": "data/openmic-2018/audio/117/117923_126720.ogg", "artist": "John Lewis Grant", "title": "Bach Prelude & Fugue 17", "album": "24 Preludes & Fugues, J. S. Bach", "instrument": ["piano"], "openmic_genres": ["Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "118515_80640", "filepath": "data/openmic-2018/audio/118/118515_80640.ogg", "artist": "Keshco", "title": "Royal Flush", "album": "Unaccentuated", "instrument": ["piano"], "openmic_genres": ["Pop", "Psych-Folk", "Experimental Pop"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "118954_96000", "filepath": "data/openmic-2018/audio/118/118954_96000.ogg", "artist": "Igor Khabarov", "title": "Try", "album": "Be", "instrument": ["piano"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "119114_11520", "filepath": "data/openmic-2018/audio/119/119114_11520.ogg", "artist": "FortyOne", "title": "a little tune", "album": "Music That's Better Than It Sounds", "instrument": ["piano"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "119320_49920", "filepath": "data/openmic-2018/audio/119/119320_49920.ogg", "artist": "Georgia & August Greenberg", "title": "Where The Wild Things Are", "album": "Sing Songs For You And Me!", "instrument": ["piano", "voice"], "openmic_genres": ["Pop", "Kid-Friendly"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "119710_19200", "filepath": "data/openmic-2018/audio/119/119710_19200.ogg", "artist": "Podington Bear", "title": "Poor Wayfaring Stranger", "album": "Folkways", "instrument": ["piano"], "openmic_genres": ["Folk", "Soundtrack", "Minimalism", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "120281_19200", "filepath": "data/openmic-2018/audio/120/120281_19200.ogg", "artist": "Cory Gray", "title": "Piano Anticipation1", "album": "Music For Film & TV", "instrument": ["piano"], "openmic_genres": ["Rock", "Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack", "pop_roc"], "tags": []}
{"sample_key": "120758_145920", "filepath": "data/openmic-2018/audio/120/120758_145920.ogg", "artist": "Podington Bear", "title": "Grebe", "album": "Daydream", "instrument": ["other instrument"], "openmic_genres": ["Electronic", "Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "120905_368640", "filepath": "data/openmic-2018/audio/120/120905_368640.ogg", "artist": "Der Zirkus brennt", "title": "Appear'd a fiery crest above the waves", "album": "A heap of broken images", "instrument": ["piano"], "openmic_genres": ["Jazz", "Experimental", "Electroacoustic"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "120906_403200", "filepath": "data/openmic-2018/audio/120/120906_403200.ogg", "artist": "Der Zirkus brennt", "title": "Spy from the void", "album": "A heap of broken images", "instrument": ["piano"], "openmic_genres": ["Jazz", "Experimental", "Electroacoustic"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "122261_526080", "filepath": "data/openmic-2018/audio/122/122261_526080.ogg", "artist": "CXLVIII", "title": "thirtyone", "album": "CXLVIII EP", "instrument": ["piano"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "122660_341760", "filepath": "data/openmic-2018/audio/122/122660_341760.ogg", "artist": "Alan Singley", "title": "Supermoon", "album": "Cold Truth", "instrument": ["organ", "piano"], "openmic_genres": ["Soundtrack", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "123523_130560", "filepath": "data/openmic-2018/audio/123/123523_130560.ogg", "artist": "Andrew Seistrup", "title": "Here At Last", "album": "Here At Last", "instrument": ["piano"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "123714_53760", "filepath": "data/openmic-2018/audio/123/123714_53760.ogg", "artist": "Peter Rudenko", "title": "Stay 17", "album": "Inner Mechanics", "instrument": ["piano"], "openmic_genres": ["Contemporary Classical", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "123947_107520", "filepath": "data/openmic-2018/audio/123/123947_107520.ogg", "artist": "Dazie Mae", "title": "The God Fearing Devil", "album": "Seasonal Affective Disorder", "instrument": ["acoustic guitar", "piano", "voice"], "openmic_genres": ["Blues", "Jazz", "Pop"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "124580_3840", "filepath": "data/openmic-2018/audio/124/124580_3840.ogg", "artist": "Irene Moon", "title": "Breakfast", "album": "Entomelodical Opportunities", "instrument": ["piano"], "openmic_genres": ["Radio", "Radio Theater"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "127110_57600", "filepath": "data/openmic-2018/audio/127/127110_57600.ogg", "artist": "Circus Marcus", "title": "Un triste soir d'\u00e9t\u00e9 en bord de lac", "album": "Vous \u00eates quelqu'un de terriblement absent", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "127116_42240", "filepath": "data/openmic-2018/audio/127/127116_42240.ogg", "artist": "Circus Marcus", "title": "Ce caract\u00e8re inhumain", "album": "Vous \u00eates quelqu'un de terriblement absent", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "127617_34560", "filepath": "data/openmic-2018/audio/127/127617_34560.ogg", "artist": "A Ninja Slob Drew Me", "title": "Not I", "album": "[Before/After, Tilt]", "instrument": ["piano"], "openmic_genres": ["Soundtrack", "Post-Rock", "Instrumental"], "genre": ["instrumental", "soundtrack", "pop_roc"], "tags": []}
{"sample_key": "131753_11520", "filepath": "data/openmic-2018/audio/131/131753_11520.ogg", "artist": "Raul Diaz Palomar", "title": "Piedra, pla\u0301stico y vidrio", "album": "M\u00fasica Para Poder Contra Verdad", "instrument": ["piano"], "openmic_genres": ["Electronic", "Soundtrack", "Post-Rock"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "131758_3840", "filepath": "data/openmic-2018/audio/131/131758_3840.ogg", "artist": "Raul Diaz Palomar", "title": "Delibes II", "album": "M\u00fasica Para Poder Contra Verdad", "instrument": ["piano"], "openmic_genres": ["Electronic", "Soundtrack", "Post-Rock"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "132445_3840", "filepath": "data/openmic-2018/audio/132/132445_3840.ogg", "artist": "Nihilore", "title": "Liberosis", "album": "Misophonia", "instrument": ["piano"], "openmic_genres": ["Ambient Electronic", "House", "IDM"], "genre": ["NA"], "tags": []}
{"sample_key": "134894_42240", "filepath": "data/openmic-2018/audio/134/134894_42240.ogg", "artist": "Kevin Bryce", "title": "The fading.mp3", "album": "Strange Mosaics", "instrument": ["piano"], "openmic_genres": ["Electronic", "Ambient", "Downtempo"], "genre": ["instrumental"], "tags": []}
{"sample_key": "138370_30720", "filepath": "data/openmic-2018/audio/138/138370_30720.ogg", "artist": "Wayne Kinos", "title": "An Early Spring Day", "album": "Sunday Syndrome", "instrument": ["piano", "violin"], "openmic_genres": ["Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "139516_3840", "filepath": "data/openmic-2018/audio/139/139516_3840.ogg", "artist": "Maxim Kornyshev", "title": "Zephyr Paraschyut", "album": "Weekend", "instrument": ["piano"], "openmic_genres": ["New Age", "Chill-out", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "142436_184320", "filepath": "data/openmic-2018/audio/142/142436_184320.ogg", "artist": "Wayne Kinos", "title": "Exploring", "album": "Cat Dreams", "instrument": ["piano"], "openmic_genres": ["Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "143142_26880", "filepath": "data/openmic-2018/audio/143/143142_26880.ogg", "artist": "Julie Maxwell's Piano Music", "title": "Childhood Memories", "album": "Farther Than All The Stars", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical", "Composed Music"], "genre": ["cla"], "tags": []}
{"sample_key": "143143_65280", "filepath": "data/openmic-2018/audio/143/143143_65280.ogg", "artist": "Julie Maxwell's Piano Music", "title": "fallen skies", "album": "Farther Than All The Stars", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical", "Composed Music"], "genre": ["cla"], "tags": []}
{"sample_key": "143146_34560", "filepath": "data/openmic-2018/audio/143/143146_34560.ogg", "artist": "Julie Maxwell's Piano Music", "title": "\u5618\u3064\u304d (What could this feeling be?)", "album": "Farther Than All The Stars", "instrument": ["piano"], "openmic_genres": ["Classical", "20th Century Classical", "Composed Music"], "genre": ["cla"], "tags": []}
{"sample_key": "144444_92160", "filepath": "data/openmic-2018/audio/144/144444_92160.ogg", "artist": "Julie Maxwell's Piano Music", "title": "Dark Wonder", "album": "Piano Soul", "instrument": ["piano"], "openmic_genres": ["Classical", "Composed Music", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "144447_107520", "filepath": "data/openmic-2018/audio/144/144447_107520.ogg", "artist": "Julie Maxwell's Piano Music", "title": "Forever in your arms", "album": "Piano Soul", "instrument": ["piano"], "openmic_genres": ["Classical", "Composed Music", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "144450_46080", "filepath": "data/openmic-2018/audio/144/144450_46080.ogg", "artist": "Julie Maxwell's Piano Music", "title": "Just a little moment", "album": "Piano Soul", "instrument": ["piano"], "openmic_genres": ["Classical", "Composed Music", "Instrumental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "144977_15360", "filepath": "data/openmic-2018/audio/144/144977_15360.ogg", "artist": "Starover Blue", "title": "Interlude", "album": "Spacegeist", "instrument": ["piano"], "openmic_genres": ["Pop", "Electronic", "Shoegaze"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "145243_23040", "filepath": "data/openmic-2018/audio/145/145243_23040.ogg", "artist": "Ketsa", "title": "Sadmess", "album": "Untying The Knots", "instrument": ["piano"], "openmic_genres": ["Soundtrack", "Ambient Electronic", "Downtempo", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "145556_38400", "filepath": "data/openmic-2018/audio/145/145556_38400.ogg", "artist": "This Mess is Mine", "title": "Roommates (Piano Version by AGPB)", "album": "Sign The Drafts EP", "instrument": ["piano"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "145567_65280", "filepath": "data/openmic-2018/audio/145/145567_65280.ogg", "artist": "Julie Maxwell's Piano Music", "title": "\u9752\u3044 (Blue)", "album": "Lover's Quest", "instrument": ["piano"], "openmic_genres": ["Composed Music", "Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "145686_42240", "filepath": "data/openmic-2018/audio/145/145686_42240.ogg", "artist": "Unheard Music Concepts", "title": "Sickening", "album": "Industry", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Modern Jazz", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "146076_337920", "filepath": "data/openmic-2018/audio/146/146076_337920.ogg", "artist": "Delphine Dora", "title": "Side B", "album": "Parallel World", "instrument": ["piano", "voice"], "openmic_genres": ["Avant-Garde", "Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "146621_111360", "filepath": "data/openmic-2018/audio/146/146621_111360.ogg", "artist": "Circus Marcus", "title": "Ma photo est rat\u00e9e", "album": "Danse R\u00e9my", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "146623_7680", "filepath": "data/openmic-2018/audio/146/146623_7680.ogg", "artist": "Circus Marcus", "title": "L'exil d'Ursula", "album": "Danse R\u00e9my", "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "146655_69120", "filepath": "data/openmic-2018/audio/146/146655_69120.ogg", "artist": "Circus Marcus", "title": "Le retranchement", "album": NaN, "instrument": ["piano"], "openmic_genres": ["Minimalism", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "147194_34560", "filepath": "data/openmic-2018/audio/147/147194_34560.ogg", "artist": "So Far As I Know", "title": "Mono", "album": "Far From The Earth Beneath Your Feet", "instrument": ["piano"], "openmic_genres": ["Post-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "148754_26880", "filepath": "data/openmic-2018/audio/148/148754_26880.ogg", "artist": "Unheard Music Concepts", "title": "The Last Days", "album": "Home", "instrument": ["piano"], "openmic_genres": ["Jazz", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "149528_92160", "filepath": "data/openmic-2018/audio/149/149528_92160.ogg", "artist": "Mathieu Lamontagne & Emmanuel Toledo", "title": "Point de vue", "album": "Paysages \u00c9clectiques", "instrument": ["piano"], "openmic_genres": ["Ambient Electronic", "Drone", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "150859_199680", "filepath": "data/openmic-2018/audio/150/150859_199680.ogg", "artist": "Micha\u0142 James Szewczy\u0144ski", "title": "Wailing Wall (for player piano ensemble and tape)", "album": "The Noise Compilation", "instrument": ["piano"], "openmic_genres": ["Noise", "Experimental", "Glitch"], "genre": ["instrumental"], "tags": []}
{"sample_key": "151768_153600", "filepath": "data/openmic-2018/audio/151/151768_153600.ogg", "artist": "Hicham Chahidi", "title": "Pierre", "album": NaN, "instrument": ["piano"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "000832_23040", "filepath": "data/openmic-2018/audio/000/000832_23040.ogg", "artist": "Here's How", "title": "My Heart Beats Like A Hammer", "album": "blissblood.com", "instrument": ["trumpet", "voice"], "openmic_genres": ["Jazz: Vocal"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "000834_65280", "filepath": "data/openmic-2018/audio/000/000834_65280.ogg", "artist": "Here's How", "title": "You Showed Me The Way", "album": "blissblood.com", "instrument": ["voice"], "openmic_genres": ["Jazz: Vocal"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "004095_107520", "filepath": "data/openmic-2018/audio/004/004095_107520.ogg", "artist": "Polka Madre", "title": "Funeral Brahms", "album": "Polka Madre Live at WFMU on Rob Weisberg's Show on 9/6/2008", "instrument": ["piano", "saxophone"], "openmic_genres": ["Polka", "Balkan", "Europe"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "006963_1128960", "filepath": "data/openmic-2018/audio/006/006963_1128960.ogg", "artist": "Hat City Intuitive", "title": "Inside a grain of sand", "album": "Live at WFMU on Stork's Show on 10/12/1997", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "016234_357120", "filepath": "data/openmic-2018/audio/016/016234_357120.ogg", "artist": "Sid Peacock", "title": "Multiple injuries", "album": "You can't buy everything forever", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Jazz: Vocal", "Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "017369_26880", "filepath": "data/openmic-2018/audio/017/017369_26880.ogg", "artist": "Zack Kouns", "title": "Feast on your flesh", "album": "I lift my hands against the gods", "instrument": ["saxophone", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "018236_65280", "filepath": "data/openmic-2018/audio/018/018236_65280.ogg", "artist": "Gato Loco de Bajo", "title": "Malditos Besos", "album": "Live at WFMU's Transpacific Sound Paradise 8/15/2009", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "018378_368640", "filepath": "data/openmic-2018/audio/018/018378_368640.ogg", "artist": "The Frightingales", "title": "Thursday Night Slacks Down", "album": "Live at WFMU on Dan Bodah's Airborne Event 8/17/2009", "instrument": ["saxophone", "violin"], "openmic_genres": ["Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "020462_57600", "filepath": "data/openmic-2018/audio/020/020462_57600.ogg", "artist": "Sandro Marinoni & Stefano Roncarolo with Roberto Padovan", "title": "Suburban Jive", "album": "Cold Flowers", "instrument": ["piano", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "022971_107520", "filepath": "data/openmic-2018/audio/022/022971_107520.ogg", "artist": "Michael Winkle", "title": "The Only Dream", "album": "The Only Dream", "instrument": ["piano", "saxophone"], "openmic_genres": ["Jazz: Vocal"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "025792_72960", "filepath": "data/openmic-2018/audio/025/025792_72960.ogg", "artist": "S.A.D.O. (Societ\u00e0 Anonima Decostruzionismi Organici)", "title": "Anabasi", "album": "La Differanza", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Jazz", "Experimental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "026533_299520", "filepath": "data/openmic-2018/audio/026/026533_299520.ogg", "artist": "Roman Stolyar & Ilia Belorukov", "title": "Duo", "album": "Live in Vilnius", "instrument": ["piano", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "026682_103680", "filepath": "data/openmic-2018/audio/026/026682_103680.ogg", "artist": "Disen Gage", "title": "Jewboilove", "album": "The Screw-Loose Entertainment (promo version)", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Progressive"], "genre": ["NA"], "tags": []}
{"sample_key": "027639_257280", "filepath": "data/openmic-2018/audio/027/027639_257280.ogg", "artist": "Loucy Louder", "title": "Baritone Guit As", "album": "FOC MUZIK", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Experimental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "028598_38400", "filepath": "data/openmic-2018/audio/028/028598_38400.ogg", "artist": "Breuss Arrizabalaga Quintet", "title": "Mount Fuji", "album": "Nfamoudou-Boudougou", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "028786_334080", "filepath": "data/openmic-2018/audio/028/028786_334080.ogg", "artist": "Jooklo Duo meets John Blum", "title": "Stars' Collisions and Uncreated Cosmos, Part II", "album": "Live at WFMU on The Long Rally 4/27/10", "instrument": ["saxophone"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "032444_215040", "filepath": "data/openmic-2018/audio/032/032444_215040.ogg", "artist": "Claudio Nu\u00f1ez & Sergio Paolucci", "title": "Apariencia v {For Ravi Shankar & Olivier Messiaen)", "album": "Apariencias Desnudas [Naked Appearances]", "instrument": ["trumpet"], "openmic_genres": ["Jazz", "Classical", "Improv"], "genre": ["jaz_blu", "cla"], "tags": []}
{"sample_key": "033420_107520", "filepath": "data/openmic-2018/audio/033/033420_107520.ogg", "artist": "S U E G R I T A Y", "title": "M U N A K U L L A W A Y", "album": "ulqutushuy2", "instrument": ["saxophone"], "openmic_genres": ["Latin America"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "038319_414720", "filepath": "data/openmic-2018/audio/038/038319_414720.ogg", "artist": "Imperial Tiger Orchestra", "title": "Yedao", "album": "Ethio Event #1", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "African"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "039663_65280", "filepath": "data/openmic-2018/audio/039/039663_65280.ogg", "artist": "Quiet Hooves", "title": "Til It Stops Talkin", "album": "Live at WFMU on Nat Roe's Show, Nov 17th 2010", "instrument": ["saxophone"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "042400_211200", "filepath": "data/openmic-2018/audio/042/042400_211200.ogg", "artist": "The Pop Winds", "title": "Sight", "album": "unreleased (Pop Winds)", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Pop", "Experimental Pop", "Synth Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "044298_253440", "filepath": "data/openmic-2018/audio/044/044298_253440.ogg", "artist": "Elliott Sharp/Jack Womack", "title": "Fun City Days (Binibon Overture)", "album": NaN, "instrument": ["saxophone", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "044404_161280", "filepath": "data/openmic-2018/audio/044/044404_161280.ogg", "artist": "Lucy Foley", "title": "Making Circles", "album": "Lucy Foley live on Irene Trudel's Show 01/17/11", "instrument": ["saxophone"], "openmic_genres": ["Pop", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "044808_38400", "filepath": "data/openmic-2018/audio/044/044808_38400.ogg", "artist": "Monk Turner + Fascinoma", "title": "Trust (is Just a Word)", "album": "Emergency Songs", "instrument": ["saxophone"], "openmic_genres": ["Pop", "Easy Listening: Vocal"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "046727_176640", "filepath": "data/openmic-2018/audio/046/046727_176640.ogg", "artist": "Just Plain Ant", "title": "Every Single Word You've Ever Said (Featuring Mark Ingraham)", "album": "netBloc Vol. 32: Make Way For What Lies Ahead", "instrument": ["saxophone"], "openmic_genres": ["Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "048241_138240", "filepath": "data/openmic-2018/audio/048/048241_138240.ogg", "artist": "Stray Dogg", "title": "Drunk", "album": "Almost", "instrument": ["electric guitar", "violin"], "openmic_genres": ["Folk", "Americana"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "048348_234240", "filepath": "data/openmic-2018/audio/048/048348_234240.ogg", "artist": "Clinical Archives Mix", "title": "Agustin Strizzi Group - El Due\u00f1o de las Mentiras", "album": "May 2011", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Experimental", "Indie-Rock"], "genre": ["jaz_blu", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "048350_119040", "filepath": "data/openmic-2018/audio/048/048350_119040.ogg", "artist": "Clinical Archives Mix", "title": "Sandro Marinoni - Dagon", "album": "May 2011", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Experimental", "Indie-Rock"], "genre": ["jaz_blu", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "051839_226560", "filepath": "data/openmic-2018/audio/051/051839_226560.ogg", "artist": "Superpoze", "title": "Sweet September", "album": "Lost Cosmonaut", "instrument": ["saxophone"], "openmic_genres": ["Trip-Hop", "Hip-Hop Beats"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "052019_165120", "filepath": "data/openmic-2018/audio/052/052019_165120.ogg", "artist": "1/2 byZERO & Nik RUbanov", "title": "Livestock 02", "album": "Half byZERO and NiK RUbanov Joined: Livestock", "instrument": ["saxophone"], "openmic_genres": ["Punk", "Free-Jazz", "Hardcore"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "054257_107520", "filepath": "data/openmic-2018/audio/054/054257_107520.ogg", "artist": "Assif Tsahar, Mat Maneri & Jim Black", "title": "Part Two", "album": "JAM", "instrument": ["saxophone"], "openmic_genres": ["Modern Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "054545_65280", "filepath": "data/openmic-2018/audio/054/054545_65280.ogg", "artist": "Susie Ibarra & Assif Tsahar", "title": "Arrival/Salutations", "album": "Home cookin'", "instrument": ["saxophone"], "openmic_genres": ["Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "054781_238080", "filepath": "data/openmic-2018/audio/054/054781_238080.ogg", "artist": "FESTI 40 music festival", "title": "Zala & Assif", "album": "Burkina Faso: Festi 40 Unreleased Recordings", "instrument": ["saxophone"], "openmic_genres": ["African"], "genre": ["NA"], "tags": []}
{"sample_key": "054783_42240", "filepath": "data/openmic-2018/audio/054/054783_42240.ogg", "artist": "FESTI 40 music festival", "title": "Mursi & Assif 2", "album": "Burkina Faso: Festi 40 Unreleased Recordings", "instrument": ["saxophone", "other instrument"], "openmic_genres": ["African"], "genre": ["NA"], "tags": []}
{"sample_key": "054993_249600", "filepath": "data/openmic-2018/audio/054/054993_249600.ogg", "artist": "Ada Rave Cuarteto", "title": "El Modo y la \u00c9tica Braxtono", "album": "La Continuidad", "instrument": ["saxophone"], "openmic_genres": ["Free-Jazz", "Jazz: Out", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "055526_491520", "filepath": "data/openmic-2018/audio/055/055526_491520.ogg", "artist": "Jaap Blonk's Iles Flottantes", "title": "Har", "album": "Off Shore", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Modern Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "056186_107520", "filepath": "data/openmic-2018/audio/056/056186_107520.ogg", "artist": "The Freak Fandango Orchestra", "title": "At the beginning", "album": "Tales Of A Dead Fish", "instrument": ["violin"], "openmic_genres": ["International", "Indie-Rock", "Balkan", "Romany (Gypsy)"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "063703_322560", "filepath": "data/openmic-2018/audio/063/063703_322560.ogg", "artist": "The Home of Easy Credit", "title": "The Feast of the Meal Replacement Bars", "album": "The Home of Easy Credit", "instrument": ["saxophone"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "064361_72960", "filepath": "data/openmic-2018/audio/064/064361_72960.ogg", "artist": "The Swing Ninjas", "title": "Blue Drag", "album": "Tears Of The Tuba (The Difficult Second Album)", "instrument": ["acoustic guitar", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "068211_241920", "filepath": "data/openmic-2018/audio/068/068211_241920.ogg", "artist": "Jazz at Mladost Club", "title": "Blue Monk", "album": "Jazz Night", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Jazz: Vocal", "Jazz: Out"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "068235_330240", "filepath": "data/openmic-2018/audio/068/068235_330240.ogg", "artist": "M.A.G. Trio", "title": "Midnight voyage", "album": "M.A.G Trio plays Standards", "instrument": ["other instrument"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "068244_433920", "filepath": "data/openmic-2018/audio/068/068244_433920.ogg", "artist": "Miodrag Marjanov Quintet", "title": "Gamblers Blues", "album": "Circus", "instrument": ["acoustic guitar", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "069508_42240", "filepath": "data/openmic-2018/audio/069/069508_42240.ogg", "artist": "konstruKt, Peter Br\u00f6tzmann, H\u00fcseyin Ertun\u00e7 and Dogan Dogusel", "title": "'eklisia 1", "album": "Classwar Karaoke - 0019 Survey", "instrument": ["saxophone"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "070174_42240", "filepath": "data/openmic-2018/audio/070/070174_42240.ogg", "artist": "Mudang Rouge", "title": "Liquid Lavendar Light", "album": "Fantasy Horizon", "instrument": ["saxophone"], "openmic_genres": ["Avant-Garde", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "070853_1090560", "filepath": "data/openmic-2018/audio/070/070853_1090560.ogg", "artist": "Oliver Lake with the Creative Arts Orchestra", "title": "Oliver Lake with CAO", "album": "Oliver Lake with CAO", "instrument": ["saxophone"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "071375_138240", "filepath": "data/openmic-2018/audio/071/071375_138240.ogg", "artist": "Oprachina", "title": "Attimi", "album": "The Jazz Farm", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "071381_15360", "filepath": "data/openmic-2018/audio/071/071381_15360.ogg", "artist": "Oprachina", "title": "Nitro", "album": "The Jazz Farm", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "073653_96000", "filepath": "data/openmic-2018/audio/073/073653_96000.ogg", "artist": "Goto80 and the Uwe Schenk Band", "title": "Ponky Fonky Ferret", "album": "The Ferret Show", "instrument": ["saxophone", "other instrument"], "openmic_genres": ["Jazz", "Chiptune"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "076621_53760", "filepath": "data/openmic-2018/audio/076/076621_53760.ogg", "artist": "Sick To The Back Teeth", "title": "Mildly Poison", "album": "Counterpoint", "instrument": ["organ", "saxophone"], "openmic_genres": ["Rock", "Electronic", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "081362_226560", "filepath": "data/openmic-2018/audio/081/081362_226560.ogg", "artist": "Maya Solov\u00e9y", "title": "Silent Night", "album": "Midwinter", "instrument": ["voice"], "openmic_genres": ["Holiday", "Christmas"], "genre": ["NA"], "tags": []}
{"sample_key": "084835_49920", "filepath": "data/openmic-2018/audio/084/084835_49920.ogg", "artist": "Pk jazz Collective", "title": "For William Parker (feat. Artyom Gorbatovskiy)", "album": "Summa Technologiae", "instrument": ["saxophone"], "openmic_genres": ["Krautrock", "Lounge", "Nu-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "085642_126720", "filepath": "data/openmic-2018/audio/085/085642_126720.ogg", "artist": "Orthotonics", "title": "Woman Fish", "album": "Necroscopix (1970-1981)", "instrument": ["saxophone"], "openmic_genres": ["Rock", "Punk", "Experimental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "085891_149760", "filepath": "data/openmic-2018/audio/085/085891_149760.ogg", "artist": "Natalia Skvortsova", "title": "August", "album": "Summer Time", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "086120_264960", "filepath": "data/openmic-2018/audio/086/086120_264960.ogg", "artist": "The Woolies", "title": "Powerhouse", "album": "2002 Cathedral Park Jazz Festival", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Jazz: Vocal"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "087032_65280", "filepath": "data/openmic-2018/audio/087/087032_65280.ogg", "artist": "Vi-Fi", "title": "Song of the Night Cafe in New Orleans", "album": "Song of the Night Cafe in New Orleans", "instrument": ["saxophone"], "openmic_genres": ["Lo-Fi", "Nu-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "090752_96000", "filepath": "data/openmic-2018/audio/090/090752_96000.ogg", "artist": "Somewhere Off Jazz Street", "title": "Fly", "album": "A quiet light", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Electronic", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "095325_153600", "filepath": "data/openmic-2018/audio/095/095325_153600.ogg", "artist": "Prana-Bindu/Mittimus/Paul Flaherty/Randall Colbourne", "title": "Piece One", "album": "October 20th 2013", "instrument": ["saxophone"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "097190_103680", "filepath": "data/openmic-2018/audio/097/097190_103680.ogg", "artist": "Jessie Evans", "title": "Is it Fire?", "album": "Live on WFMU with Mary McSorley: December 17, 2013", "instrument": ["saxophone"], "openmic_genres": ["International", "No Wave", "New Wave", "Lounge"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "097196_11520", "filepath": "data/openmic-2018/audio/097/097196_11520.ogg", "artist": "Jessie Evans", "title": "Scientist of Love", "album": "Live on WFMU with Mary McSorley: December 17, 2013", "instrument": ["saxophone", "other instrument"], "openmic_genres": ["International", "No Wave", "New Wave", "Lounge"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "098009_92160", "filepath": "data/openmic-2018/audio/098/098009_92160.ogg", "artist": "Gospel Of Mars", "title": "Seven Down", "album": "Live at The Back Door 11/26/13", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "105536_61440", "filepath": "data/openmic-2018/audio/105/105536_61440.ogg", "artist": "The Freak Fandango Orchestra", "title": "Bublitzki", "album": "Wild Goats and Useless Heroes", "instrument": ["saxophone"], "openmic_genres": ["International", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "106745_2538240", "filepath": "data/openmic-2018/audio/106/106745_2538240.ogg", "artist": "Music Factory", "title": "Music Factory 45", "album": "Music Factory", "instrument": ["saxophone"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "106804_4032000", "filepath": "data/openmic-2018/audio/106/106804_4032000.ogg", "artist": "Music Factory", "title": "Music Factory 86", "album": "Music Factory", "instrument": ["saxophone"], "openmic_genres": ["Free-Folk", "Jazz: Out", "Improv"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "106816_1363200", "filepath": "data/openmic-2018/audio/106/106816_1363200.ogg", "artist": "Music Factory", "title": "Music Factory 99", "album": "Music Factory", "instrument": ["piano", "saxophone"], "openmic_genres": ["Free-Folk", "Jazz: Out", "Improv"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "110244_495360", "filepath": "data/openmic-2018/audio/110/110244_495360.ogg", "artist": "chientaroli espinal rave vitale", "title": "silencio ar\u00e1cnido", "album": "relatos del terod\u00e1ctilo", "instrument": ["saxophone"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "110617_165120", "filepath": "data/openmic-2018/audio/110/110617_165120.ogg", "artist": "saQi", "title": "Moonshine", "album": "The Well", "instrument": ["trumpet"], "openmic_genres": ["Alternative Hip-Hop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "111164_180480", "filepath": "data/openmic-2018/audio/111/111164_180480.ogg", "artist": "Fantastic Swimmers", "title": "Loren Ipsum", "album": "Oversplit", "instrument": ["saxophone"], "openmic_genres": ["Avant-Garde"], "genre": ["NA"], "tags": []}
{"sample_key": "114305_3840", "filepath": "data/openmic-2018/audio/114/114305_3840.ogg", "artist": "poj.wlkp", "title": "Terschelling", "album": "P\u00f3\u0142noc P\u00f3\u0142sen P\u00f3\u0142dzie\u0144", "instrument": ["saxophone"], "openmic_genres": ["Post-Rock", "Freak-Folk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "116815_276480", "filepath": "data/openmic-2018/audio/116/116815_276480.ogg", "artist": "Pheasant", "title": "Debtors", "album": "Gravel Beach", "instrument": ["electric guitar"], "openmic_genres": ["Country", "Rock", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "125060_57600", "filepath": "data/openmic-2018/audio/125/125060_57600.ogg", "artist": "paulo chagas and jo\u00e3o pedro viegas", "title": "composition for improbable lovers", "album": "the legendary story of a slug and a beetle", "instrument": ["saxophone"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "125367_372480", "filepath": "data/openmic-2018/audio/125/125367_372480.ogg", "artist": "Big Mean Sound Machine", "title": "Sweet Tooth", "album": "Live on WFMU's Transpacific Sound Paradise: Sep 19, 2015", "instrument": ["saxophone", "other instrument"], "openmic_genres": ["Jazz", "Afrobeat", "Dance"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "125369_80640", "filepath": "data/openmic-2018/audio/125/125369_80640.ogg", "artist": "Big Mean Sound Machine", "title": "Burning Van", "album": "Live on WFMU's Transpacific Sound Paradise: Sep 19, 2015", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Afrobeat", "Dance"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "126434_145920", "filepath": "data/openmic-2018/audio/126/126434_145920.ogg", "artist": "Boom Boom Beckett", "title": "To Be a Master P.", "album": "Boom boom baby", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "126436_115200", "filepath": "data/openmic-2018/audio/126/126436_115200.ogg", "artist": "Boom Boom Beckett", "title": "C est pareil", "album": "Boom boom baby", "instrument": ["piano", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "126438_88320", "filepath": "data/openmic-2018/audio/126/126438_88320.ogg", "artist": "Boom Boom Beckett", "title": "Nella Nostra Bellezza", "album": "Boom boom baby", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "127185_49920", "filepath": "data/openmic-2018/audio/127/127185_49920.ogg", "artist": "Wintermitts", "title": "Oceans Apart", "album": "Oceans", "instrument": ["trumpet"], "openmic_genres": ["Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "129148_61440", "filepath": "data/openmic-2018/audio/129/129148_61440.ogg", "artist": "herv\u00e9 perez & andr\u00e9 darius", "title": "five is not a number", "album": "the bridge ep", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Experimental", "Free-Jazz", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "131661_42240", "filepath": "data/openmic-2018/audio/131/131661_42240.ogg", "artist": "3K3", "title": "Garden Studies #5", "album": "Live on WFMU's The Long Rally with Scott McDowell: Nov 5, 2015", "instrument": ["saxophone"], "openmic_genres": ["Classical", "Free-Jazz"], "genre": ["jaz_blu", "cla"], "tags": []}
{"sample_key": "132201_11520", "filepath": "data/openmic-2018/audio/132/132201_11520.ogg", "artist": "Paolo Pavan", "title": "Silent", "album": "Inside", "instrument": ["piano", "saxophone"], "openmic_genres": ["International", "Jazz", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "135335_30720", "filepath": "data/openmic-2018/audio/135/135335_30720.ogg", "artist": "Caleb Lemond", "title": "Intro", "album": "The Learning Curve", "instrument": ["saxophone", "voice"], "openmic_genres": ["Pop", "Hip-Hop"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "135980_61440", "filepath": "data/openmic-2018/audio/135/135980_61440.ogg", "artist": "Marrach / Bad Poet / Chtin Mara", "title": "Argumentum Humanum", "album": "Opus Oratorium", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Experimental", "Trip-Hop"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "139254_272640", "filepath": "data/openmic-2018/audio/139/139254_272640.ogg", "artist": "State Champion", "title": "There Is a Highlight Reel", "album": "Live on WFMU's Burn It Down! with Nate K.: June 12, 2016", "instrument": ["electric guitar"], "openmic_genres": ["Garage", "Singer-Songwriter", "Americana"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "143018_126720", "filepath": "data/openmic-2018/audio/143/143018_126720.ogg", "artist": "Lobo Loco", "title": "Chummy Evening B", "album": "Waiting for YOU", "instrument": ["saxophone"], "openmic_genres": ["Blues", "Jazz", "Folk"], "genre": ["jaz_blu", "cou_fol"], "tags": []}
{"sample_key": "143101_211200", "filepath": "data/openmic-2018/audio/143/143101_211200.ogg", "artist": "Pill", "title": "Vagabond/ TV Wedding", "album": "Live on WFMU with Marty McSorley, 8/12/2016", "instrument": ["saxophone", "other instrument"], "openmic_genres": ["Rock", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "145228_11520", "filepath": "data/openmic-2018/audio/145/145228_11520.ogg", "artist": "Eter Dub", "title": "Hand of Jah Dub", "album": "In Da Name Of Jah", "instrument": ["saxophone", "other instrument"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "146128_80640", "filepath": "data/openmic-2018/audio/146/146128_80640.ogg", "artist": "Lobo Loco", "title": "Rendezvous (ID 346)", "album": "NIce Nowhere", "instrument": ["piano", "saxophone"], "openmic_genres": ["Jazz", "Classical", "Lounge"], "genre": ["jaz_blu", "cla"], "tags": []}
{"sample_key": "148765_30720", "filepath": "data/openmic-2018/audio/148/148765_30720.ogg", "artist": "Unheard Music Concepts", "title": "Palms", "album": "Home", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Instrumental"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "150107_1244160", "filepath": "data/openmic-2018/audio/150/150107_1244160.ogg", "artist": "Barrence Whitfield and The Savages", "title": "Live at Monty Hall, Part I", "album": "Live at Monty Hall, 10/1/2016", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Blues", "Rock"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "150147_11520", "filepath": "data/openmic-2018/audio/150/150147_11520.ogg", "artist": "Gary Wilson and Tredici Bacci", "title": "6.4 Equals Make Out", "album": "Live on WFMU with Marty McSorley, 9/23/2016", "instrument": ["saxophone"], "openmic_genres": ["Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "154402_142080", "filepath": "data/openmic-2018/audio/154/154402_142080.ogg", "artist": "Lobo Loco", "title": "Stay with me (ID 456)", "album": "Candy Nights", "instrument": ["acoustic guitar", "saxophone"], "openmic_genres": ["Blues", "Jazz", "Soundtrack", "Lounge"], "genre": ["jaz_blu", "soundtrack"], "tags": []}
{"sample_key": "154435_330240", "filepath": "data/openmic-2018/audio/154/154435_330240.ogg", "artist": "Milton Arias", "title": "Gordo Jos\u00e9", "album": "64.Antes del Fin", "instrument": ["piano", "saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "154559_3840", "filepath": "data/openmic-2018/audio/154/154559_3840.ogg", "artist": "Derek Clegg", "title": "Fake Apologies", "album": "DC4t", "instrument": ["acoustic guitar", "saxophone"], "openmic_genres": ["Folk", "Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "154839_134400", "filepath": "data/openmic-2018/audio/154/154839_134400.ogg", "artist": "KieLoBot", "title": "Chicky Chacky (KM+T 01)", "album": "Chicky & Chacky", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "Soul-RnB", "Funk", "Lounge"], "genre": ["jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "001542_176640", "filepath": "data/openmic-2018/audio/001/001542_176640.ogg", "artist": "Samara Lubelski", "title": "Sister Silver", "album": "Spectacular of Passages", "instrument": ["electric guitar", "trumpet"], "openmic_genres": ["Psych-Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "003875_264960", "filepath": "data/openmic-2018/audio/003/003875_264960.ogg", "artist": "Loto Ball Show", "title": "Loto Ball Show", "album": "Live at WFMU on Diane's Show 7/3/2008", "instrument": ["trumpet"], "openmic_genres": ["Rock", "Post-Punk"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "005040_234240", "filepath": "data/openmic-2018/audio/005/005040_234240.ogg", "artist": "Helen Clark and Joseph A. Phillips", "title": "Don't take my darling boy away", "album": "Edison Blue Amberol: 2622", "instrument": ["flute", "trumpet", "voice"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "006381_195840", "filepath": "data/openmic-2018/audio/006/006381_195840.ogg", "artist": "Raya Brass Band", "title": "Kateva Lenko", "album": "Raya Brass Band Live on WFMU from the 2009 Golden Festival in NYC", "instrument": ["clarinet"], "openmic_genres": ["International", "Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "006596_53760", "filepath": "data/openmic-2018/audio/006/006596_53760.ogg", "artist": "Eskalators", "title": "Dessert First", "album": "Live at WFMU on Keili's Show 11/22/08", "instrument": ["trumpet"], "openmic_genres": ["Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "008946_49920", "filepath": "data/openmic-2018/audio/008/008946_49920.ogg", "artist": "The Diskettes", "title": "Cabin By The Sea", "album": "Phoning It In 03/23/05", "instrument": ["voice"], "openmic_genres": ["Pop", "Folk", "Lo-Fi"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "010087_0", "filepath": "data/openmic-2018/audio/010/010087_0.ogg", "artist": "Maurice Burkhart", "title": "Oh, how that woman could cook", "album": "Edison Blue Amberol: 2647", "instrument": ["trumpet"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "010367_46080", "filepath": "data/openmic-2018/audio/010/010367_46080.ogg", "artist": "Billy Murray", "title": "This is the life", "album": "Edison Blue Amberol: 2375", "instrument": ["voice"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "013264_215040", "filepath": "data/openmic-2018/audio/013/013264_215040.ogg", "artist": "The Rabbits", "title": "Blow you crow", "album": "Squirrel brain", "instrument": ["trumpet"], "openmic_genres": ["Pop", "Rock", "Post-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "018064_0", "filepath": "data/openmic-2018/audio/018/018064_0.ogg", "artist": "Curlew", "title": "Fabulous Drop", "album": "Live at WFMU on Stork's show 6/22/1997", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Funk", "Jazz: Out"], "genre": ["jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "020093_3840", "filepath": "data/openmic-2018/audio/020/020093_3840.ogg", "artist": "Frank Curtis", "title": "The Ragtime Curate", "album": "Antique Phonograph Music Program 03/23/1999", "instrument": ["trumpet"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "022195_111360", "filepath": "data/openmic-2018/audio/022/022195_111360.ogg", "artist": "Brown Recluse", "title": "Mystifying Oracle", "album": "Phoning It In 05/18/06", "instrument": ["trumpet"], "openmic_genres": ["Pop", "Lo-Fi", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "023186_126720", "filepath": "data/openmic-2018/audio/023/023186_126720.ogg", "artist": "Lee Maddeford", "title": "Tom's Lullaby (with Les Gauchers Orchestra)", "album": "Instrumentals 1", "instrument": ["cello", "trumpet", "violin"], "openmic_genres": ["Classical", "20th Century Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "024050_1201920", "filepath": "data/openmic-2018/audio/024/024050_1201920.ogg", "artist": "Audrey Chen & Nate Wooley", "title": "ISSUE Project Room, Jan 12 2010", "album": "ISSUE Project Room, Jan 12 2010", "instrument": ["trumpet"], "openmic_genres": ["Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "024357_487680", "filepath": "data/openmic-2018/audio/024/024357_487680.ogg", "artist": "Afroskull", "title": "Redemption", "album": "Live at WFMU on Irene Trudel's Show 1/18/10", "instrument": ["saxophone"], "openmic_genres": ["Rock", "Funk"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "026497_372480", "filepath": "data/openmic-2018/audio/026/026497_372480.ogg", "artist": "Ergo Phizmiz & Friends", "title": "The Faust Cycle [Portion 08]", "album": "The Faust Cycle [Portion 08]", "instrument": ["trumpet", "violin"], "openmic_genres": ["Polka", "Spoken Weird", "Sound Collage", "Opera"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "026878_215040", "filepath": "data/openmic-2018/audio/026/026878_215040.ogg", "artist": "Wondrous Fair", "title": "Charmer", "album": "3", "instrument": ["trumpet"], "openmic_genres": ["Compilation"], "genre": ["NA"], "tags": []}
{"sample_key": "029345_149760", "filepath": "data/openmic-2018/audio/029/029345_149760.ogg", "artist": "RemigioBalboa y suArmonio", "title": "CUECA POTOSINA", "album": "Ulqutushuy", "instrument": ["other instrument"], "openmic_genres": ["Latin America"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "030075_92160", "filepath": "data/openmic-2018/audio/030/030075_92160.ogg", "artist": "Little Lacy & His Trembling Lips", "title": "Cocktails for Thieu", "album": "Artifacts Vol. 1", "instrument": ["trumpet"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "031159_480000", "filepath": "data/openmic-2018/audio/031/031159_480000.ogg", "artist": "BNeg\u00e3o & Seletores de Freq\u00fc\u00eancia", "title": "Prioridades", "album": "Enxugando Gelo", "instrument": ["trumpet"], "openmic_genres": ["Funk", "Reggae - Dub"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "033422_53760", "filepath": "data/openmic-2018/audio/033/033422_53760.ogg", "artist": "BANDA TIPICA LOS AUTENTICOS DE MARKA MARKA", "title": "DIANA Qui\u00f1ota Chumbivilcas(2)", "album": "ulqutushuy2", "instrument": ["trumpet"], "openmic_genres": ["Latin America"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "036153_299520", "filepath": "data/openmic-2018/audio/036/036153_299520.ogg", "artist": "Neuroleptic Trio", "title": "5'th heroic improvisation", "album": "Heroic IMprovisations", "instrument": ["trumpet"], "openmic_genres": ["Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "041411_218880", "filepath": "data/openmic-2018/audio/041/041411_218880.ogg", "artist": "Victor Herbert Orchestra", "title": "1911 - Dream Medley (Naughty Marietta intermezzo)", "album": "Edison Cylinders", "instrument": ["trumpet"], "openmic_genres": ["Classical", "Old-Time / Historic"], "genre": ["cla"], "tags": []}
{"sample_key": "041415_61440", "filepath": "data/openmic-2018/audio/041/041415_61440.ogg", "artist": "Victor Herbert Orchestra", "title": "1913 - Chanson Triste", "album": "Edison Cylinders", "instrument": ["trumpet"], "openmic_genres": ["Classical", "Old-Time / Historic"], "genre": ["cla"], "tags": []}
{"sample_key": "041569_34560", "filepath": "data/openmic-2018/audio/041/041569_34560.ogg", "artist": "Francesco Lettera", "title": "Going to the City of Emeralds", "album": "Absolute Balance", "instrument": ["flute", "trumpet", "violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "043100_1751040", "filepath": "data/openmic-2018/audio/043/043100_1751040.ogg", "artist": "The Tudor Consort", "title": "Passio Domini Nostri Jesu Christe", "album": "Passio Domini Nostri Jesu Christe - Richard Davy", "instrument": ["trumpet"], "openmic_genres": ["Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "043535_184320", "filepath": "data/openmic-2018/audio/043/043535_184320.ogg", "artist": "MWE", "title": "Sirtos (from Yiannitsa)", "album": "Live at the 2011 Golden Festival (MWE)", "instrument": ["other instrument"], "openmic_genres": ["Middle East", "Balkan", "Romany (Gypsy)"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "047056_38400", "filepath": "data/openmic-2018/audio/047/047056_38400.ogg", "artist": "The United States Army Old Guard Fife and Drum Corps", "title": "Brandywine Quickstep from the Minstrel Boy Show", "album": "Celebrating 50 Years", "instrument": ["flute", "trumpet"], "openmic_genres": ["Classical", "Americana"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "047061_88320", "filepath": "data/openmic-2018/audio/047/047061_88320.ogg", "artist": "The United States Army Old Guard Fife and Drum Corps", "title": "Simple Gifts/Simple Interlude/Storm in the Valley from the Simple Gifts Show", "album": "Celebrating 50 Years", "instrument": ["trumpet"], "openmic_genres": ["Classical", "Americana"], "genre": ["cou_fol", "cla"], "tags": []}
{"sample_key": "047273_384000", "filepath": "data/openmic-2018/audio/047/047273_384000.ogg", "artist": "Various Artists [Chinstrap Music]", "title": "Teenagers Battle The Thing", "album": "Sounds to Come", "instrument": ["flute", "trumpet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "047275_318720", "filepath": "data/openmic-2018/audio/047/047275_318720.ogg", "artist": "Various Artists [Chinstrap Music]", "title": "Svengali", "album": "Sounds to Come", "instrument": ["trumpet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "052191_88320", "filepath": "data/openmic-2018/audio/052/052191_88320.ogg", "artist": "Clinical Archives Mix", "title": "Bubamara Brass Band - Vasja Prelijte Rakijom!", "album": "July 2011", "instrument": ["clarinet", "saxophone"], "openmic_genres": ["Jazz", "Rock"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "052685_34560", "filepath": "data/openmic-2018/audio/052/052685_34560.ogg", "artist": "Jason Shaw", "title": "SOUTH OF THE BORDER", "album": "Audionautix: Acoustic", "instrument": ["trumpet"], "openmic_genres": ["Country", "Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "052983_238080", "filepath": "data/openmic-2018/audio/052/052983_238080.ogg", "artist": "Crete Boom", "title": "Bona Fide", "album": "Honest Lovers", "instrument": ["saxophone"], "openmic_genres": ["Blues", "Country", "Rock"], "genre": ["jaz_blu", "cou_fol", "pop_roc"], "tags": []}
{"sample_key": "056117_207360", "filepath": "data/openmic-2018/audio/056/056117_207360.ogg", "artist": "The Freak Fandango Orchestra", "title": "No Means No", "album": "Live From WFMU's Transpacific Sound Paradise broadcast from Barb\u00e9s September 17, 2011", "instrument": ["trumpet"], "openmic_genres": ["International", "Folk", "Indie-Rock"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "056891_307200", "filepath": "data/openmic-2018/audio/056/056891_307200.ogg", "artist": "C. Spencer Yeh, Nate Wooley, and Ryan Sawyer", "title": "Improvisation 1", "album": "Live at WFMU on Brian Turner's Show on November 22, 2011", "instrument": ["trumpet"], "openmic_genres": ["Jazz", "Experimental", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "057247_72960", "filepath": "data/openmic-2018/audio/057/057247_72960.ogg", "artist": "Wadada Leo Smith", "title": "Lightening on an Open Field", "album": NaN, "instrument": ["trumpet"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "057249_364800", "filepath": "data/openmic-2018/audio/057/057249_364800.ogg", "artist": "Starlicker", "title": "Set 2", "album": "Live at ISSUE 5/5/2011", "instrument": ["trumpet"], "openmic_genres": ["Improv", "Modern Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "057753_7680", "filepath": "data/openmic-2018/audio/057/057753_7680.ogg", "artist": "United States Marine Band", "title": "Away in a Manger", "album": "Holiday Music Selections", "instrument": ["trumpet"], "openmic_genres": ["Old-Time / Historic", "Holiday"], "genre": ["NA"], "tags": []}
{"sample_key": "060445_529920", "filepath": "data/openmic-2018/audio/060/060445_529920.ogg", "artist": "Imperial Tiger Orchestra", "title": "[feat. Etenesh Wassie]", "album": "Ethio Event #1", "instrument": ["saxophone"], "openmic_genres": ["Jazz", "African"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "060446_272640", "filepath": "data/openmic-2018/audio/060/060446_272640.ogg", "artist": "Imperial Tiger Orchestra", "title": "Etu Gela", "album": "Ethio Event #1", "instrument": ["trumpet"], "openmic_genres": ["Jazz", "African"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "060865_119040", "filepath": "data/openmic-2018/audio/060/060865_119040.ogg", "artist": "Gogofski", "title": "Medley: Prishtinka, Ramo-Ramo, Osman Aga", "album": "Live at the 2012 Golden Festival Main Stage", "instrument": ["other instrument"], "openmic_genres": ["Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "062592_119040", "filepath": "data/openmic-2018/audio/062/062592_119040.ogg", "artist": "Tchakare Kanyembe", "title": "Tchakare Kanyembe track 05", "album": "Live at Sacred Fire stage Boom 2008", "instrument": ["saxophone"], "openmic_genres": ["Afrobeat"], "genre": ["NA"], "tags": []}
{"sample_key": "066865_34560", "filepath": "data/openmic-2018/audio/066/066865_34560.ogg", "artist": "Anitek", "title": "Under Twine", "album": "Calm & Collect Vol.1", "instrument": ["piano", "trumpet"], "openmic_genres": ["Trip-Hop", "Downtempo"], "genre": ["NA"], "tags": []}
{"sample_key": "067581_264960", "filepath": "data/openmic-2018/audio/067/067581_264960.ogg", "artist": "ProleteR", "title": "The Misfit Song", "album": "Curses From The Past", "instrument": ["trumpet", "other instrument"], "openmic_genres": ["Jazz", "Hip-Hop", "Lo-Fi"], "genre": ["jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "068424_299520", "filepath": "data/openmic-2018/audio/068/068424_299520.ogg", "artist": "Fhernando", "title": "Funkylicious", "album": "Last Days of Disco", "instrument": ["trumpet", "other instrument"], "openmic_genres": ["Disco"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "071374_65280", "filepath": "data/openmic-2018/audio/071/071374_65280.ogg", "artist": "Oprachina", "title": "Fat-fast", "album": "The Jazz Farm", "instrument": ["saxophone"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "073960_149760", "filepath": "data/openmic-2018/audio/073/073960_149760.ogg", "artist": "Laura Jorgensen", "title": "Find a Home", "album": "Home", "instrument": ["trumpet"], "openmic_genres": ["Pop", "Folk", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "075697_257280", "filepath": "data/openmic-2018/audio/075/075697_257280.ogg", "artist": "Emily Danger", "title": "Paintings", "album": "Live on WFMU's Dark Night of the Soul with Julie - December 20, 2012", "instrument": ["voice"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "078038_107520", "filepath": "data/openmic-2018/audio/078/078038_107520.ogg", "artist": "Twins of El Dorado", "title": "\"Cats\"/Interlude", "album": "Live on WFMU's Airborne Event with Dan Bodah - Jan 14. 2013", "instrument": ["trumpet", "voice"], "openmic_genres": ["Experimental", "Sound Art"], "genre": ["instrumental"], "tags": []}
{"sample_key": "083643_30720", "filepath": "data/openmic-2018/audio/083/083643_30720.ogg", "artist": "Sergi Boal", "title": "Chavela", "album": "Silenci", "instrument": ["acoustic guitar", "trumpet"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "084156_61440", "filepath": "data/openmic-2018/audio/084/084156_61440.ogg", "artist": "Laura Stevenson and the Cans", "title": "Landslide Song/The Dig", "album": "A Record", "instrument": ["electric guitar", "trumpet", "voice"], "openmic_genres": ["Singer-Songwriter"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "085992_299520", "filepath": "data/openmic-2018/audio/085/085992_299520.ogg", "artist": "HighWay17", "title": "Strange Mechanical Toys Factory", "album": "Some Bizarre Beings", "instrument": ["trumpet", "other instrument"], "openmic_genres": ["Lo-Fi", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "089612_92160", "filepath": "data/openmic-2018/audio/089/089612_92160.ogg", "artist": "Lomz & Lezet", "title": "Playing last ninja (reprise)", "album": "Mother Brain", "instrument": ["other instrument"], "openmic_genres": ["Chip Music"], "genre": ["NA"], "tags": []}
{"sample_key": "098338_119040", "filepath": "data/openmic-2018/audio/098/098338_119040.ogg", "artist": "Gogofski", "title": "Mori Chicho Reche", "album": "Live at the 2014 Golden Festival", "instrument": ["other instrument"], "openmic_genres": ["Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "099130_522240", "filepath": "data/openmic-2018/audio/099/099130_522240.ogg", "artist": "Nashaz", "title": "Jurjina", "album": "Live at the 2014 Golden Festival", "instrument": ["trumpet", "other instrument"], "openmic_genres": ["Jazz", "Folk", "Middle East"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "104207_61440", "filepath": "data/openmic-2018/audio/104/104207_61440.ogg", "artist": "The New Mystikal Troubadours", "title": "Hollow Rhyme", "album": "LA Rock", "instrument": ["electric guitar", "trumpet", "voice"], "openmic_genres": ["Blues", "Psych-Folk", "Experimental", "Psych-Rock", "Improv"], "genre": ["jaz_blu", "instrumental", "cou_fol", "pop_roc"], "tags": []}
{"sample_key": "106114_357120", "filepath": "data/openmic-2018/audio/106/106114_357120.ogg", "artist": "Dario Fariello", "title": "Solo at Freitagsmusik, Hamburg", "album": "Classwar Karaoke - 0026 Survey", "instrument": ["saxophone"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "106830_180480", "filepath": "data/openmic-2018/audio/106/106830_180480.ogg", "artist": "Ergo Phizmiz", "title": "Holiday", "album": "Paleolithic Serenade: Live Recordings 2013-14", "instrument": ["saxophone", "voice"], "openmic_genres": ["Soundtrack", "Experimental Pop"], "genre": ["soundtrack", "pop_roc"], "tags": []}
{"sample_key": "110642_65280", "filepath": "data/openmic-2018/audio/110/110642_65280.ogg", "artist": "Free Variety Theatre with Vasco Morais", "title": "Scaffolding Made Of Bones And Diamond", "album": "Vascology", "instrument": ["piano", "trumpet"], "openmic_genres": ["Free-Jazz", "Improv"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "111722_284160", "filepath": "data/openmic-2018/audio/111/111722_284160.ogg", "artist": "Brice Catherin", "title": "symphonie consternante movement 1", "album": "early works", "instrument": ["trumpet"], "openmic_genres": ["Avant-Garde", "Experimental", "Contemporary Classical"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "113025_99840", "filepath": "data/openmic-2018/audio/113/113025_99840.ogg", "artist": "Malaventura", "title": "Breeze Funk", "album": "#malaventura04", "instrument": ["trumpet"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "115273_176640", "filepath": "data/openmic-2018/audio/115/115273_176640.ogg", "artist": "Catherine Foster Brass Band", "title": "Palma Il", "album": "Live at the 2015 Golden Festival", "instrument": ["trumpet"], "openmic_genres": ["Balkan", "Europe"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "115311_126720", "filepath": "data/openmic-2018/audio/115/115311_126720.ogg", "artist": "Romashka", "title": "Tayna", "album": "Live at Golden Festival 2015", "instrument": ["violin"], "openmic_genres": ["International", "Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "118657_126720", "filepath": "data/openmic-2018/audio/118/118657_126720.ogg", "artist": "Cullah", "title": "To The Rhythm of the Funk", "album": "Cullah The Wild", "instrument": ["trumpet"], "openmic_genres": ["Blues"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "121564_80640", "filepath": "data/openmic-2018/audio/121/121564_80640.ogg", "artist": "Alialujah Choir", "title": "Part Of Me (Instrumental)", "album": "Big Picture Show Instrumentals", "instrument": ["trumpet"], "openmic_genres": ["Soundtrack", "Americana", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "124395_211200", "filepath": "data/openmic-2018/audio/124/124395_211200.ogg", "artist": "PO.TEN.CEE & Art of Flying", "title": "The Earth Spoke", "album": "The Earth Spoke", "instrument": ["trumpet", "voice"], "openmic_genres": ["Soundtrack", "Singer-Songwriter", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental"], "tags": []}
{"sample_key": "125119_11520", "filepath": "data/openmic-2018/audio/125/125119_11520.ogg", "artist": "Strassmeir Dachaur Bauernkapelle", "title": "Werdenfelser Trompeten Landler", "album": "Antique Phonograph Music Program 08/25/2015", "instrument": ["trumpet"], "openmic_genres": ["Old-Time / Historic"], "genre": ["NA"], "tags": []}
{"sample_key": "125281_88320", "filepath": "data/openmic-2018/audio/125/125281_88320.ogg", "artist": "Tyler Twombly", "title": "Brunch Club (extended edition)", "album": "Chill Beats EP", "instrument": ["other instrument"], "openmic_genres": ["Electronic", "Hip-Hop Beats", "Instrumental"], "genre": ["instrumental", "lat_sou"], "tags": []}
{"sample_key": "125366_3840", "filepath": "data/openmic-2018/audio/125/125366_3840.ogg", "artist": "Big Mean Sound Machine", "title": "Seeing The Bigger Picture", "album": "Live on WFMU's Transpacific Sound Paradise: Sep 19, 2015", "instrument": ["trumpet"], "openmic_genres": ["Jazz", "Afrobeat", "Dance"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "127181_3840", "filepath": "data/openmic-2018/audio/127/127181_3840.ogg", "artist": "Wintermitts", "title": "Sharks", "album": "Oceans", "instrument": ["trumpet"], "openmic_genres": ["Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "127494_49920", "filepath": "data/openmic-2018/audio/127/127494_49920.ogg", "artist": "Blue Dot Sessions", "title": "Begrudge", "album": "Darby", "instrument": ["electric guitar", "other instrument"], "openmic_genres": ["Soundtrack", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "132636_430080", "filepath": "data/openmic-2018/audio/132/132636_430080.ogg", "artist": "Seido Salifoski Band", "title": "Plevensko Or", "album": "Live at Golden Festival 2016", "instrument": ["trumpet"], "openmic_genres": ["Folk", "Balkan"], "genre": ["cou_fol", "lat_sou"], "tags": []}
{"sample_key": "135977_261120", "filepath": "data/openmic-2018/audio/135/135977_261120.ogg", "artist": "Marrach / Bad Poet / Chtin Mara", "title": "In Lexus Aeternum", "album": "Opus Oratorium", "instrument": ["trumpet"], "openmic_genres": ["Jazz", "Experimental", "Trip-Hop"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "139086_510720", "filepath": "data/openmic-2018/audio/139/139086_510720.ogg", "artist": "TALES", "title": "The Call Of The Elves", "album": "Echoes From The Last Fairyland", "instrument": ["saxophone"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient Electronic"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "141312_407040", "filepath": "data/openmic-2018/audio/141/141312_407040.ogg", "artist": "Htoo Trio", "title": "Seasons", "album": "Htoo Trio: 2nd album", "instrument": ["saxophone"], "openmic_genres": ["Avant-Garde", "Free-Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "145106_234240", "filepath": "data/openmic-2018/audio/145/145106_234240.ogg", "artist": "Punkt", "title": "The Deep Serene (live)", "album": "Punkt Eklektik Session 01", "instrument": ["trumpet"], "openmic_genres": ["Jazz"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "147684_3840", "filepath": "data/openmic-2018/audio/147/147684_3840.ogg", "artist": "K.I.R.K", "title": "Don't Go", "album": "FrostWire Creative Commons Mixtape Vol. 5", "instrument": ["trumpet"], "openmic_genres": ["Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "150094_165120", "filepath": "data/openmic-2018/audio/150/150094_165120.ogg", "artist": "Honus Honus", "title": "Vampires In The Alley/ The Stripper Has No Navel/ Democracy. Wow./ Oh No!/ Midnight Caller/ All The Drugs/ Heavy Jesus/ Charlyne/ Witch", "album": "Live at WFMU's Monty Hall 11/14/16", "instrument": ["saxophone", "voice"], "openmic_genres": ["Rock", "Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "150155_69120", "filepath": "data/openmic-2018/audio/150/150155_69120.ogg", "artist": "Gary Wilson and Tredici Bacci", "title": "When I Spoke Of Love", "album": "Live on WFMU with Marty McSorley, 9/23/2016", "instrument": ["trumpet"], "openmic_genres": ["Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "150659_195840", "filepath": "data/openmic-2018/audio/150/150659_195840.ogg", "artist": "Harris Brothers Balkan Band", "title": "Balada Za Truba\u010da", "album": "Live at the 2017 Golden Festival", "instrument": ["saxophone"], "openmic_genres": ["International", "Balkan", "Dance"], "genre": ["lat_sou", "pop_roc"], "tags": []}
{"sample_key": "152626_986880", "filepath": "data/openmic-2018/audio/152/152626_986880.ogg", "artist": "Eastern Blokhedz", "title": "Live for WFMU's Transpacific Sound Paradise, 12/10/2016", "album": "Live at Barbes for WFMU's Transpacific Sound Paradise with Rob W, 12/10/2016", "instrument": ["trumpet"], "openmic_genres": ["International"], "genre": ["NA"], "tags": []}
{"sample_key": "000461_218880", "filepath": "data/openmic-2018/audio/000/000461_218880.ogg", "artist": "Cantonement Jazz Band", "title": "Bessemer", "album": "blissblood.com", "instrument": ["violin"], "openmic_genres": ["Blues", "Jazz: Vocal"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "000814_122880", "filepath": "data/openmic-2018/audio/000/000814_122880.ogg", "artist": "Hall Of Fame", "title": "Motion Passings", "album": "Hall of Fame (2000)", "instrument": ["electric guitar", "violin"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "003800_15360", "filepath": "data/openmic-2018/audio/003/003800_15360.ogg", "artist": "Lazy Magnet", "title": "(blueshift)", "album": "Live at WFMU on Jason Sigal's Show on 10/28/2008", "instrument": ["violin"], "openmic_genres": ["Rock", "Electronic"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "003895_122880", "filepath": "data/openmic-2018/audio/003/003895_122880.ogg", "artist": "MetroFolk", "title": "Invitita and de Cingheri from Transylvania", "album": "MetroFolk Live at Barbes on Rob Weisberg's Show 5/17/2008", "instrument": ["violin"], "openmic_genres": ["Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "004014_299520", "filepath": "data/openmic-2018/audio/004/004014_299520.ogg", "artist": "Nalle", "title": "Voi Ruusuni & Alice's Ladder", "album": "Live at WFMU on Irene Trudel's Show on 3/31/2008", "instrument": ["acoustic guitar", "violin"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "012955_88320", "filepath": "data/openmic-2018/audio/012/012955_88320.ogg", "artist": "Greg Houwer", "title": "Opus 384,63", "album": "Roads of oblivion", "instrument": ["violin"], "openmic_genres": ["Pop", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "015873_192000", "filepath": "data/openmic-2018/audio/015/015873_192000.ogg", "artist": "Maria Grigoryeva", "title": "Intro", "album": "Transfer to Unknown", "instrument": ["violin"], "openmic_genres": ["Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "017210_19200", "filepath": "data/openmic-2018/audio/017/017210_19200.ogg", "artist": "Jon Rose", "title": "A Couple Of Sections From The LP \"Tango\"", "album": "Fringe Benefits", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "019301_61440", "filepath": "data/openmic-2018/audio/019/019301_61440.ogg", "artist": "The Polyps", "title": "Fennel's Daughter", "album": "Peixe/Fennel's Daughter 7\"", "instrument": ["flute"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "019994_122880", "filepath": "data/openmic-2018/audio/019/019994_122880.ogg", "artist": "MEDIANTI", "title": "hhh", "album": "MEDIANTI", "instrument": ["violin"], "openmic_genres": ["Electronic", "Middle East", "Sound Poetry"], "genre": ["instrumental"], "tags": []}
{"sample_key": "020472_69120", "filepath": "data/openmic-2018/audio/020/020472_69120.ogg", "artist": "ZONA MC", "title": "Scusatoia", "album": "OGNI VOLTA CHE BESTEMMI CADE UNA STELLINA EMO", "instrument": ["violin"], "openmic_genres": ["Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "021911_280320", "filepath": "data/openmic-2018/audio/021/021911_280320.ogg", "artist": "Falco Subbuteo", "title": "Kiddie Trash (Badger)", "album": "Harrying (November 09)", "instrument": ["violin"], "openmic_genres": ["Improv"], "genre": ["NA"], "tags": []}
{"sample_key": "024689_34560", "filepath": "data/openmic-2018/audio/024/024689_34560.ogg", "artist": "The Rosen Sisters", "title": "Korobushka", "album": "Live at the Golden Festival, Jan 16 2010", "instrument": ["violin"], "openmic_genres": ["Folk", "Europe"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "028868_3840", "filepath": "data/openmic-2018/audio/028/028868_3840.ogg", "artist": "Mr. Kindhoover", "title": "out of tune", "album": "Kindhoover Klassik No. 1", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Breakcore - Hard"], "genre": ["NA"], "tags": []}
{"sample_key": "032052_253440", "filepath": "data/openmic-2018/audio/032/032052_253440.ogg", "artist": "Fulmarine Petrels", "title": "Bring Back the Nurse Hat", "album": "Live at WFMU on The Evan \"Funk\" Davies Show, 6/23/10", "instrument": ["electric guitar"], "openmic_genres": ["Punk", "Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "038167_99840", "filepath": "data/openmic-2018/audio/038/038167_99840.ogg", "artist": "TSEG", "title": "After Chimio", "album": "Evergreens 'n Odditunes", "instrument": ["other instrument"], "openmic_genres": ["Compilation"], "genre": ["NA"], "tags": []}
{"sample_key": "039058_203520", "filepath": "data/openmic-2018/audio/039/039058_203520.ogg", "artist": "Marika Papagika", "title": "Manaki Mou - zembekiko", "album": "The Further the Flame, The Worse it Burns Me: Greek Folk Music in New York City, 1919-1928", "instrument": ["violin"], "openmic_genres": ["Old-Time / Historic", "Middle East", "Europe"], "genre": ["NA"], "tags": []}
{"sample_key": "043341_69120", "filepath": "data/openmic-2018/audio/043/043341_69120.ogg", "artist": "Trio Metrik", "title": "Vogelperspektive", "album": "#01", "instrument": ["piano", "violin"], "openmic_genres": ["Jazz", "Experimental", "Improv"], "genre": ["jaz_blu", "instrumental"], "tags": []}
{"sample_key": "043529_38400", "filepath": "data/openmic-2018/audio/043/043529_38400.ogg", "artist": "Fishtank Ensemble", "title": "Espa\u00f1olette", "album": "Live at the 2011 Golden Festival (FE)", "instrument": ["violin"], "openmic_genres": ["Jazz", "Balkan", "Romany (Gypsy)"], "genre": ["jaz_blu", "lat_sou"], "tags": []}
{"sample_key": "046698_2065920", "filepath": "data/openmic-2018/audio/046/046698_2065920.ogg", "artist": "Corey Cerovsek, violin; Paavali Jumppanen, piano", "title": "Violin Sonata No. 9 in A Major, \"Kreutzer\" (Beethoven)", "album": "Selections, Spring 2011", "instrument": ["piano", "violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "050899_199680", "filepath": "data/openmic-2018/audio/050/050899_199680.ogg", "artist": "Kevin MacLeod", "title": "Canon in D Major", "album": "Classical Sampler", "instrument": ["violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "051154_433920", "filepath": "data/openmic-2018/audio/051/051154_433920.ogg", "artist": "Falco Subbuteo", "title": "Joy Mounts Missus", "album": "Falcon Earful #1", "instrument": ["violin", "other instrument"], "openmic_genres": ["Electronic", "Experimental", "Sound Collage"], "genre": ["instrumental"], "tags": []}
{"sample_key": "051746_153600", "filepath": "data/openmic-2018/audio/051/051746_153600.ogg", "artist": "Moa Pillar", "title": "Soaring Falcon", "album": "Re-Jumble", "instrument": ["violin"], "openmic_genres": ["Electronic", "Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "052472_172800", "filepath": "data/openmic-2018/audio/052/052472_172800.ogg", "artist": "Lee Rosevere", "title": "Dead Mary", "album": "A Madness Most Discreet", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Electronic", "Experimental", "Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "055950_207360", "filepath": "data/openmic-2018/audio/055/055950_207360.ogg", "artist": "John Harrison with the Wichita State University Chamber Players", "title": "Summer Mvt 1 Allegro non molto", "album": "The Four Seasons (Vivaldi)", "instrument": ["violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "055957_3840", "filepath": "data/openmic-2018/audio/055/055957_3840.ogg", "artist": "John Harrison with the Wichita State University Chamber Players", "title": "Winter Mvt 2 Largo", "album": "The Four Seasons (Vivaldi)", "instrument": ["violin"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "061151_215040", "filepath": "data/openmic-2018/audio/061/061151_215040.ogg", "artist": "Psalters", "title": "Brux in a box", "album": "us vs us", "instrument": ["acoustic guitar", "violin"], "openmic_genres": ["International", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "064977_341760", "filepath": "data/openmic-2018/audio/064/064977_341760.ogg", "artist": "Parallel Dream", "title": "Il castello nella foresta", "album": "La bambina che voleva volare", "instrument": ["violin"], "openmic_genres": ["Pop", "Electronic"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "064978_303360", "filepath": "data/openmic-2018/audio/064/064978_303360.ogg", "artist": "Parallel Dream", "title": "La luna nello specchio", "album": "La bambina che voleva volare", "instrument": ["violin"], "openmic_genres": ["Pop", "Electronic"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "065375_15360", "filepath": "data/openmic-2018/audio/065/065375_15360.ogg", "artist": "Paniks live", "title": "EKV", "album": "Live 2003 -2011", "instrument": ["electric guitar", "violin"], "openmic_genres": ["International", "Folk", "Balkan"], "genre": ["cou_fol", "lat_sou"], "tags": []}
{"sample_key": "066688_184320", "filepath": "data/openmic-2018/audio/066/066688_184320.ogg", "artist": "Derek Clegg", "title": "The Best That I Can Be", "album": "Misc Album", "instrument": ["violin"], "openmic_genres": ["Pop", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "067720_61440", "filepath": "data/openmic-2018/audio/067/067720_61440.ogg", "artist": "Harmoos", "title": "Mindet (The Memory)", "album": "All the Learning", "instrument": ["acoustic guitar", "violin"], "openmic_genres": ["Folk", "Experimental", "Electroacoustic"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "073228_314880", "filepath": "data/openmic-2018/audio/073/073228_314880.ogg", "artist": "Chevo L\u00e9g\u00e9 and Pier de Beyr", "title": "Homologue Dans Son Avanc\u00e9e", "album": "Classwar Karaoke - 0020 Survey", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "073815_149760", "filepath": "data/openmic-2018/audio/073/073815_149760.ogg", "artist": "Dexter Britain", "title": "Safe In Glass Houses", "album": "Creative Commons Volume. 5", "instrument": ["piano", "violin"], "openmic_genres": ["Classical", "Soundtrack"], "genre": ["soundtrack", "cla"], "tags": []}
{"sample_key": "076559_76800", "filepath": "data/openmic-2018/audio/076/076559_76800.ogg", "artist": "Textile Audio", "title": "Of Hymn", "album": "The Pomegranate Cycle", "instrument": ["violin"], "openmic_genres": ["Ambient Electronic", "Opera", "Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "080356_107520", "filepath": "data/openmic-2018/audio/080/080356_107520.ogg", "artist": "Nikolay Kolev", "title": "Pazardjik Kopanitsa", "album": "Live at the 2013 Golden Festival", "instrument": ["violin"], "openmic_genres": ["Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "081250_26880", "filepath": "data/openmic-2018/audio/081/081250_26880.ogg", "artist": "Kosta T", "title": "Informality", "album": "Informality", "instrument": ["piano", "violin"], "openmic_genres": ["Classical", "Experimental", "Minimalism"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "082450_130560", "filepath": "data/openmic-2018/audio/082/082450_130560.ogg", "artist": "Lauki", "title": "Noon", "album": "Circuits Imprim\u00e9s vol. 03", "instrument": ["violin"], "openmic_genres": ["Electronic", "Glitch", "IDM"], "genre": ["NA"], "tags": []}
{"sample_key": "086510_30720", "filepath": "data/openmic-2018/audio/086/086510_30720.ogg", "artist": "Trokai", "title": "Tour to ....", "album": "Raptor Lovers", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Field Recordings", "Psych-Folk", "Experimental", "Ambient", "Improv", "Minimalism", "Sound Art", "Instrumental"], "genre": ["instrumental", "soundtrack", "cou_fol"], "tags": []}
{"sample_key": "087100_72960", "filepath": "data/openmic-2018/audio/087/087100_72960.ogg", "artist": "XPURM", "title": "BRPLE", "album": "PRUMX", "instrument": ["cello", "piano"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "089935_357120", "filepath": "data/openmic-2018/audio/089/089935_357120.ogg", "artist": "Mark Tamea", "title": "Objet Trouv\u00e9", "album": "Classwar Karaoke - 0023 Survey", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Field Recordings", "Experimental", "Electroacoustic", "Musique Concrete"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "094036_295680", "filepath": "data/openmic-2018/audio/094/094036_295680.ogg", "artist": "Coldnoise", "title": "Tale For Mind", "album": "Tales For Mind", "instrument": ["violin"], "openmic_genres": ["Ambient", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "096648_180480", "filepath": "data/openmic-2018/audio/096/096648_180480.ogg", "artist": "Kris Anderson - Studio 11", "title": "No Holds Barred", "album": "Studio 11 Free Beats Volume 4", "instrument": ["violin"], "openmic_genres": ["Rap", "Instrumental"], "genre": ["instrumental", "lat_sou"], "tags": []}
{"sample_key": "097224_172800", "filepath": "data/openmic-2018/audio/097/097224_172800.ogg", "artist": "Mars Payne", "title": "Village Night", "album": "Village Stories EP", "instrument": ["violin"], "openmic_genres": ["Folk", "Indie-Rock", "Singer-Songwriter"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "098308_80640", "filepath": "data/openmic-2018/audio/098/098308_80640.ogg", "artist": "NY Spelmanslag", "title": "Rattvik", "album": "Live at the 2014 Golden Festival", "instrument": ["violin"], "openmic_genres": ["Folk", "Europe"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "105671_230400", "filepath": "data/openmic-2018/audio/105/105671_230400.ogg", "artist": "Gilo", "title": "Lei#4", "album": "Studio 6", "instrument": ["cello", "violin"], "openmic_genres": ["Electronic", "Trip-Hop", "Chill-out"], "genre": ["NA"], "tags": []}
{"sample_key": "106661_917760", "filepath": "data/openmic-2018/audio/106/106661_917760.ogg", "artist": "Music Factory", "title": "Music Factory 6", "album": "Music Factory", "instrument": ["violin"], "openmic_genres": ["Free-Folk", "Jazz: Out", "Improv"], "genre": ["cou_fol", "jaz_blu"], "tags": []}
{"sample_key": "106791_345600", "filepath": "data/openmic-2018/audio/106/106791_345600.ogg", "artist": "Music Factory", "title": "Music Factory 74", "album": "Music Factory", "instrument": ["electric guitar", "saxophone"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "107408_130560", "filepath": "data/openmic-2018/audio/107/107408_130560.ogg", "artist": "Kosta T", "title": "ISOlation", "album": "NL", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Field Recordings", "Experimental", "Ambient", "Musique Concrete", "Improv", "Sound Art", "Instrumental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "107420_19200", "filepath": "data/openmic-2018/audio/107/107420_19200.ogg", "artist": "Kosta T", "title": "Exlibris", "album": "Complect for....", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Classical", "Soundtrack", "Experimental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "107560_99840", "filepath": "data/openmic-2018/audio/107/107560_99840.ogg", "artist": "Kosta T", "title": "whisper about....", "album": "Whisper about ....", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Audio Collage", "Field Recordings", "Unclassifiable", "Sound Poetry", "Sound Collage", "Improv", "Chill-out", "Minimalism", "Downtempo", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "107562_153600", "filepath": "data/openmic-2018/audio/107/107562_153600.ogg", "artist": "Kosta T", "title": "Tour to ....", "album": "Whisper about ....", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Audio Collage", "Field Recordings", "Unclassifiable", "Sound Poetry", "Sound Collage", "Improv", "Chill-out", "Minimalism", "Downtempo", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "112267_65280", "filepath": "data/openmic-2018/audio/112/112267_65280.ogg", "artist": "Bruce Miller", "title": "Adama Ka solo 3", "album": "Fahi Guissee and Adama Ka- Jan. 7th, 2013 Diourbel, Senegal", "instrument": ["violin"], "openmic_genres": ["Field Recordings", "African"], "genre": ["instrumental"], "tags": []}
{"sample_key": "112961_218880", "filepath": "data/openmic-2018/audio/112/112961_218880.ogg", "artist": "Trokai", "title": "dfo by Kosta T", "album": "V", "instrument": ["violin"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient", "Unclassifiable", "Improv", "Sound Art", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "112965_364800", "filepath": "data/openmic-2018/audio/112/112965_364800.ogg", "artist": "Trokai", "title": "\u0438\u0434\u0438... by Kosta T", "album": "V", "instrument": ["violin"], "openmic_genres": ["Soundtrack", "Experimental", "Ambient", "Unclassifiable", "Improv", "Sound Art", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "113696_138240", "filepath": "data/openmic-2018/audio/113/113696_138240.ogg", "artist": "La Tab\u00f9", "title": "Immigrantes #1", "album": "Live", "instrument": ["violin"], "openmic_genres": ["Tango"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "116011_341760", "filepath": "data/openmic-2018/audio/116/116011_341760.ogg", "artist": "Nic Bommarito", "title": "Elle va au Japon", "album": "Elle va au Japon", "instrument": ["violin"], "openmic_genres": ["Post-Rock", "Ambient", "Shoegaze"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "117676_61440", "filepath": "data/openmic-2018/audio/117/117676_61440.ogg", "artist": "Kosta T", "title": "I - \u0412 \u0413\u041b\u0423\u0428\u0418", "album": "\u041e\u0411\u0425\u041e\u0414", "instrument": ["cello", "violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Experimental", "Ambient", "Improv", "Sound Art", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "120850_211200", "filepath": "data/openmic-2018/audio/120/120850_211200.ogg", "artist": "MIT Concert Choir", "title": "Der Fruling: Chorus: Ewiger, Machtiger, Gutiger Gott!", "album": "Haydn: The Seasons (Die Jahreszeiten)", "instrument": ["voice"], "openmic_genres": ["Classical", "Opera", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "120883_26880", "filepath": "data/openmic-2018/audio/120/120883_26880.ogg", "artist": "MIT Concert Choir", "title": "Der Winter: Air (Simon): Erblicke Hier, Betorter Mensch", "album": "Haydn: The Seasons (Die Jahreszeiten)", "instrument": ["violin", "voice"], "openmic_genres": ["Classical", "Opera", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "121247_111360", "filepath": "data/openmic-2018/audio/121/121247_111360.ogg", "artist": "Kosta T", "title": "FreeBeard", "album": "BEART)", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Experimental", "Ambient", "Improv", "Sound Art", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "121550_15360", "filepath": "data/openmic-2018/audio/121/121550_15360.ogg", "artist": "Teddy and Marge", "title": "Brat Pack.", "album": "Making Eyes With,,,", "instrument": ["violin"], "openmic_genres": ["Old-Time / Historic", "Country & Western"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "121773_7680", "filepath": "data/openmic-2018/audio/121/121773_7680.ogg", "artist": "Audiobinger", "title": "Made Men", "album": "Skid Row EP", "instrument": ["violin"], "openmic_genres": ["Hip-Hop Beats", "Instrumental"], "genre": ["instrumental", "lat_sou"], "tags": []}
{"sample_key": "121856_11520", "filepath": "data/openmic-2018/audio/121/121856_11520.ogg", "artist": "Satellite Ensemble", "title": "West Strings", "album": "Rituals", "instrument": ["violin"], "openmic_genres": ["Soundtrack", "Experimental", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "122858_96000", "filepath": "data/openmic-2018/audio/122/122858_96000.ogg", "artist": "Kosta T", "title": "1... 2..... 3!!!", "album": "MMMMMMMMMMacbeth", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Experimental", "Ambient", "Improv", "Sound Art", "Instrumental"], "genre": ["instrumental", "soundtrack"], "tags": []}
{"sample_key": "124263_207360", "filepath": "data/openmic-2018/audio/124/124263_207360.ogg", "artist": "Castello di Trokai", "title": "\u041f\u0440\u043e\u0433\u043d\u043e\u0437 \u043d\u0430 ... by Kosta T", "album": "HAXYI \u0424\u0420\u0418 \u0418\u041c\u041f\u0420\u041e\u0412\u0418\u0417\u042d\u0419\u0428\u041d!", "instrument": ["violin"], "openmic_genres": ["Soundtrack", "Experimental", "Free-Folk", "Unclassifiable", "Improv", "Sound Art", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "soundtrack", "cou_fol", "cla"], "tags": []}
{"sample_key": "124812_15360", "filepath": "data/openmic-2018/audio/124/124812_15360.ogg", "artist": "Remus", "title": "Seperated Junkfood", "album": "Humanworkshop 1", "instrument": ["violin"], "openmic_genres": ["Trip-Hop", "Breakbeat"], "genre": ["NA"], "tags": []}
{"sample_key": "125451_322560", "filepath": "data/openmic-2018/audio/125/125451_322560.ogg", "artist": "Kosta T", "title": "\u043f\u0440\u0438\u0435\u0445\u0430\u043b\u0438...", "album": "MECCA", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Psych-Folk", "Experimental", "Free-Folk", "Freak-Folk", "Ambient", "Unclassifiable", "Musique Concrete", "Improv", "Sound Art", "Contemporary Classical", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental", "cla"], "tags": []}
{"sample_key": "127787_161280", "filepath": "data/openmic-2018/audio/127/127787_161280.ogg", "artist": "Kosta T", "title": "\u0437\u0434\u0440\u0430\u0432\u043e\u043c\u044b\u0441\u043b\u0438\u0435?", "album": "\u0421\u041c \u0421\u041b", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Noise", "Psych-Folk", "Experimental", "Ambient", "Unclassifiable", "Musique Concrete", "Improv", "Sound Art", "Contemporary Classical", "Instrumental"], "genre": ["cou_fol", "soundtrack", "instrumental", "cla"], "tags": []}
{"sample_key": "129322_88320", "filepath": "data/openmic-2018/audio/129/129322_88320.ogg", "artist": "Quimorucru", "title": "J'ai \u00e9t\u00e9 au bal", "album": "Un m\u00e9chant party", "instrument": ["violin"], "openmic_genres": ["Folk", "Bluegrass"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "132375_472320", "filepath": "data/openmic-2018/audio/132/132375_472320.ogg", "artist": "Ilan Volkov", "title": "Improv session@halas.am", "album": "Experimental Israel", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Experimental", "20th Century Classical", "Improv"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "132906_7680", "filepath": "data/openmic-2018/audio/132/132906_7680.ogg", "artist": "Release The Long Ships", "title": "Kanchendzonga", "album": "Niche", "instrument": ["violin"], "openmic_genres": ["Post-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "136415_53760", "filepath": "data/openmic-2018/audio/136/136415_53760.ogg", "artist": "Optional", "title": "The Show", "album": "Midsized Eras", "instrument": ["piano"], "openmic_genres": ["Electronic", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "138201_226560", "filepath": "data/openmic-2018/audio/138/138201_226560.ogg", "artist": "Junichi Usui", "title": "Improv - Violin with loop", "album": "A weird person's guide to Junichi USUI", "instrument": ["violin"], "openmic_genres": ["Experimental", "Ambient Electronic", "Improv"], "genre": ["instrumental"], "tags": []}
{"sample_key": "139810_280320", "filepath": "data/openmic-2018/audio/139/139810_280320.ogg", "artist": "Scott Nice", "title": "Picafloricita ft. Shira Netanya", "album": "All The Wild Creatures", "instrument": ["violin", "voice"], "openmic_genres": ["Electronic", "hiphop"], "genre": ["NA"], "tags": []}
{"sample_key": "141023_38400", "filepath": "data/openmic-2018/audio/141/141023_38400.ogg", "artist": "David Szesztay", "title": "Oldie Song", "album": "World & Jazz", "instrument": ["violin"], "openmic_genres": ["Jazz", "Soundtrack", "Instrumental"], "genre": ["instrumental", "jaz_blu", "soundtrack"], "tags": []}
{"sample_key": "142377_88320", "filepath": "data/openmic-2018/audio/142/142377_88320.ogg", "artist": "Edgardo Moreno", "title": "MZ duet", "album": "Point 0", "instrument": ["violin"], "openmic_genres": ["Ambient"], "genre": ["instrumental"], "tags": []}
{"sample_key": "142928_257280", "filepath": "data/openmic-2018/audio/142/142928_257280.ogg", "artist": "David Szesztay", "title": "Subway (Instrumental Version)", "album": "Cinematic Indie", "instrument": ["piano", "violin"], "openmic_genres": ["Rock", "Indie-Rock", "Instrumental"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "143303_42240", "filepath": "data/openmic-2018/audio/143/143303_42240.ogg", "artist": "Chase Alan Willis", "title": "Time Displacement Theory", "album": "The Kingdom of Back", "instrument": ["piano", "violin"], "openmic_genres": ["Soundtrack"], "genre": ["soundtrack"], "tags": []}
{"sample_key": "144727_0", "filepath": "data/openmic-2018/audio/144/144727_0.ogg", "artist": "milky-chu", "title": "Marchen Bach Jam Cream", "album": "Carnival For Edelweiss\u2019s Ensemble", "instrument": ["violin"], "openmic_genres": ["Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "144807_345600", "filepath": "data/openmic-2018/audio/144/144807_345600.ogg", "artist": "Kosta T", "title": "\u0414\u0435\u0432\u044f\u0442\u044c \u043c\u0438\u043d\u0443\u0442 \u0440\u0435\u0448\u0430\u044e\u0442 \u0432\u0441\u0451...", "album": "ALLBIOM", "instrument": ["violin"], "openmic_genres": ["Sound Art"], "genre": ["instrumental"], "tags": []}
{"sample_key": "145466_241920", "filepath": "data/openmic-2018/audio/145/145466_241920.ogg", "artist": "Fodiator", "title": "Fodi Scope", "album": "No Reason", "instrument": ["violin"], "openmic_genres": ["Pop", "Indie-Rock", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "146978_291840", "filepath": "data/openmic-2018/audio/146/146978_291840.ogg", "artist": "Kosta T", "title": "\u0438\u0441\u043a\u0440\u0435\u043d\u043d\u0435", "album": "\u043d\u0435 \u0437\u043d\u0430\u044e", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Experimental", "Freak-Folk", "Ambient", "Unclassifiable", "Improv", "Sound Art", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "147072_165120", "filepath": "data/openmic-2018/audio/147/147072_165120.ogg", "artist": "Kosta T", "title": "\u0417\u0432\u043e\u043d\u043a\u0438\u0439 \u0413\u043e\u043b\u043e\u0441", "album": "Relax Violin", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Soundtrack", "Experimental", "Ambient", "Improv", "Minimalism", "Contemporary Classical", "Instrumental"], "genre": ["instrumental", "soundtrack", "cla"], "tags": []}
{"sample_key": "151720_126720", "filepath": "data/openmic-2018/audio/151/151720_126720.ogg", "artist": "Kosta T", "title": "\u041c\u0443\u0434\u0440\u044b\u0439", "album": "\u0414\u0440\u0443\u0434\u0431\u0430", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Classical", "Experimental"], "genre": ["instrumental", "cla"], "tags": []}
{"sample_key": "154881_76800", "filepath": "data/openmic-2018/audio/154/154881_76800.ogg", "artist": "Kosta T", "title": "\u043f\u043e\u0440\u0442\u0438\u0448", "album": "\u0421\u0438\u043b\u0443\u044f\u043d\u0438\u0435 \u0445\u0442\u043e \u044f", "instrument": ["violin"], "openmic_genres": ["Avant-Garde", "Experimental", "Ambient", "Improv", "Sound Art", "Instrumental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "000182_145920", "filepath": "data/openmic-2018/audio/000/000182_145920.ogg", "artist": "Ariel Pink's Haunted Graffiti", "title": "Jules Lost His Jewels", "album": "Worn Copy", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Lo-Fi"], "genre": ["NA"], "tags": []}
{"sample_key": "000575_69120", "filepath": "data/openmic-2018/audio/000/000575_69120.ogg", "artist": "Clyde Rourke", "title": "Shining the Diamond", "album": "unreleased Clyde Rourke mp3s", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "000773_61440", "filepath": "data/openmic-2018/audio/000/000773_61440.ogg", "artist": "Glass Candy", "title": "Nite Nurses", "album": "Live at Death Disco 9/26/2001", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Disco"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "005272_72960", "filepath": "data/openmic-2018/audio/005/005272_72960.ogg", "artist": "DMBQ", "title": "Taste", "album": "DMBQ Live at 2008 Record Fair on WFMU Record Fair's Show on 10/26/2008", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "010246_7680", "filepath": "data/openmic-2018/audio/010/010246_7680.ogg", "artist": "Field Recorder", "title": "Mayan Church", "album": "Free Matter for the Blind Volume 6: Mysterious Worldz (Light Side)", "instrument": ["voice"], "openmic_genres": ["Compilation"], "genre": ["NA"], "tags": []}
{"sample_key": "011345_107520", "filepath": "data/openmic-2018/audio/011/011345_107520.ogg", "artist": "Anonymous Choir", "title": "Amicus Meus", "album": "Tom\u00e1s Luis de Victoria's Amicus Meus", "instrument": ["voice"], "openmic_genres": ["Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "011452_157440", "filepath": "data/openmic-2018/audio/011/011452_157440.ogg", "artist": "Obits", "title": "One Cross Apiece (live at Cake Shop, 2008)", "album": "Live at Cake Shop 1/12/2008", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "011480_756480", "filepath": "data/openmic-2018/audio/011/011480_756480.ogg", "artist": "Thavius Beck", "title": "Thavius Beck Live at Holocene 02", "album": "KBOO Presents Thavius Beck Live at Holocene", "instrument": ["voice"], "openmic_genres": ["Electronic", "Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "019993_184320", "filepath": "data/openmic-2018/audio/019/019993_184320.ogg", "artist": "Hexlove", "title": "Hexlove and friends", "album": "Un|Herd Archive", "instrument": ["voice"], "openmic_genres": ["Avant-Garde", "Experimental Pop", "Ambient"], "genre": ["instrumental", "pop_roc"], "tags": []}
{"sample_key": "023127_96000", "filepath": "data/openmic-2018/audio/023/023127_96000.ogg", "artist": "Lee Maddeford", "title": "Hommes", "album": "Eros et Psyche", "instrument": ["voice"], "openmic_genres": ["Classical", "Europe", "20th Century Classical", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "025098_76800", "filepath": "data/openmic-2018/audio/025/025098_76800.ogg", "artist": "The Black Feather", "title": "Friendly killers", "album": "Dead Bees label sampler #9", "instrument": ["voice"], "openmic_genres": ["Folk", "Psych-Folk", "Drone", "Noise-Rock", "Psych-Rock", "Indie-Rock"], "genre": ["cou_fol", "instrumental", "pop_roc"], "tags": []}
{"sample_key": "025814_326400", "filepath": "data/openmic-2018/audio/025/025814_326400.ogg", "artist": "Dr Dub", "title": "Sauda deeep undacova", "album": "Haunted hypnotiq (Dr Dub meets Volfoniq) [LCL02]", "instrument": ["voice"], "openmic_genres": ["Electronic", "Reggae - Dub"], "genre": ["NA"], "tags": []}
{"sample_key": "028572_253440", "filepath": "data/openmic-2018/audio/028/028572_253440.ogg", "artist": "Radioactive Sparrow", "title": "Now I'm In Your House", "album": "Lifetimes Achievements Awards", "instrument": ["voice"], "openmic_genres": ["Improv"], "genre": ["NA"], "tags": []}
{"sample_key": "030154_341760", "filepath": "data/openmic-2018/audio/030/030154_341760.ogg", "artist": "The Above", "title": "You're Gonna Cry/ Find Somebody New", "album": "Live at WFMU on Terre T's Show on 04/10/2010", "instrument": ["voice"], "openmic_genres": ["Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "031382_53760", "filepath": "data/openmic-2018/audio/031/031382_53760.ogg", "artist": "Friends or Whatever", "title": "Everybody Stopped Calling Me (TSP's Analog Demo Mix)", "album": "Stuck In My Soul", "instrument": ["voice"], "openmic_genres": ["Electronic", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "031561_96000", "filepath": "data/openmic-2018/audio/031/031561_96000.ogg", "artist": "Paavoharju", "title": "Nuo Maisemat", "album": "Tuote-akatemia / Unien Savonlinna EP", "instrument": ["voice"], "openmic_genres": ["Ambient Electronic"], "genre": ["NA"], "tags": []}
{"sample_key": "033409_602880", "filepath": "data/openmic-2018/audio/033/033409_602880.ogg", "artist": "Damien Schultz & Laurent G\u00e9rard", "title": "Un fort beau bruit", "album": "Un fort beau bruit", "instrument": ["voice"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "034324_311040", "filepath": "data/openmic-2018/audio/034/034324_311040.ogg", "artist": "The Tudor Consort", "title": "Tomas Luis de Victoria - Introitus", "album": NaN, "instrument": ["voice"], "openmic_genres": ["Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "034327_218880", "filepath": "data/openmic-2018/audio/034/034327_218880.ogg", "artist": "The Tudor Consort", "title": "Palestrina - Gloria", "album": NaN, "instrument": ["voice"], "openmic_genres": ["Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "034419_115200", "filepath": "data/openmic-2018/audio/034/034419_115200.ogg", "artist": "Homemade-LoFi-Psych", "title": "Cap'n Death- The Diamond Center", "album": "HLFP #4 Sound Explosions", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "036468_142080", "filepath": "data/openmic-2018/audio/036/036468_142080.ogg", "artist": "The Tudor Consort", "title": "Credo in Unum Deum", "album": "Giovanni Animuccia: Missa Victimae Paschali Laudes", "instrument": ["voice"], "openmic_genres": ["Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "037726_161280", "filepath": "data/openmic-2018/audio/037/037726_161280.ogg", "artist": "Bardo Pond", "title": "Karwan", "album": "Live at ATP-NY 2010", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "042922_725760", "filepath": "data/openmic-2018/audio/042/042922_725760.ogg", "artist": "Cave Bears", "title": "Greenfield", "album": "Get Out Of The House", "instrument": ["voice"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "043473_30720", "filepath": "data/openmic-2018/audio/043/043473_30720.ogg", "artist": "Inca Gold", "title": "It's Happening again", "album": "Bad Panda #69", "instrument": ["voice"], "openmic_genres": ["Pop", "Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "048393_88320", "filepath": "data/openmic-2018/audio/048/048393_88320.ogg", "artist": "MIT Concert Choir", "title": "Floret Silva", "album": "Orff: Carmina Burana", "instrument": ["voice"], "openmic_genres": ["Classical", "20th Century Classical", "Choral Music"], "genre": ["cla"], "tags": []}
{"sample_key": "049933_449280", "filepath": "data/openmic-2018/audio/049/049933_449280.ogg", "artist": "Pika", "title": "Ok San", "album": "Live at WFMU on Nat Roe's Show June 29, 2011", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Psych-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "050289_241920", "filepath": "data/openmic-2018/audio/050/050289_241920.ogg", "artist": "Botany Bay", "title": "A Better Way", "album": "Free! Music! Contest! 2010 Sampler \"Gegensinn\"", "instrument": ["voice"], "openmic_genres": ["Pop", "Ambient Electronic"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "050807_30720", "filepath": "data/openmic-2018/audio/050/050807_30720.ogg", "artist": "Obits", "title": "Beggin' Dogs (@ Empty Bottle, 2011)", "album": "Live at The Empty Bottle 3/12/2011", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "051044_115200", "filepath": "data/openmic-2018/audio/051/051044_115200.ogg", "artist": "Plushgoolash", "title": "Make Love", "album": "Chin25: Soup Tennis", "instrument": ["voice"], "openmic_genres": ["Electronic", "Experimental", "Singer-Songwriter"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "051096_115200", "filepath": "data/openmic-2018/audio/051/051096_115200.ogg", "artist": "Madame Rrose S\u00e9lavy", "title": "Meio Perdido", "album": "D\u00ea Nome Ao Beuys!", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Electronic", "Experimental", "Electro-Punk"], "genre": ["instrumental"], "tags": []}
{"sample_key": "051209_19200", "filepath": "data/openmic-2018/audio/051/051209_19200.ogg", "artist": "Last July", "title": "Nothing Else But You", "album": "Live from the Purple Turtle in London on WFMU's Dark Night of the Soul with Julie June 26, 2011", "instrument": ["voice"], "openmic_genres": ["Electronic", "Goth"], "genre": ["NA"], "tags": []}
{"sample_key": "051798_49920", "filepath": "data/openmic-2018/audio/051/051798_49920.ogg", "artist": "Bureaucrat & The Conspirators", "title": "Mission Creep (9/11))", "album": "Remixes: Ten Years on the Weird Wide", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Psych-Rock", "Spoken Weird", "Improv"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "051804_341760", "filepath": "data/openmic-2018/audio/051/051804_341760.ogg", "artist": "Eric Boros", "title": "It's A Long Way To Denmark", "album": "Dead-Tech Machine Gallery", "instrument": ["voice"], "openmic_genres": ["Noise", "Experimental"], "genre": ["instrumental"], "tags": []}
{"sample_key": "057499_80640", "filepath": "data/openmic-2018/audio/057/057499_80640.ogg", "artist": "Barreracudas", "title": "Baby Baby Baby", "album": "Live at WFMU on Terre T's Cherry Blossom Clinic", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Punk", "Garage", "Power-Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "060763_15360", "filepath": "data/openmic-2018/audio/060/060763_15360.ogg", "artist": "Suicidal Birds", "title": "Suicidal Birds live at the Winston", "album": "Suicidal Birds live at the Winston", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Blues", "Electro-Punk"], "genre": ["jaz_blu"], "tags": []}
{"sample_key": "061128_130560", "filepath": "data/openmic-2018/audio/061/061128_130560.ogg", "artist": "Disco Missile", "title": "The Healing Crystal", "album": "The Infamous Suicide Kit", "instrument": ["voice"], "openmic_genres": ["Noise-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "063457_61440", "filepath": "data/openmic-2018/audio/063/063457_61440.ogg", "artist": "Big Blood", "title": "Old Time Primitives", "album": "Old Time Primitives", "instrument": ["voice"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "068988_69120", "filepath": "data/openmic-2018/audio/068/068988_69120.ogg", "artist": "Kenei", "title": "Yellow Acid feat Wanda Eight", "album": "Lemon Beats", "instrument": ["voice"], "openmic_genres": ["Electronic", "Alternative Hip-Hop", "Dance"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "071698_130560", "filepath": "data/openmic-2018/audio/071/071698_130560.ogg", "artist": "Daizy", "title": "Hocus Pocus", "album": "Aramat", "instrument": ["voice"], "openmic_genres": ["Electronic", "Chill-out"], "genre": ["NA"], "tags": []}
{"sample_key": "073760_211200", "filepath": "data/openmic-2018/audio/073/073760_211200.ogg", "artist": "Dot", "title": "IMF", "album": "#CC-10 Europe Mixtape", "instrument": ["voice"], "openmic_genres": ["Europe"], "genre": ["NA"], "tags": []}
{"sample_key": "074856_122880", "filepath": "data/openmic-2018/audio/074/074856_122880.ogg", "artist": "Jermaine Riley", "title": "Smallville", "album": "FrostWire Creative Commons Mixtape 3 Side A", "instrument": ["voice"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "075418_145920", "filepath": "data/openmic-2018/audio/075/075418_145920.ogg", "artist": "Kellee Maize", "title": "Don't Stop", "album": "Integration", "instrument": ["voice"], "openmic_genres": ["Rap"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "080449_165120", "filepath": "data/openmic-2018/audio/080/080449_165120.ogg", "artist": "Maya Solov\u00e9y", "title": "Ring Ring Ring", "album": "Forte", "instrument": ["voice"], "openmic_genres": ["Pop", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "081355_161280", "filepath": "data/openmic-2018/audio/081/081355_161280.ogg", "artist": "Maya Solov\u00e9y", "title": "Orphan", "album": "Forte", "instrument": ["voice"], "openmic_genres": ["Pop", "Folk"], "genre": ["cou_fol", "pop_roc"], "tags": []}
{"sample_key": "083709_76800", "filepath": "data/openmic-2018/audio/083/083709_76800.ogg", "artist": "Cullah", "title": "Mo Saol", "album": "All The Cullahs Of The Rainbow", "instrument": ["voice"], "openmic_genres": ["Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "093059_188160", "filepath": "data/openmic-2018/audio/093/093059_188160.ogg", "artist": "Metalleg", "title": "She's A Car/Leather and Velvet", "album": "Live on WFMU's Three Chord Monte with Joe Belock - October 8, 2013", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Punk", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "098679_26880", "filepath": "data/openmic-2018/audio/098/098679_26880.ogg", "artist": "Yale Women's Slavic Chorus", "title": "Prekhurukha Ptitchka", "album": "Live at the 2014 Golden Festival", "instrument": ["voice"], "openmic_genres": ["International", "Balkan"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "099420_84480", "filepath": "data/openmic-2018/audio/099/099420_84480.ogg", "artist": "Supruli", "title": "Angelozi Ghaghadebs/Ganatldi Akhalo Ierusalimo", "album": "Live at the 2014 Golden Festival", "instrument": ["voice"], "openmic_genres": ["Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "104573_107520", "filepath": "data/openmic-2018/audio/104/104573_107520.ogg", "artist": "Possimiste", "title": "Star Caesar", "album": "Star Caesar", "instrument": ["voice"], "openmic_genres": ["Experimental", "Singer-Songwriter"], "genre": ["cou_fol", "instrumental"], "tags": []}
{"sample_key": "104595_149760", "filepath": "data/openmic-2018/audio/104/104595_149760.ogg", "artist": "Cullah", "title": "I'm a Lonely Soul", "album": "Cullahnary School", "instrument": ["voice"], "openmic_genres": ["Blues", "Rock", "Hip-Hop"], "genre": ["jaz_blu", "lat_sou", "pop_roc"], "tags": []}
{"sample_key": "105943_211200", "filepath": "data/openmic-2018/audio/105/105943_211200.ogg", "artist": "Lazer Boy", "title": "THE MAN ON THE STREET WHERE HE LIVES", "album": "The Man on the Street Where he Lives", "instrument": ["voice"], "openmic_genres": ["Psych-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "108200_138240", "filepath": "data/openmic-2018/audio/108/108200_138240.ogg", "artist": "The Rope River Blues Band", "title": "The wine will seep into the mind of Scholarship's newly-minted heir.", "album": "Natural's 17 & 18", "instrument": ["voice"], "openmic_genres": ["Blues", "Pop", "Lo-Fi", "Psych-Rock", "Post-Punk"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "108871_599040", "filepath": "data/openmic-2018/audio/108/108871_599040.ogg", "artist": "Ergo Phizmiz", "title": "At Bestival 2014", "album": "At Bestival 2014", "instrument": ["voice"], "openmic_genres": ["Pop", "Soundtrack"], "genre": ["pop_roc", "soundtrack"], "tags": []}
{"sample_key": "109472_176640", "filepath": "data/openmic-2018/audio/109/109472_176640.ogg", "artist": "The Pink Tiles", "title": "Cut It Out", "album": "Live on WFMU's Surface Noise with Joe McGasko: Oct 2, 2014", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Garage", "Power-Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "110260_138240", "filepath": "data/openmic-2018/audio/110/110260_138240.ogg", "artist": "Kellee Maize & J. Glaze Productions", "title": "I Insist (J. Glaze Remix)", "album": "The Remixes", "instrument": ["voice"], "openmic_genres": ["Hip-Hop", "Rap"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "113337_157440", "filepath": "data/openmic-2018/audio/113/113337_157440.ogg", "artist": "Mr. Airplane Man", "title": "Red Light", "album": "Live on WFMU's Burn It Down with Nate K: Jan 11, 2015", "instrument": ["electric guitar"], "openmic_genres": ["Blues", "Punk", "Garage"], "genre": ["jaz_blu", "pop_roc"], "tags": []}
{"sample_key": "121777_168960", "filepath": "data/openmic-2018/audio/121/121777_168960.ogg", "artist": "Trash Queen", "title": "War Damn-YA", "album": "Vitamin Pets Premixes", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Folk", "Singer-Songwriter", "British Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "122155_99840", "filepath": "data/openmic-2018/audio/122/122155_99840.ogg", "artist": "John Hyatt & Jaan Patterson", "title": "Destroyer", "album": "Ergo Protagonists", "instrument": ["voice"], "openmic_genres": ["Avant-Garde", "Experimental", "Unclassifiable"], "genre": ["instrumental"], "tags": []}
{"sample_key": "123705_111360", "filepath": "data/openmic-2018/audio/123/123705_111360.ogg", "artist": "Future Sauce", "title": "End Time", "album": "Res Ipsa Loquitur", "instrument": ["voice"], "openmic_genres": ["Lo-Fi", "Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "126398_134400", "filepath": "data/openmic-2018/audio/126/126398_134400.ogg", "artist": "Shy Kids", "title": "Spirituals", "album": "Lofty !", "instrument": ["voice"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "126405_34560", "filepath": "data/openmic-2018/audio/126/126405_34560.ogg", "artist": "Shy Kids", "title": "\u00ae o c k e t s", "album": "Lofty !", "instrument": ["voice"], "openmic_genres": ["Experimental Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "128695_19200", "filepath": "data/openmic-2018/audio/128/128695_19200.ogg", "artist": "Bruce Miller", "title": "student singing", "album": "Music of Children and Teachers- Eastern Uganda", "instrument": ["voice"], "openmic_genres": ["Field Recordings", "African"], "genre": ["instrumental"], "tags": []}
{"sample_key": "129710_122880", "filepath": "data/openmic-2018/audio/129/129710_122880.ogg", "artist": "Dan Squared", "title": "Merry Christmas to You", "album": "Our Friendly Beasts (2015)", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Electronic", "Folk"], "genre": ["cou_fol"], "tags": []}
{"sample_key": "132465_130560", "filepath": "data/openmic-2018/audio/132/132465_130560.ogg", "artist": "G.Las", "title": "Peenemunde-CT.P", "album": "Compile", "instrument": ["voice"], "openmic_genres": ["Field Recordings", "Experimental", "Sound Collage"], "genre": ["instrumental"], "tags": []}
{"sample_key": "137736_145920", "filepath": "data/openmic-2018/audio/137/137736_145920.ogg", "artist": "Rye Coalition", "title": "Stop Eating While I'm Smoking", "album": "Live at Monty Hall, 2/20/2016", "instrument": ["voice"], "openmic_genres": ["Rock", "Indie-Rock", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "137740_57600", "filepath": "data/openmic-2018/audio/137/137740_57600.ogg", "artist": "Rye Coalition", "title": "We Ride", "album": "Live at Monty Hall, 2/20/2016", "instrument": ["voice"], "openmic_genres": ["Rock", "Indie-Rock", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "138070_184320", "filepath": "data/openmic-2018/audio/138/138070_184320.ogg", "artist": "Black Flamingo", "title": "Together", "album": "Winter sun", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Pop"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "142174_88320", "filepath": "data/openmic-2018/audio/142/142174_88320.ogg", "artist": "The Cherry Blossoms", "title": "The Cherry Blossoms", "album": "OCCII Snippets 2002 - 2009", "instrument": ["voice"], "openmic_genres": ["Avant-Garde", "Punk", "Noise"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "142544_38400", "filepath": "data/openmic-2018/audio/142/142544_38400.ogg", "artist": "Nick Vivid", "title": "Rock This Town", "album": "Watch it fly", "instrument": ["voice"], "openmic_genres": ["Disco", "Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "142547_88320", "filepath": "data/openmic-2018/audio/142/142547_88320.ogg", "artist": "Nick Vivid", "title": "What it's Like", "album": "Watch it fly", "instrument": ["flute", "voice"], "openmic_genres": ["Disco", "Hip-Hop"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "147697_122880", "filepath": "data/openmic-2018/audio/147/147697_122880.ogg", "artist": "Great White Buffalo", "title": "Detroit", "album": "FrostWire Creative Commons Mixtape Vol. 5", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Indie-Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "148135_34560", "filepath": "data/openmic-2018/audio/148/148135_34560.ogg", "artist": "Titus Andronicus", "title": "Titus Andronicus", "album": "Live at Monty Hall, 9/8/2016", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock", "Punk", "Hardcore"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "148618_211200", "filepath": "data/openmic-2018/audio/148/148618_211200.ogg", "artist": "2L8", "title": "Pro War Funeral Hymn", "album": "The Answer", "instrument": ["voice"], "openmic_genres": ["Rock Opera"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "148653_65280", "filepath": "data/openmic-2018/audio/148/148653_65280.ogg", "artist": "Gavin Gamboa", "title": "Machinamentum Laetificus", "album": "Modus Futurus Posterus Machina", "instrument": ["voice"], "openmic_genres": ["Choral Music", "Contemporary Classical"], "genre": ["cla"], "tags": []}
{"sample_key": "152415_130560", "filepath": "data/openmic-2018/audio/152/152415_130560.ogg", "artist": "Niva", "title": "Salzi Ronya/Snosti Sum Libe", "album": "Live at the 2017 Golden Festival", "instrument": ["voice"], "openmic_genres": ["International", "Balkan", "Europe"], "genre": ["lat_sou"], "tags": []}
{"sample_key": "153194_23040", "filepath": "data/openmic-2018/audio/153/153194_23040.ogg", "artist": "The Battery Electric", "title": "Holiday In Heaven", "album": "Live at Monty Hall, 12/9/2016", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "153201_38400", "filepath": "data/openmic-2018/audio/153/153201_38400.ogg", "artist": "The Battery Electric", "title": "Need Ya", "album": "Live at Monty Hall, 12/9/2016", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Rock"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "153341_184320", "filepath": "data/openmic-2018/audio/153/153341_184320.ogg", "artist": "Pachyderm", "title": "Never Knew Me at All", "album": "Pachyderm EP", "instrument": ["electric guitar", "voice"], "openmic_genres": ["Psych-Rock", "Indie-Rock", "Garage"], "genre": ["pop_roc"], "tags": []}
{"sample_key": "153477_80640", "filepath": "data/openmic-2018/audio/153/153477_80640.ogg", "artist": "Svitanya", "title": "I Dumaj Zlato", "album": "Live at the 2017 Golden Festival", "instrument": ["voice"], "openmic_genres": ["International", "Balkan"], "genre": ["lat_sou"], "tags": []}
|