-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbuumu_0065.xml
2190 lines (2190 loc) · 87.8 KB
/
nbuumu_0065.xml
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
<ead xmlns="urn:isbn:1-931666-22-9" xsi="xsi=&quot;http://www.w3.org/2001/XMLSchema-instance" xlink="http://www.w3.org/1999/xlink" schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
<eadheader audience="external" langencoding="iso639-2b" scriptencoding="iso15924" relatedencoding="dc" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="nbuumu" encodinganalog="identifier" publicid="-//State University of New York at Buffalo::Music Library//TEXT (US::NBuU-Mu::Mus. Arc. 65::James B. Coover Collection of Jazz Recordings)//EN">nbuumu_0065</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="title">Finding Aid for the James B. Coover
Collection of Jazz Recordings,
<date encodinganalog="date" era="ce" calendar="gregorian" type="inclusive" normal="1950/1957"> circa 1950-1957 </date> </titleproper>
<titleproper type="filing" altrender="nodisplay"> Coover (James B.)
Collection of Jazz Recordings </titleproper>
<author encodinganalog="contributor">Finding aid prepared by John
Bewley.</author>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="publisher">State University of New York at Buffalo. Music Library</publisher>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
<p>&#xA9;
<date type="publication" encodinganalog="date">2013</date>. State
University of New York at Buffalo. All rights reserved.</p>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded in EAD by John Bewley November 2013.
</creation>
<langusage>Finding aid written in
<language encodinganalog="language" langcode="eng">English.</language>
</langusage>
<descrules>Finding aid prepared using DACS (
<title render="italic">Describing Archives: A Content Standard
</title>).</descrules>
</profiledesc>
</eadheader>
<archdesc level="collection" type="inventory" relatedencoding="marc21">
<did>
<head>Collection Overview</head>
<unittitle label="Title" encodinganalog="245$a"> James B. Coover
Collection of Jazz Recordings,
<unitdate encodinganalog="245$f" normal="1950/1957" type="inclusive" datechar="creation"> circa 1950-1957 </unitdate>
</unittitle>
<unitid encodinganalog="099" countrycode="US" repositorycode="NBuU-Mu" label="Collection Number">Mus. Arc. 65</unitid>
<origination label="Creator">
<persname encodinganalog="100" role="creator" source="lcnaf"> Coover,
James, 1925-2004 </persname>
</origination>
<physdesc label="Extent">
<extent unit="box" encodinganalog="300$a">2
boxes</extent>
<extent unit="box" encodinganalog="300$a">(84 10-inch sound
recordings)</extent>
</physdesc>
<langmaterial label="Language of Material" encodinganalog="546">
Collection material is recorded material. The only written content is the
program notes all of which are in <language encodinganalog="041" langcode="eng">English.</language> </langmaterial>
<repository label="Repository" encodinganalog="852">
<corpname>State University of New York at Buffalo. Music Library</corpname>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
</repository>
<abstract label="Abstract" encodinganalog="520$a"> The collection
contains 84 10-inch sound recordings of jazz, blues, ragtime, and boogie
woogie.</abstract>
<unitdate type="inclusive" normal="1950/1957"> circa 1950-1957 </unitdate>
</did>
<descgrp type="admininfo">
<head>Administrative Information</head>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>[Specified item], James B. Coover Collection of Jazz Recordings,
circa 1950-1957, Music Library, The State University of New York at
Buffalo.</p>
</prefercite>
<accessrestrict encodinganalog="506">
<head>Terms of Access</head>
<p>Materials can be examined by qualified researchers in the Music
Library during hours of operation during which Music Librarians are present. In
order to insure access, researchers are advised to contact the Music Library in
advance of visits. </p>
</accessrestrict>
<userestrict encodinganalog="540">
<head>Copyright</head>
<p>Copyright for the materials in the collection does not reside with
the Music Library. Therefore, patrons wishing to publish any item, or part of
an item from this collection for any purpose, are responsible for securing
requisite permissions. </p>
</userestrict>
<acqinfo encodinganalog="541">
<head>Acquisition Information</head>
<p>Gift of James B. Coover, 1996.</p>
</acqinfo>
<accruals encodinganalog="584">
<head>Accruals and Additions</head>
<p>No further accruals are expected to this collection. </p>
</accruals>
<processinfo encodinganalog="583">
<head>Processing Information</head>
<p>Processed by Sean Ahern, November 2013.</p>
</processinfo>
</descgrp>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>James B. Coover (1925-2004) served as Director of the Music Library at
the State University of New York at Buffalo 1967-1999. During that time he was
responsible for building a major research collection from almost nothing. Jazz
was one of his many interests and his love of the music is reflected in this
collection of rarer early recordings. </p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Content Note</head>
<p>The collection contains 84 10-inch sound recordings of various types
of jazz and blues music issued in the 1950s. It includes many of the most
prominent jazz musicians, including Louis Armstrong, Jack Teagarden, Miles
Davis, Bix Beiderbecke, Dizzy Gillespie, Jelly Roll Morton, Stan Getz, Gerry
Mulligan, Chet Baker, and many others. </p>
</scopecontent>
<arrangement encodinganalog="351">
<head>Arrangement</head>
<p>The collection is alphabetically arranged by manufacturer label name
and then in manufacturer's number. </p>
</arrangement>
<dsc type="combined">
<head>Container List</head>
<c level="item" id="c_5ccc8a22d2d31">
<did>
<container type="box">1 </container>
<container type="item">01 </container>
<unittitle>Allegro : 4032,
<unitdate type="inclusive">1954</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Gillespie, Dizzy,
1917-1993</persname>
</p>
<p>Album title:
<title render="italic">Dizzy Gillespie and His Orchestra / Dizzy
Gillespie</title> </p>
</note>
</did>
<scopecontent>
<p>Contents: I waited for you -- Salt peanuts -- A hand fulla gimme
-- Ray's idea -- Our delight -- Good dues blues -- That's Earl Brother -- Oop
bob Sh'bam</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d51">
<did>
<container type="box">1 </container>
<container type="item">02 </container>
<unittitle>Allegro : 4049,
<unitdate type="inclusive">1954</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Wiley, Lee </persname>
</p>
<p>Album title:
<title render="italic">Lee Wiley sings / Lee Wiley and Lennie
Tristano</title> </p>
<p>Performer(s): Lee Wiley ; Lennie Tristano </p>
</note>
</did>
<scopecontent>
<p>Contents: But not for me -- Sugar -- Woman alone with the blues --
Memories of you -- Supersonic -- on a planet -- Air pocket -- Celestia</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d5d">
<did>
<container type="box">1</container>
<container type="item">03</container>
<unittitle>Atlantic : ALS 133,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Meade Lux Lewis' interpretations of the
great boogie woogie styles</title> </p>
</note>
</did>
<scopecontent>
<p>Contents: Yancey special -- Pinetop's boogie woogie -- Mr.
Freddie's blues -- Jumpin' for Pete -- Suitcase blues -- Albert's blues -- Cow
Cow blues -- Honkey tonk train blues</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d68">
<did>
<container type="box">1</container>
<container type="item">04</container>
<unittitle>Atlantic : ALS 11237--ALS 11238,
<unitdate type="inclusive" normal="1950/1959">1950-1959</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>analog, 33 1/3 rpm ;</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Hines, Earl,
1903-1983</persname>
</p>
<p>Album title:
<title render="italic">Piano solo</title> </p>
<p>Performer(s): Earl Hines, piano </p>
</note>
</did>
<scopecontent>
<p>Contents: Chicago high life -- Just too soon -- Our Monday date --
Off time blues -- Panther rag -- Chimes in blues -- Stowaway -- Blues in
thirds</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d72">
<did>
<container type="box">1</container>
<container type="item">05</container>
<unittitle>Atlantic: LP 130,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Yancey special : the last recordings of the
late Jimmy Yancey</title> </p>
<p>Performer(s): Jimmy Yancey, piano ; Mama Yancey, vocals ; Israel
Crosby, bass </p>
</note>
</did>
<scopecontent>
<p>Contents: How long blues -- Make me a pallet on the floor --
Monkey woman blues -- Four o'clock blues -- Sante Fe blues -- Yancey
special</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d7d">
<did>
<container type="box">1 </container>
<container type="item">06 </container>
<unittitle>Bethlehem : BCP 1011,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Pete Brown Sextette</title> </p>
<p>Performer(s): Pete Brown, alto sax ; Joe Wilder, trumpet ;
Wallie Richardson, guitar ; Wade Legge, piano ; Gene Ramey, bass ; Rudy
Collins, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: There will never be another you -- I can't believe
you're in love with me -- Used blues -- Moonlight in Vermont -- The world is
waiting for the sunrise -- Tea for two -- Delta blues</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d89">
<did>
<container type="box">1 </container>
<container type="item">07 </container>
<unittitle>Bethlehem : BCP-1014,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Jonah Jones Sextette</title> </p>
<p>Performer(s): Jonah Jones, trumpet ; Vic Dickenson, Urbie Green,
trombone ; Edmond Hall, clarinet ; George Clark, tenor sax ; Milt Hinton, Pops
Foster, bass ; Osie Johnson, drums ; Ken Kersey, piano </p>
</note>
</did>
<scopecontent>
<p>Contents: Beale street blues -- Down by the riverside -- European
blues -- The Sheik of Araby -- You're the cream in my coffee -- Wrap your
troubles in dreams -- J. J. special -- Stars fell on Alabama</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2d95">
<did>
<container type="box">1 </container>
<container type="item">08 </container>
<unittitle>Bethlehem : BCP 1017,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Stan Levey plays the compositions of Bill
Holman, Bob Cooper and Jimmy Giuffre</title> </p>
<p>Performer(s): Stan Levey, drums ; Zoot Sims, tenor ; Jimmy
Giuffre, baritone ; Conti Candoli, trumpet ; Max Bennett, bass ; Claude
Williamson, piano </p>
</note>
</did>
<scopecontent>
<p>Contents: Exaktamo -- Extraversion -- Drum sticks -- Lightnin' bug
-- West coasting -- Fast clip</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2da4">
<did>
<container type="box">1 </container>
<container type="item">09 </container>
<unittitle>Bethlehem : BCP-1019,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Basically, Duke</title> </p>
<p>Performer(s): Oscar Pettiford, bass ; Clarke Terry, Joe Wilder,
trumpet ; Jimmy Cleveland, trombone ; Jimmy Hamilton, clarinet ; Dave
Schildkraut, alto ; Danny Bank, baritone sax ; Earl Knight, piano </p>
</note>
</did>
<scopecontent>
<p>Contents: Jack the bear -- Tamalpais -- Swing until the girls come
home -- Mood indigo -- Chuckles -- Time on my hands</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2db2">
<did>
<container type="box">1 </container>
<container type="item">10 </container>
<unittitle>Bethlehem : BCP-1040,
<unitdate type="inclusive" normal="1950/1959">1950-1959</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>33 1/3 rpm, stereophonic</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Garcia, Russell
</persname>
</p>
<p>Album title:
<title render="italic">Wigville</title> </p>
<p>Performer(s): Russ Garcia, conductor ; Russ Cheever, soprano sax
; Charlie Mariano, alto sax ; Bill Holman, tenor sax ; Jimmy Giuffre, baritone
sax ; Pete Candoli, trumpet ; Conte Candoli, trumpet ; Max Bennett, bass ; Stan
Levy, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: Rocky road. -- Floating. -- Butter duck. -- Mellow bone.
-- Wigville. -- Smogville. -- Livin' it up. -- Love row. -- Lovely one. -- Then
the lid blew off</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2dc0">
<did>
<container type="box">1 </container>
<container type="item">11 </container>
<unittitle>Blue Note : BLP 5001,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Mellow the mood</title> </p>
<p>Performer(s): Ike Quebec ; Ben Webster ; John Hardee ; Buck
Clayton ; Jonah Jones ; Tyree Glenn ; Benny Morton ; Barney Bigard ; Edmond
Hall ; Ram Ramirez ; Meade Lux Lewis ; Charlie Christian ; Tiny Grimes ; Oscar
Pettiford ; Milton Hinton ; Israel Crosby ; Sidney Catlett ; J.C. Heard </p>
</note>
</did>
<scopecontent>
<p>Contents: I surrender dear -- Sweet and lovely -- If I had you --
Profoundly blue -- She's funny that way -- My old flame -- Blue Harlem</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2dcf">
<did>
<container type="box">1 </container>
<container type="item">12 </container>
<unittitle>Blue Note : BLP 5002,
<unitdate type="inclusive">1950-1959</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Monk, Thelonious
</persname>
</p>
<p>Album title:
<title render="italic">Genius of modern music / Thelonious
Monk</title> </p>
<p>Performer(s): Thelonious Monk, piano ; others: George Taitt ;
Edmund Gregory ; Milton Jackson ; Robert Paige ; Gene Ramey ; John Simmons ;
Art Blakey ; Shadow Wilson ; Idresse Suliman ; Danny Quebec West ; Billy Smith
</p>
</note>
</did>
<scopecontent>
<p>Contents: 'Round about midnight -- Off minor -- Ruby my dear -- I
mean you -- Thelonious -- Epistrophy -- Well you needn't -- Mysterioso</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2dde">
<did>
<container type="box">1 </container>
<container type="item">13 </container>
<unittitle>Blue Note : BLP 5003,
<unitdate type="inclusive" normal="1950/1959">1950-1959</unitdate>
</unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Powell, Bud </persname>
</p>
<p>Album title:
<title render="italic">Amazing Bud Powell / Bud Powell</title> </p>
<p>Performer(s): Bud Powell, piano ; others: Fats Navarro ; Sonny
Rollins ; Curly Russell ; Tommy Potter ; Max Roach ; Roy Haynes </p>
</note>
</did>
<scopecontent>
<p>Contents: Un poco loco / Powell -- Over the rainbow / Harburg -
Arlen -- Ornithology / Harris -- Wail / Powell -- A night in Tunisia / Robin -
Gillespie -- It could happen to you / Burke - Van Heusen -- You go to my head /
Coots - Gillespie -- Bouncing with Bud / Powell</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2def">
<did>
<container type="box">1 </container>
<container type="item">14 </container>
<unittitle>Blue Note : BLP 5013,
<unitdate type="inclusive">1950-1959</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Davis, Miles </persname>
</p>
<p>Album title:
<title render="italic">Young man with a horn / Miles Davis</title>
</p>
<p>Performer(s): Miles Davis, trumpet ; others: Jay Jay Johnson ;
Jackie McLean ; Gil Coggins ; Oscar Pettiford ; Kenny Clarke </p>
</note>
</did>
<scopecontent>
<p>Contents: Dear old Stockholm / Varmeland -- Would'n you /
Gillespie -- Yesterdays / Kern - Harbach -- Chance it / Pettiford -- Donna /
McClean -- How deep is the ocean / Berlin</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e01">
<did>
<container type="box">1 </container>
<container type="item">15 </container>
<unittitle>Blue Note : BLP 5033,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Gil Mell&#xE9; Quintet : with Urbie Green and Tal
Farlow volume 2</title> </p>
<p>Performer(s): Gil Mell&#xE9;, tenor and baritone sax ; Urbie Green,
trombone ; Tal Farlow, guitar ; Clyde Lombardi, bass ; Joe Morello, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: Timepiece -- Lover man -- Gingersnap -- A lion lives
here -- Spellbound -- Transition</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e13">
<did>
<container type="box">1 </container>
<container type="item">16 </container>
<unittitle>Blue Note : BLP 7009,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Giant of Jazz / Sidney Bechet and his Blue
Note Jazz Men</title> </p>
<p>Performer(s): "Wild Bill" Davison ; Ray Diehl ; Sidney Bechet ;
Art Hodes ; Walter Page ; "Slick" Jones ; Fred Moore ; Claude Luter </p>
</note>
</did>
<scopecontent>
<p>Contents: Jazz band ball -- Tin roof blues -- Cake walking babies
-- Temptation rag -- When the saints go marching in -- Basin Street blues --
Tiger rag -- Riverboat shuffle</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e27">
<did>
<container type="box">1 </container>
<container type="item">17 </container>
<unittitle>Blue Note : BLP 7010,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">George Lewis and his New Orleans
Stompers</title> </p>
<p>Performer(s): Avery "Kid" Howard ; Jim Robinson ; George Lewis ;
Lawrence Marrero ; Chester Zardis ; Edgar Mosley </p>
</note>
</did>
<scopecontent>
<p>Contents: Climaz Rag -- Dauphine Street blues -- Just a closer
walk with thee -- Fidgety feet -- Deep bayou blues -- Milenberg joys</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e3b">
<did>
<container type="box">1 </container>
<container type="item">18 </container>
<unittitle>Blue Note : BLP 7017,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Albert Ammons : memorial album</title> </p>
<p>Performer(s): Meade Lux Lewis, piano </p>
</note>
</did>
<scopecontent>
<p>Contents: Boogie woogie stomp -- Boogie woogie blues -- Bass goin'
crazy -- Twos and fews -- Chicago in mind -- Suitcase blues</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e50">
<did>
<container type="box">1 </container>
<container type="item">19 </container>
<unittitle>Brunswick : BL 58002,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Ellingtonia volume 1 : a collection of
distinctive recordings / played by Duke Ellington and his orchestra</title>
</p>
</note>
</did>
<scopecontent>
<p>Contents: East St. Louis toodle-oo -- Birmingham breakdown --
Rockin' in rhythm -- Twelfth street rag -- Black and tan fantasy -- The mooche
-- Mood indigo -- Wall street wail</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e65">
<did>
<container type="box">1 </container>
<container type="item">20 </container>
<unittitle>Brunswick : BL 58003,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Boogie woogie piano : a collection of rare
recordings by the originator of boogie woogie / Pine Top Smith ; A King of the
piano : in a collection of rare piano solo recordings volume 1 / Jelly Roll
Morton</title> </p>
</note>
</did>
<scopecontent>
<p>Contents: Pinetop's boogie woogie ; Pinetop's blues ; Jump steady
blues ; I'm sober now -- King Porter stomp ; The Pearls ; Frog I more rag ; Fat
meat and greens</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e7b">
<did>
<container type="box">1 </container>
<container type="item">21 </container>
<unittitle>Brunswick : BL 58004,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Jazz classics / Louis Armstrong</title> </p>
<p>Performer(s): Louis Armstrong with: Johnny Dodds' Black Bottom
Stompers ; Lill's Hot Shots ; Erskine Tate's Vendome Orchestra ; Red Onion Jazz
Babies </p>
</note>
</did>
<scopecontent>
<p>Contents: Wild man blues -- Melancholy -- Georgia bo bo -- Drop
that sack -- Static strut -- Stomp off, let's go! -- Terrible blues -- Santa
Claus blues</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2e93">
<did>
<container type="box">1 </container>
<container type="item">22 </container>
<unittitle>Brunswick : BL 58018,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Boogie woogie piano : historic recordings by
pioneer piano men</title> </p>
<p>Performer(s): Montana Taylor ; Speckled Red ; Romeo Nelson ; Cow
Cow Davenport </p>
</note>
</did>
<scopecontent>
<p>Contents: Detroit rocks -- Indian Avenue stomp -- The dirty dozen
no. 1 &amp; 2 -- Head rag hop -- Wilkins Street stomp -- Cow Cow blues -- State
Street</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2eab">
<did>
<container type="box">1 </container>
<container type="item">23 </container>
<unittitle>Brunswick : BL 58022,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Barrel house piano : eight authentic solos
by acknowledged masters of the style</title> </p>
<p>Performer(s): Frank Melrose ; James P. Johnson ; Mary Lou
Williams ; Alex Hill </p>
</note>
</did>
<scopecontent>
<p>Contents: Pass the jug -- Jelly Roll stomp -- Jingels -- You've
got to be modernistic -- Drag 'em -- Night life -- Stompin' 'em down -- Tack
head blues</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2ec3">
<did>
<container type="box">1 </container>
<container type="item">24 </container>
<unittitle>Brunswick : BL 58024,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Harlem jazz 1930 : selected performances by
the first great swing bands</title> </p>
<p>Performer(s): Duke Ellington ; Don Redman ; Fletcher Henderson ;
Luis Russell </p>
</note>
</did>
<scopecontent>
<p>Contents: Double check stomp -- Jolly wog -- Chant of the weed --
Shakin' the African -- Radio rhythm -- Just blues -- Saratoga drag -- Case on
dawn</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2edd">
<did>
<container type="box">1 </container>
<container type="item">25 </container>
<unittitle>Brunswick : BL 58026,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Riverboat jazz : New Orleans to Chicago :as
played by the famous jazzmen on the Mississippi</title> </p>
<p>Performer(s): King Oliver ; Dewey Jackson ; Jelly Roll Morton ;
Jimmy Wade ; Punch Miller ; Albert Wynn </p>
</note>
</did>
<scopecontent>
<p>Contents: Snag it -- Capitol blues -- Mr. Jelly Lord -- Midnight
mama -- Gates blues -- Parkway stomp -- Down by the levee -- She's cryin' for
me</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2ef7">
<did>
<container type="box">1 </container>
<container type="item">26 </container>
<unittitle>Brunswick : BL 58037,
<unitdate type="inclusive">1950-1959</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>analog, 33 1/3 rpm ;</materialspec>
<note>
<p>Album title:
<title render="italic">Battle of jazz : volume 1</title> </p>
<p>Performer(s): On side 1: Bud Freeman, tenor sax, and the Summa
cum Laude Orchestra (Max Kaminsky, trumpet ; Brad Gowans, trombone ; Pee Wee
Russell, clarinet ; Dave Bowman, piano ; Eddie Condon, guitar ; Clyde Newcomb,
bass ; Al Sidell, drums) ; on side 2: Joe Marsala, clarinet, and his orchestra
(Marty Marsala, trumpet ; Ben Glassman, alto sax ; John Smith, tenor sax ;
Adele Girard, harp ; Dave Bowman, piano ; Carmen Mastren, guitar ; Jack
Kelleher, bass ; Shelly Manne, drums) </p>
</note>
</did>
<scopecontent>
<p>Contents: The sail fish / Bud Freeman -- As long as I live ;
Harold Arlen ; Ted Koehler -- Sunday / Ned Miller ; Chester Conn ; Jules Stein
; Bennie Krueger -- Satanic blues / Larry Shields ; Emile Christian -- Bulls
eye ; Lower register / Adele Girard -- Slow down / Redd Evans -- I know that
you know / Vincent Youmans ; Anne Caldwell</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2f12">
<did>
<container type="box">1 </container>
<container type="item">27 </container>
<unittitle>Capitol : H-383,
<unitdate type="inclusive">1956?</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>analog, 33 1/3 rpm ;</materialspec>
<note>
<p>Album title:
<title render="italic">New concepts of artistry in rhythm </title>
</p>
<p>Performer(s): Stan Kenton and his orchestra </p>
</note>
</did>
<scopecontent>
<p>Contents: 23&#xB0;N - 82&#xB0;W -- Portrait of a count -- Improvisation --
Invention for guitar and trumpet -- My lady -- Young blood -- Frank
speaking</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2f2d">
<did>
<container type="box">1 </container>
<container type="item">28 </container>
<unittitle>Capitol : H 439,
<unitdate type="inclusive">19&#x2013;</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>33 1/3 rpm, monaural ;</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Mulligan, Gerry
</persname>
</p>
<p>Album title:
<title render="italic">Gerry Mulligan and his ten-tette</title>
</p>
<p>Performer(s): Gerry Mulligan, baritone sax, piano; Chet Baker,
Pete Candoli, trumpet; John Graas, horn; Bud Shank, alto sax; Bob Enevoldsen,
trombone; Ray Siegel, tuba; Joe Mondragon, bass; Chico Hamilton or Larry
Bunker, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: Rocker--Walking shoes--Simbah--Ontet--Westwood
walk--Ballad--Taking a chance on love--Flash</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2f4a">
<did>
<container type="box">1 </container>
<container type="item">29 </container>
<unittitle>Clef : MG C-116,
<unitdate type="inclusive">1951?</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>analog, 33 1/3 rpm, monaural ;</materialspec>
<note>
<p>
<corpname role="creator" source="lcnaf">Oscar Peterson
Quartet</corpname>
</p>
<p>Album title:
<title render="italic">The Oscar Peterson Quartet</title> </p>
<p>Performer(s): Jazz quartets; Peterson, piano ; Barney Kessel,
guitar ; Ray Brown, bass ; Alvin Stoller, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: The Astaire blues -- Stompin' at the Savoy</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2f68">
<did>
<container type="box">1 </container>
<container type="item">30 </container>
<unittitle>Columbia : CL 6052,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Goodman sextet session / Benny Goodman
Sextet</title> </p>
</note>
</did>
<scopecontent>
<p>Contents: Tiger rag -- Ain't misbehavin' -- She's funny that way
-- I got rhythm -- Just one of those things -- China boy -- Shine -- Rachel's
dream</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2f87">
<did>
<container type="box">1 </container>
<container type="item">31 </container>
<unittitle>Columbia : CL 6187,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Freddy Gardner</title> </p>
<p>Performer(s): Peter Yorke &amp; his orchestra </p>
</note>
</did>
<scopecontent>
<p>Contents: I'm in the mood for love -- Valse vanite -- These
foolish things -- Roses of Picardy -- Body and soul -- I only have eyes for
you</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2fa7">
<did>
<container type="box">1 </container>
<container type="item">32 </container>
<unittitle>Contemporary : C 2504,
<unitdate type="inclusive">1953</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>Album title:
<title render="italic">Dizzy in Paris</title> </p>
<p>Performer(s): Dizzy Gillepsie, trumpet ; Nat Peck, trombone ;
Wade Legge, piano ; Lou Hackney, bass ; Al Jones, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: Mon homme -- Toujours -- C'est comme &#xE7;a -- 's
merveilleux -- Fais gaffe! -- Au pays d'oobladee -- Nocturne lunaire -- J'ai du
rhythme</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2fc9">
<did>
<container type="box">1 </container>
<container type="item">33 </container>
<unittitle>Contemporary : C2511,
<unitdate type="inclusive">1954</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Manne, Shelly </persname>
</p>
<p>Album title:
<title render="italic">Shelly Manne and his men, vol. 2</title>
</p>
<p>Performer(s): Ollie Mitchell, Don Fagerquist &amp; Shorty
Rogers, trumpet ; Bob Enevoldsen, trombone ; Paul Sarmento, tuba ; Russ Freeman
&amp; Marty Paich, piano ; Joe Mondragon, bass ; Shelly Mann, drums </p>
</note>
</did>
<scopecontent>
<p>Contents: Dimension in thirds -- Shapes, motion, colors --
Alternation -- Divertimento for brass and rhythm -- Lullaby -- Etude de
concert</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d2feb">
<did>
<container type="box">1 </container>
<container type="item">34 </container>
<unittitle>Contemporary Records : C2514,
<unitdate type="inclusive">1954</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Kessel, Barney
</persname>
</p>
<p>Album title:
<title render="italic">Barney Kessel</title> </p>
<p>Performer(s): Barney Kessel ; others: Bob Cooper ; Claude
Williamson ; Monty Budwig ; Shelly Manne </p>
</note>
</did>
<scopecontent>
<p>Contents: Barney's Blues -- A foggy day / George and Ira Gershwin
-- Prelude to a kiss / Ellington -- 64 bars on Wilshire -- Speak low / Kurt
Weill and Ogden Nash -- Love is here to stay / George and Ira Gershwin -- How
long has this been going on / George and Ira Gershwin -- On a slow boat to
China / Frank Loesser</p>
</scopecontent>
</c>
<c level="item" id="c_5ccc8a22d300e">
<did>
<container type="box">1 </container>
<container type="item">35 </container>
<unittitle>Contemporary : C2516,
<unitdate type="inclusive">1955</unitdate> </unittitle>
<physdesc>
<extent>1 10-inch sound recording</extent>
</physdesc>
<materialspec>Analog, 33 1/3 rpm, monaural</materialspec>
<note>
<p>
<persname role="creator" source="lcnaf">Manne, Shelly </persname>
</p>
<p>Album title:
<title render="italic">Shelly Manne: "The Three"</title> </p>
<p>Performer(s): Shelly Manne, drums ; Shorty Rogers, trumpet ;
Jimmy Giuffre, clarinet, tenor &amp; baritone saxes </p>
</note>
</did>