-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1296.xml
8155 lines (8031 loc) · 456 KB
/
1296.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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.jonesss">beinecke.jonesss</recordid>
<otherrecordid localtype="BIB">9225437</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Solomon Sir Jones Films
</titleproper>
<titleproper localtype="filing">Jones (Solomon Sir) Films</titleproper>
<author>by Molly Wheeler</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>August 2012</date>
<num>WA MSS S-2636</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">9225437</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: Damaged portions-1, 1 (New internegative), 1 (New print), 1-2 (New internegative), 2 (New print), 2-3 (New internegative), 3 (New print), 3-4 (New internegative), 4 (New print), 4-5 (New internegative), 5 (New print), 5-6 (New internegative), 6 (New print), 6-7 (New internegative), 7 (New print), 7-8 (New internegative), 8 (New print), 8-9 (New internegative), 9 (New print), 9-10 (New internegative), 10 (New print), 10-11 (New internegative), 11 (New print), 11-12 (New internegative), 12 (New print), 12-13 (New internegative), 13 (New print), 13-14 (New internegative), 14 (New print), 14-15 (New internegative), 15 (New print), 15-16 (New internegative), 16 (New print), 16-17 (New internegative), 17 (New print), 17-18 (New internegative), 18 (New print), 18-19 (New internegative), 19 (New print), 19-20 (New internegative), 20 (New print), 20-21 (New internegative), 21 (New print), 21-22 (New internegative), 22 (New print), 22-23 (New internegative), 23 (New print), 23-24 (New internegative), 24 (New print), 24-25 (New internegative), 25 (New print), 25-26 (New internegative), 26 (New print), 26-27 (New internegative), 27 (New print), 27-28 (New internegative), 28 (New print), 28-29 (New internegative), 29 (New print), 29 (Original)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="29">29</num> published digital objects.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:24:08-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:24</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1296" level="collection">
<did>
<unittitle>Solomon Sir Jones films</unittitle>
<unitid>WA MSS S-2636</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">29 reels</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_4d6a6012e09617407f4f53d5448621bf">The Solomon Sir Jones films consist of 29 silent black and white films documenting African-American communities in Oklahoma from 1924 to 1928. Jones filmed Oklahoma residents in their homes; during their social, school and church activities; in the businesses they owned; and performing various jobs. The films document several Oklahoma communities, including Muskogee, Okmulgee, Tulsa, Wewoka, Bristow and Taft. The films also document Jones's trips to Indiana, Texas, Louisiana, Arkansas, Tennessee, Missouri, Illinois, New York City, South Carolina, Colorado, and overseas to France, England, Palestine, Switzerland, Italy, Northern Africa, and Germany. Slates between scenes identify locations, dates, and subjects. The films measure 12,800 feet (355 min).</abstract>
<physdesc id="aspace_96e09aa33500e91f3423abe34ea30d62">29 reels: motion picture film 16mm.</physdesc>
<origination label="Creator">
<persname>
<part localtype="agent_person">Jones, S. S., Rev., 1869-1936</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_2b8da39141a5e61c93fec06eeed4317b">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Swann Galleries on the Frederick W. and Carrie S. Beinecke Fund for Western Americana, 2009.</p>
</acqinfo>
<accessrestrict id="aspace_7816751dafe815690171233dd9b85e2c">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>All original and surrogate films are restricted and may be consulted only with permission of the appropriate curator. Each film is available as digital video in the Beinecke Library's Digital Images Online database; links are provided at the film level. DVD reference copies are available in Box 1 listed at the end of the finding aid.</p>
</accessrestrict>
<userestrict id="aspace_633730958711e93c4d6b3b1e3982c1b2">
<head>Conditions Governing Use</head>
<p>The Solomon Sir Jones Films is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_2b9d938f653fceadbc5f075cb9eaf92f">
<head>Preferred Citation</head>
<p>Solomon Sir Jones Films. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_20976ba60c78ca22839d34d6daae0779">
<head>Processing Information</head>
<p>After the Beinecke acquired the Solomon Sir Jones film, they received significant conservation treatment and preservation reformatting at Cineric, Inc. A condition assessment revealed that all film rolls are missing head and tail leader. There are substantial surface stains and deep scratches on both emulsion and base side of the film. All splices were examined for the pitch and/or were redone. Some splices were done with tape wrapped over the perforation holes; repair caused minimal frame loss. All other splices lost about 2 frames when redone. There are many partially ripped frames. The first 10 feet of each roll has more handling damage. Some sections where the perforation is pulled on both sides cannot be used at all. The film is brittle and the perforation holes are very fragile. The emulsion peels off easily. Overall roll 2, 6, 11 and 21-27 are in better condition while roll 1, 3, 7, 8, 12, 13, 14, 16 are in very bad shape, the rest falling somewhere in between.</p>
<p>The preservation reformatting work completed includes new 16mm negatives made with a wet gate optical printer (this eliminated some scratches); new prints were made from new negatives on a contact printer. All rolls were first hand cleaned due to the fine metal dust that came from the deteriorated aluminum reels, and the necessary repairs of the above listed damages were completed. Heavily damaged sections were removed and are stored as a separate reel.</p>
<p>The Media Preserve telecined all new 16mm negatives for the creation of digital files for preservation and access. These digital files are available for access.</p>
<p>The Collection Contents contains edited slate transcriptions and content description supplied by the archivist. Jones was creative in his slate construction since he often ran out of letters and had to use others or omit them all together. In these cases, the transcription was edited to reflect the intended words. Spelling errors were researched and corrected. When omitted but known, state abbreviations are supplied for uniformity. The supplied time codes correspond to the videos available.</p>
<p>Condition assessment information for each film is listed in the finding aid at the film level.</p>
</processinfo>
<altformavail id="aspace_b91ccdb1188438943a8c16dc892a0ece">
<head>Existence and Location of Copies</head>
<p>Each film has a corresponding 16mm negative, 16mm fine grain master print, and various digital file formats.</p>
</altformavail>
<bioghist id="aspace_92e6393cb58da3e388b7dd2d3d08d01f">
<head>Solomon Sir Jones (1869-1936)</head>
<p>Solomon Sir Jones, Baptist minister, businessman, and amateur filmmaker. Jones was born in Tennessee to parents who had once been enslaved. He grew up in the South before moving to Oklahoma in 1889. Jones became an influential Baptist minister, building and pastoring fifteen churches. He was head of the Boyd Faction of Negro Baptists in America and was a successful businessman.</p>
</bioghist>
<scopecontent id="aspace_af2c781475b44921ad2d4af0c860b90d">
<head>Scope and Contents</head>
<p>The Solomon Sir Jones films consist of 29 silent black and white films documenting African-American communities in Oklahoma from 1924 to 1928. The films measure 12,800 feet (355 min). All films are B-wind positive prints, except one roll that contains approximately 150 feet of orange base B-wind positive.</p>
<p>Jones filmed Oklahoma residents in their homes; during their social, school and church activities; in the businesses they owned; and performing various jobs. The films document several Oklahoma communities, including Muskogee, Okmulgee, Tulsa, Wewoka, Bristow and Taft. The films also document Jones's trips to Indiana, Texas, Louisiana, Arkansas, Tennessee, Missouri, Illinois, New York City, South Carolina, Colorado, and overseas to France, England, Palestine, Switzerland, Italy, Northern Africa, and Germany. Slates between scenes identify locations, dates, and subjects.</p>
<p>Jones frequently filmed at various locations by positioning himself outside a building while people exited the building in a line. This perspective provides footage of people as they walk by the camera, usually looking directly at it. Footage of churches includes congregants exiting the service and socializing outside; footage of schools often includes students playing outside or doing exercises; and footage of people at their home includes them outside on their porches or in their yards. Aside from church and scheduled school activities, people presumably exited at Jones's request for the purpose of being filmed by him.</p>
</scopecontent>
<arrangement id="aspace_e916f998bfe433c715a24e20c76f3e6c">
<head>Arrangement</head>
<p>Arranged numerically by film number assigned before Yale's 2009 acquisition.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001843"
source="lcsh">
<part localtype="topical">African American families</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001932"
source="lcsh">
<part localtype="topical">African Americans</part>
</subject>
<subject source="local">
<part localtype="topical">African Americans</part>
<part localtype="geographic">Oklahoma</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001987"
source="lcsh">
<part localtype="topical">African Americans</part>
<part localtype="topical">Social life and customs</part>
</subject>
<subject source="local">
<part localtype="topical">African American Baptists</part>
<part localtype="geographic">Oklahoma</part>
</subject>
<subject source="local">
<part localtype="topical">African American business enterprises</part>
<part localtype="geographic">Oklahoma</part>
</subject>
<subject source="local">
<part localtype="topical">African American churches</part>
<part localtype="geographic">Oklahoma</part>
</subject>
<geogname source="local">
<part localtype="geographic">Oklahoma</part>
<part localtype="topical">Social life and customs</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Oklahoma</part>
<part localtype="topical">Muskogee</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Oklahoma</part>
<part localtype="topical">Okmulgee</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85139993"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">Description and travel</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300136900" source="aat">
<part localtype="genre_form">Motion pictures (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300263874" source="aat">
<part localtype="genre_form">Home movies</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026679" source="aat">
<part localtype="genre_form">Travelogs</part>
</genreform>
<persname>
<part localtype="agent_person">Jones, S. S., Rev., 1869-1936</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2631234"
id="aspace_1ddbd0c5a4d075a418365df784e14123"
level="series">
<did>
<unittitle>Original films</unittitle>
</did>
<accessrestrict id="aspace_6f7c5b219efe6e88c726a9266627b1d7"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. For further information consult Access Services.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/479727"
id="ref12"
level="series">
<did>
<unittitle>Film 1</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Film Reel (16mm)</unittype>
</physdescstructured>
<unitdatestructured altrender="1925, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925, undated</datesingle>
</unitdatestructured>
<physdesc id="aspace_a662f7587251f1ddeab0a9544a553e75" label="Container Summary">(401 feet)</physdesc>
<container altrender="/repositories/11/top_containers/304261 /locations/9"
containerid="39002091241936"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1 (Original)</container>
<daoset altrender="/repositories/11/digital_objects/135625">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://beineckelibrary.aviaryplatform.com/r/v97zk5647r"
identifier="aviary_30490"
linkrole="video-streaming"
show="new"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://d9jk7wjtjpu5g.cloudfront.net/collection_resource_files/thumbnails/000/098/454/original/open-uri20201012-784-3zspvr_1602518272.jpg?1602518274"
identifier="aviary_30490"
linkrole="image-thumbnail"
show="embed"/>
<descriptivenote>
<p>[Aviary] brbl_wa_mss_S-2636_R1</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_04c92acbb1df854c4914c524ce6b0fd5">
<head>Scope and Contents note</head>
<p>Shrinkage 1.3-1.5%, 47 splices, many ripped perforations, some burned frames, several sections with pulled perforations on both sides, some taped splices, some torn frames.</p>
<p>Time codes correspond to digital video reference copies.</p>
<p>Congregationalists coming out of church, Clearview, OK, 1925
00:00:00 - 00:01:02</p>
<p>Melvin School, District No. 57, Clearview, OK, 1925
00:01:03 - 00:01:19</p>
<p>C. S. and B. College of General Baptist State Convention of Oklahoma,
Clearview, OK, 1925
00:01:20 - 00:02:11</p>
<p>Woodman of Union 4000, Members B. Driae, Needham Betley, Special
Representative, Muskogee, OK, 1925 July 13
00:02:12 - 00:02:39</p>
<p>First Baptist Church of Guthrie erected by Dr. S. S. Jones, 1898 to 1905,
Guthrie, OK, 1925
00:02:40 - 00:02:54</p>
<p>Langston University, Honorary J. W. Young President, Graduation Ceremony,
Langston, OK, 1925 May
00:02:55 - 00:05:22</p>
<p>Mr. and Mrs. George W. Davis, country home, 20 miles from Muskogee, OK, 1925
00:05:23 - 00:06:01</p>
<p>His herd bulls, Aberdeen, Angus, Herford, Muskogee, OK, 1925
00:06:02 - 00:06:23</p>
<p>Coming from the city, Muskogee, OK, 1925
00:06:24 - 00:06:42</p>
<p>Russell Davis Farm No. 1, Muskogee, OK, 1925
00:06:43 - 00:06:55</p>
<p>His alfalfa farm, Muskogee, OK, 1925
00:06:56 - 00:07:22</p>
<p>Russell Davis Farm No. 3, Muskogee, OK, 1925
00:07:23 - 00:07:34</p>
<p>Mrs. George Davis Farm, two girls with sunhats, Muskogee, OK, 1925
00:07:35 - 00:07:51</p>
<p>Russell Davis Farm No. 2, Muskogee, OK, 1925
00:07:52 - 00:08:04</p>
<p>First part of his thoroughbred cattle, Angus herd, Muskogee, OK, 1925
00:08:05 - 00:08:51</p>
<p>Mrs. George Davis Herford cattle, Muskogee, OK, 1925
00:08:52 - 00:09:15</p>
<p>Second part of their Angus herd, Muskogee, OK, 1925
00:09:16 - 00:10:05</p>
<p>Mr. Davis and some of his cowboys after the round-up, Muskogee, OK, 1925
00:10:06 - 00:10:25</p>
<p>The end of the punching, undated
00:10:26 - 00:10:38</p>
<p>Unidentified home and individuals, undated
00:10:39- 00:11:35</p>
<p>Mr. and Mrs. L. E. Ragsdale first farm home near Bristow, OK, 1925
00:11:36 - 00:11:49</p>
<p>Their No. 5 1000 Barrel Oil Well; their number 4 gusher near the poor farm,
their number 1 4000BL per day oil well, Bristow, OK, 1925
00:11:50 - 00:13:44</p>
<p>Coming from the city, Bristow, OK, 1925
00:13:45 - 00:14:11</p>
<p>Lincoln High School, Professor G. H. Kaynon, Principal, Bristow, OK, 1925 October 13
00:14:12 - 00:14:59</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/479728"
id="ref14"
level="file">
<did>
<unittitle>Congregationalists coming out of church, Clearview, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_eb7ed00cf62a43f41fd90df313c3d15b">00:00:00 - 00:01:02</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479729"
id="ref16"
level="file">
<did>
<unittitle>Melvin School, District No. 57, Clearview, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_95b32a0a3399f3897b27d47187c7579d">00:01:03 - 00:01:19</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479730"
id="ref18"
level="file">
<did>
<unittitle>C. S. and B. College of General Baptist State Convention of Oklahoma, Clearview, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_629f5fcba75a5929d0261abb157e266f">00:01:20 - 00:02:11</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479731"
id="ref20"
level="file">
<did>
<unittitle>Woodman of Union 4000, Members B. Driae, Needham Betley, Special Representative, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925 July 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925-07-13">1925 July 13</datesingle>
</unitdatestructured>
<materialspec id="aspace_4b95d705b9641a4cbc8e4991a10ae92f">00:02:12 - 00:02:39</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479732"
id="ref22"
level="file">
<did>
<unittitle>First Baptist Church of Guthrie erected by Dr. S. S. Jones, 1898 to 1905, Guthrie, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_903279da6a83e7934dce4c511898b229">00:02:40 - 00:02:54</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479733"
id="ref24"
level="file">
<did>
<unittitle>Langston University, Honorary J. W. Young President, Graduation Ceremony, Langston, OK</unittitle>
<unitdatestructured altrender="1925 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925-05">1925 May</datesingle>
</unitdatestructured>
<materialspec id="aspace_8ecae520090c484058eba512013ecc96">00:02:55 - 00:05:22</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479734"
id="ref26"
level="file">
<did>
<unittitle>Mr. and Mrs. George W. Davis, country home, 20 miles from Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_9884db58a0ede881348ba5cc03c5884b">00:05:23 - 00:06:01</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479735"
id="ref28"
level="file">
<did>
<unittitle>His herd bulls, Aberdeen, Angus, Herford, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_0f25bece5e067fb4b0b12659caf4f9d9">00:06:02 - 00:06:23</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479736"
id="ref30"
level="file">
<did>
<unittitle>Coming from the city, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_a48f6ba647ff4e863b8a765356092df9">00:06:24 - 00:06:42</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479737"
id="ref32"
level="file">
<did>
<unittitle>Russell Davis Farm No. 1, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_5a5dcd143e6d2ad02ba285f6327569d6">00:06:43 - 00:06:55</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479738"
id="ref34"
level="file">
<did>
<unittitle>His alfalfa farm, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_c29965576709c640130b887e9d83adfe">00:06:56 - 00:07:22</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479739"
id="ref36"
level="file">
<did>
<unittitle>Russell Davis Farm No. 3, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_42a13dc1877cf2231e64483915dc5297">00:07:23 - 00:07:34</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479740"
id="ref38"
level="file">
<did>
<unittitle>Mrs. George Davis Farm, two girls with sunhats, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_f7ac6f180b923e8e40edc7d3097eb839">00:07:35 - 00:07:51</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479741"
id="ref40"
level="file">
<did>
<unittitle>Russell Davis Farm No. 2, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_c07ad24200fe52ead9fcd3d2e465812d">00:07:52 - 00:08:04</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479742"
id="ref42"
level="file">
<did>
<unittitle>First part of his thoroughbred cattle, Angus herd, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_4c1d0abad56529e80ab4bd26d121208a">00:08:05 - 00:08:51</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479743"
id="ref44"
level="file">
<did>
<unittitle>Mrs. George Davis Herford cattle, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_344920e08bd787fd2ba702e0172e4aa0">00:08:52 - 00:09:15</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479744"
id="ref46"
level="file">
<did>
<unittitle>Second part of their Angus herd, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_50a0fe06a66e23b8d1b98af6e74ff16b">00:09:16 - 00:10:05</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479745"
id="ref48"
level="file">
<did>
<unittitle>Mr. Davis and some of his cowboys after the round-up, Muskogee, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_63c2add38016697fb909404a4f20bc75">00:10:06 - 00:10:25</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479746"
id="ref50"
level="file">
<did>
<unittitle>The end of the punching</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<materialspec id="aspace_2f42870a91f715765172dc68988758f8">00:10:26 - 00:10:38</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479747"
id="ref52"
level="file">
<did>
<unittitle>Unidentified home and individuals</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<materialspec id="aspace_f9c9369f671dd18f37acf1d29d62ea51">00:10:39- 00:11:35</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479748"
id="ref54"
level="file">
<did>
<unittitle>Mr. and Mrs. L. E. Ragsdale first farm home near Bristow, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_b0d4f0c374dd993c8f16b96d2789ddf7">00:11:36 - 00:11:49</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479749"
id="ref56"
level="file">
<did>
<unittitle>Their No. 5 1000 Barrel Oil Well; their number 4 gusher near the poor farm, their number 1 4000BL per day oil well, Bristow, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_533588652587c98561b07a56bcafdc71">00:11:50 - 00:13:44</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479750"
id="ref58"
level="file">
<did>
<unittitle>Coming from the city, Bristow, OK</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<materialspec id="aspace_8fb6a61116123704628b9b84731b65c9">00:13:45 - 00:14:11</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479751"
id="ref60"
level="file">
<did>
<unittitle>Lincoln High School, Professor G. H. Kaynon, Principal, Bristow, OK</unittitle>
<unitdatestructured altrender="1925 October 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1925-10-13">1925 October 13</datesingle>
</unitdatestructured>
<materialspec id="aspace_db7d1525d87d16956ed876709b35c085">00:14:12 - 00:14:59</materialspec>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/479752"
id="ref63"
level="series">
<did>
<unittitle>Film 2</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Film Reel (16mm)</unittype>
</physdescstructured>
<unitdatestructured altrender="1927, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927, undated</datesingle>
</unitdatestructured>
<physdesc id="aspace_3136a4ad78e54f32711751517986dd3d">(464 feet)</physdesc>
<container altrender="/repositories/11/top_containers/304334 /locations/9"
containerid="39002091241944"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">2 (Original)</container>
<daoset altrender="/repositories/11/digital_objects/135638">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://beineckelibrary.aviaryplatform.com/r/5x2599zd68"
identifier="aviary_30492"
linkrole="video-streaming"
show="new"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://d9jk7wjtjpu5g.cloudfront.net/collection_resource_files/thumbnails/000/098/456/original/open-uri20201012-784-13pw6c3_1602529288.jpg?1602529290"
identifier="aviary_30492"
linkrole="image-thumbnail"
show="embed"/>
<descriptivenote>
<p>[Aviary] brbl_wa_mss_S-2636_R2</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_92dca56e102a829fe5f1fca4ce79062b">
<head>Scope and Contents</head>
<p>Shrinkage 0.9-1.3, 22 splices, few torn frames, few ripped perforations.</p>
<p>Time codes correspond to digital video reference copies.</p>
<p>Unidentified people at a house; cars coming off river barge; people exiting a residence and playing a game outside; unidentified school; children filing into school with teachers; children in a circle playing hokey-pokey, wrestling, and on a see-saw; women on the porch of a residence; couple outside a home;woman with baby on porch, undated
00:00:00 - 00:04:12
4th Session Oklahoma Business League honorary J. J. Simmon and Roscoe
Dungee, Top Men, Muskogee, OK, Includes footage of a parade, 1927 July 8
00:04:13 - 00:06:48</p>
<p>One of Mr. and Mrs. J. H. Roberts farm homes, own 3,000 acres. R 2 Box 27 Bristow, OK, 1927
00:06:49 -00:08:05</p>
<p>Farm home of Mr. and Mrs. J. Roberts, one of their oil wells, thousand acres, Bristow, OK, 1927 May 9
00:08:06 - 00:09:12</p>
<p>Residence of Mr. and Mrs. C. C. Clayton, 228 Hobbson Street, Sapulpa, OK, 1927 May 9
00:09:13 - 00:10:09</p>
<p>The Oklahoma Eagle Printing Company, a part of their office help, 117 North Greenwood Street, Tulsa, OK, 1927
00:10:00 - 00:10:34
Resident of Mr. and Mrs. N. N. Minor, President of Hopewell District, W Con. and Reverend Gilfort Boswell, 1927 May 25
00:10:35 - 00:12:13</p>
<p>Mr. and Mrs. J. Denmon home and property, 700 South Broadway, Hugo, OK, Includes funeral procession, 1927 May 26
00:12:14 - 00:13:20</p>
<p>Sunset Hotel and Add, Mr. J. B. Stamper, Owner and his K. V. Fox Trotter, Holdenville, OK, 1927 May 30
00:13:21 - 00:14:58</p>
<p>Tulane Avenue Baptist Church Bus from New Orleans, Louisiana arriving for the National Baptist Sunday School and Baptist Young Peoples Union Congress at the Municipal Theater in Birmingham, AL; procession of marching band, 1927
00:14:59 - 00:17:15</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/479753"
id="ref65"
level="file">
<did>
<unittitle>Unidentified people at a house; cars coming off river barge; people exiting a residence and playing a game outside; unidentified school; children filing into school with teachers; children in a circle playing hokey-pokey, wrestling, and on a see-saw; women on the porch of a residence; couple outside a home; woman with baby on porch</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<materialspec id="aspace_dc5fb82237a65be53964e163ccf00271">00:00:00 - 00:04:12</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479754"
id="ref67"
level="file">
<did>
<unittitle>4th Session Oklahoma Business League honorary J. J. Simmon and Roscoe Dungee, Top Men, Muskogee, OK</unittitle>
<unitdatestructured altrender="1927 July 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-07-08">1927 July 8</datesingle>
</unitdatestructured>
<materialspec id="aspace_c43b7916a0c3879399d2340c00653639">00:04:13 - 00:06:48</materialspec>
</did>
<scopecontent id="aspace_7aaae5aa8cc78fe77b36d2e03a2b9bb0">
<head>Scope and Contents</head>
<p>Includes footage of a parade</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/479755"
id="ref70"
level="file">
<did>
<unittitle>One of Mr. and Mrs. J. H. Roberts farm homes, own 3,000 acres. R 2 Box 27 Bristow, OK</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<materialspec id="aspace_031326a17a18b3fba03851311793019e">00:06:49 -00:08:05</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479756"
id="ref72"
level="file">
<did>
<unittitle>Farm home of Mr. and Mrs. J. Roberts, one of their oil wells, thousand acres, Bristow, OK</unittitle>
<unitdatestructured altrender="1927 May 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-05-09">1927 May 9</datesingle>
</unitdatestructured>
<materialspec id="aspace_c17b2305a93357e530829a695ec74671">00:08:06 - 00:09:12</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479757"
id="ref74"
level="file">
<did>
<unittitle>Residence of Mr. and Mrs. C. C. Clayton, 228 Hobbson Street, Sapulpa, OK</unittitle>
<unitdatestructured altrender="1927 May 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-05-09">1927 May 9</datesingle>
</unitdatestructured>
<materialspec id="aspace_7f702ccb8b5c0c933485cf044cf1cf4a">00:09:13 - 00:10:09</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479758"
id="ref76"
level="file">
<did>
<unittitle>The Oklahoma Eagle Printing Company, a part of their office help, 117 North Greenwood Street, Tulsa, OK</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<materialspec id="aspace_4ef1c930e009639382c3d7d13020f882">00:10:00 - 00:10:34</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479759"
id="ref78"
level="file">
<did>
<unittitle>Resident of Mr. and Mrs. N. N. Minor, President of Hopewell District, W Con. and Reverend Gilfort Boswell</unittitle>
<unitdatestructured altrender="1927 May 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-05-25">1927 May 25</datesingle>
</unitdatestructured>
<materialspec id="aspace_1c956edc7265d2d695f4b4fcb7d364c8">00:10:35 - 00:12:13</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479760"
id="ref80"
level="file">
<did>
<unittitle>Mr. and Mrs. J. Denmon home and property, 700 South Broadway, Hugo, OK</unittitle>
<unitdatestructured altrender="1927 May 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-05-26">1927 May 26</datesingle>
</unitdatestructured>
<materialspec id="aspace_98d1c96e4ce7afe0b973fdd83f680013">00:12:14 - 00:13:20</materialspec>
</did>
<scopecontent id="aspace_37e9673e902b2a20725b1d43ebc0b801">
<head>Scope and Contents</head>
<p>Includes funeral procession</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/479761"
id="ref83"
level="file">
<did>
<unittitle>Sunset Hotel and Add, Mr. J. B. Stamper, Owner and his K. V. Fox Trotter, Holdenville, OK</unittitle>
<unitdatestructured altrender="1927 May 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-05-30">1927 May 30</datesingle>
</unitdatestructured>
<materialspec id="aspace_43294ff9b2d0be7de14f7626a32f60e7">00:13:21 - 00:14:58</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479762"
id="ref85"
level="file">
<did>
<unittitle>Tulane Avenue Baptist Church Bus from New Orleans, Louisiana arriving for the National Baptist Sunday School and Baptist Young Peoples Union Congress at the Municipal Theater in Birmingham, AL</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<materialspec id="aspace_beb05a8414f42045bf584c0e386860a0">00:14:59 - 00:17:15</materialspec>
</did>
<scopecontent id="aspace_5e60fade56b0f9b06a0cdcf92313d2cc">
<head>Scope and Contents</head>
<p>Procession of marching band entering the headquarters of the National Baptist [?] S. and B. Y. P. U. Congress and on the street</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/479763"
id="ref89"
level="series">
<did>
<unittitle>Film 3</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Film Reel (16mm)</unittype>
</physdescstructured>
<unitdatestructured altrender="1926, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926, undated</datesingle>
</unitdatestructured>
<physdesc id="aspace_8f9e39c47315914697640a05d757ab16" label="Container Summary">(487 feet)</physdesc>
<container altrender="/repositories/11/top_containers/304335 /locations/9"
containerid="39002091241951"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">3 (Original)</container>
<daoset altrender="/repositories/11/digital_objects/135639">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://beineckelibrary.aviaryplatform.com/r/k93125qt6k"
identifier="aviary_30494"
linkrole="video-streaming"
show="new"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://d9jk7wjtjpu5g.cloudfront.net/collection_resource_files/thumbnails/000/098/458/original/open-uri20201012-784-885x73_1602529537.jpg?1602529539"
identifier="aviary_30494"
linkrole="image-thumbnail"
show="embed"/>
<descriptivenote>
<p>[Aviary] brbl_wa_mss_S-2636_R3</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_7f4c7869da8629fa442af67c39744559">
<head>Scope and Contents note</head>
<p>Shrinkage 1.1-1.7%%, 15 splices, a lot of ripped perforations, many folded edges, many torn frames, some tapes splices, thin and dense exposure.</p>
<p>Time codes correspond to digital video reference copies.</p>
<p>People exiting church; people exiting a house; exterior of Ninth Street YMCA
Branch, undated
00:00:00 - 00:02:46
Winter scenes from train or automobile, undated
00:02:47 - 00:03:32
Madam C. J. Walker's Million Dollar Management Company, 640 North West
St., Mr. F. B. Ransom, Manager, Indianapolis, IN, 1926 January 9
00:03:33 - 00:08:12
Mrs. Allace C. Burnett, National Representative Madam C .J Walker Co at S.
W. headquarters, Muskogee, OK, 1926 January 16
00:08:11 - 00:08:35</p>
<p>Corinthian Baptist Church and Sunday School Dr. Ira M. Hendon, Pastor,
Indianapolis, IN, 1926 January 9
00:08:36 - 00:10:45</p>
<p>Dr. and Mrs. Wesbrooks, a part of their great church on Sunday, Indianapolis,
IN, People lined up outside of YMCA building, 1926 January 19
00:10:46 - 00:13:06</p>
<p>Home Mission Board National Baptist Convention, Ira M. Hendon, Secretary,
Indianapolis, IN, 1926
00:13:07 - 00:14:53
H. Parker house and livestock, Indianapolis, IN, 1926
00:14:54 - 00:16:17
[C. J.] Walker Theatre, Indianapolis, IN, 1926
00:16:18 - 00:17:51</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/479764"
id="ref91"
level="file">
<did>
<unittitle>People exiting church; people exiting a house; exterior of Ninth Street YMCA Branch</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<materialspec id="aspace_4b21c11971cb943f02aaee2d227ebabb">00:00:00 - 00:02:46</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479765"
id="ref93"
level="file">
<did>
<unittitle>Winter scenes from train or automobile</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<materialspec id="aspace_0772786d8ce04debbebc67bc80939d84">00:02:47 - 00:03:32</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479766"
id="ref95"
level="file">
<did>
<unittitle>Madam C. J. Walker's Million Dollar Management Company, 640 North West St., Mr. F. B. Ransom, Manager, Indianapolis, IN</unittitle>
<unitdatestructured altrender="1926 January 9"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1926-01-09">1926 January 9</datesingle>
</unitdatestructured>
<materialspec id="aspace_b13e1b36eadaf68cf8502f975dea60b7">00:03:33 - 00:08:12</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479767"
id="ref97"
level="file">
<did>
<unittitle>Mrs. Allace C. Burnett, National Representative Madam C .J Walker Co at S. W. headquarters, Muskogee, OK</unittitle>
<unitdatestructured altrender="1926 January 16"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1926-01-16">1926 January 16</datesingle>
</unitdatestructured>
<materialspec id="aspace_e8e60c1f566a31084059ae3721bfc455">00:08:11 - 00:08:35</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479768"
id="ref99"
level="file">
<did>
<unittitle>Corinthian Baptist Church and Sunday School Dr. Ira M. Hendon, Pastor, Indianapolis, IN</unittitle>
<unitdatestructured altrender="1926 January 9"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1926-01-09">1926 January 9</datesingle>
</unitdatestructured>
<materialspec id="aspace_5076a5260d1c37f2a2a0be31cc4aebf2">00:08:36 - 00:10:45</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479769"
id="ref101"
level="file">
<did>
<unittitle>Dr. and Mrs. Wesbrooks, a part of their great church on Sunday, Indianapolis, IN</unittitle>
<unitdatestructured altrender="1926 January 19"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1926-01-19">1926 January 19</datesingle>
</unitdatestructured>
<materialspec id="aspace_fb89788f97d6e580db3468950c64e71c">00:10:46 - 00:13:06</materialspec>
</did>
<scopecontent id="aspace_bed9dcc2fc8a85c9020f2e945de37108">
<head>Scope and Contents</head>
<p>People lined up outside of YMCA building</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/479770"
id="ref104"
level="file">
<did>
<unittitle>Home Mission Board National Baptist Convention, Ira M. Hendon, Secretary, Indianapolis, IN</unittitle>
<unitdatestructured altrender="1926" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926</datesingle>
</unitdatestructured>
<materialspec id="aspace_649eb199f420bdc3d176ff35a52d913e">00:13:07 - 00:14:53</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479771"
id="ref106"
level="file">
<did>
<unittitle>H. Parker house and livestock, Indianapolis, IN</unittitle>
<unitdatestructured altrender="1926" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926</datesingle>
</unitdatestructured>
<materialspec id="aspace_0038b7c8815244ba5922b4c772559eb2">00:14:54 - 00:16:17</materialspec>
</did>
</c>
<c altrender="/repositories/11/archival_objects/479772"
id="ref108"
level="file">
<did>
<unittitle>[C. J.] Walker Theatre, Indianapolis, IN</unittitle>
<unitdatestructured altrender="1926" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926</datesingle>
</unitdatestructured>
<materialspec id="aspace_e9293c294bf9f8d8674fceb966ed2779">00:16:18 - 00:17:51</materialspec>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/479773"
id="ref111"
level="series">
<did>
<unittitle>Film 4</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Film Reel (16mm)</unittype>
</physdescstructured>
<unitdatestructured altrender="1926-1927, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926">1926</fromdate>
<todate standarddate="1927">1927</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_e8cf7600832d114a6baa5527fdf8e042" label="Container Summary">(456 feet)</physdesc>
<container altrender="/repositories/11/top_containers/304336 /locations/9"
containerid="39002091241969"
id="aspace_ref111_c1"
label="Mixed Materials"
localtype="box">4 (Original)</container>
<daoset altrender="/repositories/11/digital_objects/136318">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://beineckelibrary.aviaryplatform.com/r/sq8qb9vs3v"
identifier="aviary_30922"
linkrole="video-streaming"
show="new"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://d9jk7wjtjpu5g.cloudfront.net/collection_resource_files/thumbnails/000/098/999/original/open-uri20201015-807-yeyhoe_1602769728.jpg?1602769730"
identifier="aviary_30922"
linkrole="image-thumbnail"
show="embed"/>
<descriptivenote>
<p>[Aviary] brbl_wa_mss_S-2636_R4</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_995df0c4de5147a615c066b4f2d87a18">