-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmovies-1900s.json
3217 lines (3217 loc) · 97.7 KB
/
movies-1900s.json
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
[
{
"title": "After Dark in Central Park",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Boarding School Girls' Pajama Parade",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Buffalo Bill's Wild West Parad",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Caught",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Clowns Spinning Hats",
"year": 1900,
"cast": [],
"genres": [
"Silent"
],
"href": "Clowns_Spinning_Hats",
"extract": "Clowns Spinning Hats is a black-and-white silent film featuring clowns throwing hats back and forth to each other. It was written and produced by Lubin Films and released April 7, 1900."
},
{
"title": "Capture of Boer Battery by British",
"year": 1900,
"cast": [],
"genres": [
"Short",
"Documentary",
"Silent"
],
"href": "Capture_of_Boer_Battery_by_British",
"extract": "Capture of Boer Battery by British is a black-and-white silent short docu-fiction film produced by James H. White for Edison Manufacturing Company in 1900. It is one minute in length and depicts the resistance of the Gordon Highlanders to the oncoming fire of the Boer's advance during the Boer War. It was filmed in West Orange, New Jersey USA and released April 14, 1900.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Capture_of_Boer_Battery_by_British_1900_James_H_White_Thomas_Edison.webm/320px--Capture_of_Boer_Battery_by_British_1900_James_H_White_Thomas_Edison.webm.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "The Enchanted Drawing",
"year": 1900,
"cast": [],
"genres": [
"Silent"
],
"href": "The_Enchanted_Drawing",
"extract": "The Enchanted Drawing is a 1900 silent film directed by J. Stuart Blackton. It is best known for containing the first animated sequences recorded on standard picture film, which has led Blackton to be considered the father of American animation.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/The_Enchanted_Drawing.ogv/320px--The_Enchanted_Drawing.ogv.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "Feeding Sea Lions",
"year": 1900,
"cast": [
"Paul Boyton"
],
"genres": [
"Short",
"Silent"
],
"href": "Feeding_Sea_Lions",
"extract": "Feeding Sea Lions is short silent film featuring Paul Boyton feeding sea lions at his Sea Lion Park at Coney Island. Boyton is shown feeding the trained sea lions, twelve in number. The sea lions follow Boyton up the steps of the pool and then follow him back into the water. One of them steals food out of the basket. The film was made by Lubin Studios on March 10, 1900."
},
{
"title": "How to Make a Fat Wife Out of Two Lean Ones",
"year": 1900,
"cast": [],
"genres": [
"Comedy"
],
"href": null
},
{
"title": "New Life Rescue",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "New Morning Bath",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Searching Ruins on Broadway, Galveston, for Dead Bodies",
"year": 1900,
"cast": [],
"genres": [
"Silent"
],
"href": "Searching_Ruins_on_Broadway,_Galveston,_for_Dead_Bodies",
"extract": "Searching Ruins on Broadway, Galveston, for Dead Bodies is a 1900 black-and-white silent film depicting the destruction caused by the Galveston hurricane on September 8, 1900. The film was produced by Edison Studios. It depicts laborers clearing debris searching for dead bodies. A body was found during the search.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Searching_Ruins_on_Broadway_Galveston_for_Dead_Bodies_1900_Albert_E_Smith_Thomas_Edison.webm/320px--Searching_Ruins_on_Broadway_Galveston_for_Dead_Bodies_1900_Albert_E_Smith_Thomas_Edison.webm.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "Sherlock Holmes Baffled",
"year": 1900,
"cast": [],
"genres": [
"Short",
"Silent"
],
"href": "Sherlock_Holmes_Baffled",
"extract": "Sherlock Holmes Baffled is an American short silent film created in 1900 with cinematography by Arthur Marvin. It is the earliest known film to feature Arthur Conan Doyle's detective character Sherlock Holmes, albeit in a form unlike that of later screen incarnations. In the film, a thief who can appear and disappear at will steals a sack of items from Sherlock Holmes. At each point, Holmes's attempts to thwart the intruder end in failure.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Sherlock_Holmes_Baffled.ogv/320px--Sherlock_Holmes_Baffled.ogv.jpg",
"thumbnail_width": 320,
"thumbnail_height": 256
},
{
"title": "The Tribulations of an Amateur Photographer",
"year": 1900,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Trouble in Hogan's Alley",
"year": 1900,
"cast": [],
"genres": [
"Comedy"
],
"href": null
},
{
"title": "Two Old Sparks",
"year": 1900,
"cast": [],
"genres": [
"Short"
],
"href": null
},
{
"title": "The Wonder, Ching Ling Foo",
"year": 1900,
"cast": [
"Ching Ling Foo"
],
"genres": [
"Short"
],
"href": null
},
{
"title": "Watermelon Contest",
"year": 1900,
"cast": [],
"genres": [
"Short"
],
"href": null
},
{
"title": "Acrobats in Cairo",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "An Affair of Honor",
"year": 1901,
"cast": [],
"genres": [
"Silent"
],
"href": "An_Affair_of_Honor",
"extract": "Affair of Honor is a silent film that was inspired by a famous painting. It was made 18 May 1901 in Philadelphia, Pennsylvania by Lubin Studios."
},
{
"title": "Another Job for the Undertaker",
"year": 1901,
"cast": [],
"genres": [
"Silent"
],
"href": "Another_Job_for_the_Undertaker",
"extract": "Another Job for the Undertaker is a 1901 silent comic trick film made at Edison's recently opened studio at 41 East 21st Street in Manhattan. It was photographed by Edwin S. Porter and co-directed by Porter and George S. Fleming. The two-shot film was copyrighted on May 15, 1901 and is approximately two minutes in length. It lacks a head title, which would have been supplied by projecting a separate lantern slide before screening the film.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Another_Job_for_the_Undertaker_1901_Edwin_S_Porter_Thomas_Edison.webm/320px--Another_Job_for_the_Undertaker_1901_Edwin_S_Porter_Thomas_Edison.webm.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "Arrival of Tongkin Train",
"year": 1901,
"cast": [],
"genres": [
"Documentary",
"Silent"
],
"href": "Arrival_of_Tongkin_Train",
"extract": "Arrival of Tongkin Train, also referred to as Arrival of Train, Tien-Tsin, is a 1901 documentary silent film showing the arrival of a train in Tianjin, China. The film was made by American Mutoscope and Biograph Company."
},
{
"title": "The Artist's Dilemma",
"year": 1901,
"cast": [],
"genres": [
"Fantasy",
"Silent"
],
"href": "The_Artist%27s_Dilemma",
"extract": "The Artist's Dilemma is a 1901 silent, fantasy film. It was filmed in New York City, New York, USA. It is short film running two minutes. It features an artist asleep in his studio and his dream of a clock opening and a beautiful woman coming out of it.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/The_Artist%27s_Dilemma_%281901%29_-_yt.webm/320px--The_Artist%27s_Dilemma_%281901%29_-_yt.webm.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "Band and Battalion of the U.S. Indian School",
"year": 1901,
"cast": [],
"genres": [
"Silent"
],
"href": "Band_and_Battalion_of_the_U.S._Indian_School",
"extract": "Band and Battalion of the U.S. Indian School is a silent film documentary made on April 30, 1901 by American Mutoscope and Biograph Company made in Carlisle, Pennsylvania, USA. The cinematographer was Arthur Marvin. It depicts a parade drill by the cadet corps of the American Indian School which includes many representatives of the Native American tribes in the United States. The head of the parade was the renowned Carlisle Band of the Carlisle Indian Industrial School. In 1902 Marvin produced another documentary, Club Swinging at Carlisle Indian School for AM&B."
},
{
"title": "Barnum and Bailey's Circus",
"year": 1901,
"cast": [],
"genres": [],
"href": "Barnum_and_Bailey%27s_Circus",
"extract": "The Ringling Bros. and Barnum & Bailey Circus is an American traveling circus company billed as The Greatest Show on Earth. It and its predecessor shows ran from 1871 to 2017. Known as Ringling Bros. and Barnum & Bailey, the circus started in 1919 when the Barnum & Bailey's Greatest Show on Earth, a circus created by P. T. Barnum and James Anthony Bailey, was merged with the Ringling Bros. World's Greatest Shows. The Ringling brothers had purchased Barnum & Bailey Ltd. following Bailey's death in 1906, but ran the circuses separately until they were merged in 1919.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Ringling_Logo.png/320px-Ringling_Logo.png",
"thumbnail_width": 320,
"thumbnail_height": 132
},
{
"title": "Beef Extract Room",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Boxing in Barrels",
"year": 1901,
"cast": [],
"genres": [
"Silent"
],
"href": "Boxing_in_Barrels",
"extract": "Boxing in Barrels is a silent film written and released by Lubin Studios in 1901. It features a man and a clown boxing in a barrel."
},
{
"title": "Branding Hams",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Buffalo Street Parade",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "A Busy Corner at Armour's",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Bund, Shanghai",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Circular Panorama of the Base of the Electric Tower, Ending Looking Down the Mall",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Circular Panorama of the Electric Tower and Pond",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Circular Panorama of the Esplanade with the Electric Tower in the Background",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Coaling a Steamer, Nagasaki Bay, Japan",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Convention of Railroad Passengers",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Cornell-Columbia-University of Pennsylvania Boat Race at Ithaca, N.Y., Showing Lehigh Valley Observation Train",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Couchee Dance on the Midway",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Donkey Party",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Finish of Bridget McKeen",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Follow the Leader",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Fraudulent Beggar",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Fun at a Children's Party",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "A Good Joke",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Gordon Sisters Boxing",
"year": 1901,
"cast": [],
"genres": [
"Short",
"Silent"
],
"href": "The_Gordon_Sisters_Boxing",
"extract": "The Gordon Sisters Boxing is an American short black-and-white silent film directed by Thomas A. Edison. It is one of the earliest female boxing movies. Edison’s film catalogue describes the film as follows: “Champion lady boxers of the world. Here we depict two female pugilists that are really clever. They are engaged in a hot and heavy one-round sparring exhibition, which is photographed against a very pleasing background, consisting of a park, with marble entrance and walk, and beautiful trees and shrubbery. The exhibition is very lively from start to finish; the blows fall thick and fast, and some very clever pugilistic generalship is exhibited.”",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Gordon_Sisters_Boxing_1901.ogv/320px--Gordon_Sisters_Boxing_1901.ogv.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "Grand Entry, Indian Congress",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Happy Hooligan April-Fooled",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Happy Hooligan Surprised",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Harbor of Shanghai",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "A Hold-Up",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Ice-Boat Racing at Redbank, N.J.",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Indians No. 1",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Jeffries and Ruhlin Sparring Contest at San Francisco, Cal., November 15, 1901",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "A Joke on Grandma",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Kansas Saloon Smashers",
"year": 1901,
"cast": [],
"genres": [
"Comedy",
"Short"
],
"href": "Kansas_Saloon_Smashers",
"extract": "Kansas Saloon Smashers is a 1901 comedy short film produced and distributed by Edison Studios. Directed by Edwin S. Porter, it is a satire of American activist Carrie Nation. The film portrays Nation and her followers entering and destroying a saloon. After the bartender retaliates by spraying Nation with water, policemen order them out; the identities of the actors are not known. Inspiration for the film was provided by an editorial cartoon which appeared in the New York Evening Journal.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/KansasSaloonSmashers1901.jpg/320px-KansasSaloonSmashers1901.jpg",
"thumbnail_width": 320,
"thumbnail_height": 247
},
{
"title": "Launching of the New Battleship 'Ohio' at San Francisco, Cal. When President McKinley Was There",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Laura Comstock's Bag-Punching Dog",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Life of a Fireman",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Love by the Light of the Moon",
"year": 1901,
"cast": [],
"genres": [],
"href": "Love_by_the_Light_of_the_Moon",
"extract": "Love by the Light of the Moon is a 1901 film by Edwin S. Porter, produced by the Edison Manufacturing Company. It mixes animation and live action and predates the man in the Moon theme of the 1902 French science fiction film A Trip to the Moon by Georges Méliès.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Still_from_1901_film_Love_by_the_Light_of_the_Moon.jpg/320px-Still_from_1901_film_Love_by_the_Light_of_the_Moon.jpg",
"thumbnail_width": 320,
"thumbnail_height": 227
},
{
"title": "The Martyred Presidents",
"year": 1901,
"cast": [],
"genres": [],
"href": "The_Martyred_Presidents",
"extract": "The Martyred Presidents is a 1901 American film directed by Edwin S. Porter.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/The_Martyred_Presidents_%281901%29.jpg/320px-The_Martyred_Presidents_%281901%29.jpg",
"thumbnail_width": 320,
"thumbnail_height": 220
},
{
"title": "Midway Dance",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Miles Canyon Tramway",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Montreal Fire Department on Runners",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Mounted Police Charge",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Old Maid Having Her Picture Taken",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Opening of the Pan-American Exposition Showing Vice President Roosevelt Leading the Procession",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Pan-American Exposition by Night",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Panorama of the Exposition, No. 1",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Panorama of the Exposition, No. 2",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Panoramic View of the Fleet After Yacht Race",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Panoramic View of the Temple of Music and Esplanade",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Panoramic View, Asheville, N.C.",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Le Petit chaperon rouge",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Photographing the Audience",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Pie, Tramp and the Bulldog",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "President McKinley and Escort Going to the Capitol",
"year": 1901,
"cast": [],
"genres": [
"Documentary",
"Short"
],
"href": "President_McKinley_Inauguration_Footage",
"extract": "President McKinley Inauguration Footage is the name given to two different short documentary films which were combined as one. The two titles are President McKinley Taking the Oath and President McKinley and Escort Going to the Capitol. The two show President William McKinley arriving at the United States Capitol in order to take the oath of office for President of the United States as part of his second inauguration on March 4, 1901.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/1/12/PresidentMcKinleyInaugurationFootage1901v2.jpg",
"thumbnail_width": 269,
"thumbnail_height": 256
},
{
"title": "President McKinley Taking the Oath",
"year": 1901,
"cast": [],
"genres": [
"Documentary",
"Short"
],
"href": "President_McKinley_Inauguration_Footage",
"extract": "President McKinley Inauguration Footage is the name given to two different short documentary films which were combined as one. The two titles are President McKinley Taking the Oath and President McKinley and Escort Going to the Capitol. The two show President William McKinley arriving at the United States Capitol in order to take the oath of office for President of the United States as part of his second inauguration on March 4, 1901.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/1/12/PresidentMcKinleyInaugurationFootage1901v2.jpg",
"thumbnail_width": 269,
"thumbnail_height": 256
},
{
"title": "President McKinley's Speech at the Pan-American Exposition",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "The Queen's Funeral",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Le Rêve de Noël",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Rocking Gold in the Klondike",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Ruhlin in His Training Quarters",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Shad Fishing at Gloucester, N.J.",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Terrible Teddy, the Grizzly King",
"year": 1901,
"cast": [],
"genres": [
"Silent"
],
"href": "Terrible_Teddy,_the_Grizzly_King",
"extract": "Terrible Teddy, the Grizzly King is a 1901 American silent film directed by Edwin S. Porter. Produced by the Edison Manufacturing Company, it is the earliest known political satire in American film. It features three actors, all of whom are unknown.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Terrible_Teddy%2C_the_grizzly_king_%281901%29.webm/320px--Terrible_Teddy%2C_the_grizzly_king_%281901%29.webm.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "The Tramp's Dream",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Tramp's Nap Interrupted",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Trapeze Disrobing Act",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "A Trip Around the Pan-American Exposition",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Turkish Dance",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Twelve in a Barrel",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Two Rubes at the Theatre",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Upper Falls of the Yellowstone",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Washing Gold on 20 Above Hunker, Klondike",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Wedding Procession in Cairo",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Why Mr. Nation Wants a Divorce",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Wonderful Trick Donkey, The",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Yacht Race Fleet Following the Committee Boat 'Navigator' Oct. 4th, The",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "You Can't Lose Your Mother-in-Law",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Pyrate Bay",
"year": 1901,
"cast": [],
"genres": []
},
{
"title": "Arrival of Prince Henry (of Prussia) and President Roosevelt at Shooter's Island (1902)",
"year": 1902,
"cast": [],
"genres": [
"Short"
],
"href": null
},
{
"title": "The Burlesque Suicide, No. 2",
"year": 1902,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Burning of Durland's Riding Academy",
"year": 1902,
"cast": [],
"genres": [
"Documentary",
"Short"
],
"href": null
},
{
"title": "The Interrupted Bathers",
"year": 1902,
"cast": [],
"genres": [
"Comedy",
"Short"
],
"href": null
},
{
"title": "Jack and the Beanstalk",
"year": 1902,
"cast": [],
"genres": [
"Short",
"Silent"
],
"href": "Jack_and_the_Beanstalk_(1902_film)",
"extract": "Jack and the Beanstalk is a 1902 American silent short film directed by George S. Fleming and Edwin S. Porter.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Jack_and_the_Beanstalk_%281902%29.webm/320px--Jack_and_the_Beanstalk_%281902%29.webm.jpg",
"thumbnail_width": 320,
"thumbnail_height": 240
},
{
"title": "Who Said Watermelon?",
"year": 1902,
"cast": [],
"genres": [
"Comedy",
"Short"
],
"href": null
},
{
"title": "Snow White",
"year": 1902,
"cast": [],
"genres": [
"Silent"
],
"href": "Snow_White_(1902_film)",
"extract": "Snow White is a silent movie made in 1902. It was the first time the classic 1812 Brothers Grimm fairy tale was made into a film. It was registered for United States copyright on May 1, 1903."
},
{
"title": "After Dark; or, the Policeman and His Lantern",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Alice in Wonderland",
"year": 1903,
"cast": [
"May Clark"
],
"genres": [
"Fantasy",
"Silent"
],
"href": "Alice_in_Wonderland_(1903_film)",
"extract": "Alice in Wonderland is a 1903 British silent fantasy film directed by Cecil Hepworth and Percy Stow. Only one copy of the original film is known to exist. The British Film Institute (BFI) partially restored the movie and its original film tinting and released it in 2010. According to BFI, the original film ran about 12 minutes; the restoration runs 9 minutes and 35 seconds. At the beginning of the restoration, it states that this is the first movie adaptation of Lewis Carroll's 1865 children's book Alice's Adventures in Wonderland. It was filmed mostly at Port Meadow in Oxford.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Norman_Whitten_Mad_Hatter_1903.jpg/320px-Norman_Whitten_Mad_Hatter_1903.jpg",
"thumbnail_width": 320,
"thumbnail_height": 202
},
{
"title": "An Up-to-Date Studio",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "A Visit to the Zoo",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "At Work in a Peat Bog",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Automobile Explosion",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "The Ascent of Mont Blanc",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Bicycle Dive",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Bloodhounds Tracking a Convict",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Buying a Baby",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Cliff Scenery at the Fabbins",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Close Quarters, with a Notion of the Motion of the Ocean",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Cruelty on the High Seas",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "A Coach Drive from Glengariffe to Kenmore",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Discovered Through an Opera Glass",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "A Drove of Wild Welsh Mountain Ponies",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "The Delhi Camp Railway",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "DeVoy's Revolving Ladder Act",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "The Deserter",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "The Effects of a Trolley Car Collision",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Firemen to the Rescue",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "The Goose Takes a Trolley Ride",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Egyptian Fakir with Dancing Monkey",
"year": 1903,
"cast": [],
"genres": [],
"href": null
},
{
"title": "Electrocuting an Elephant",
"year": 1903,
"cast": [],
"genres": [
"Documentary",
"Short",
"Silent"
],
"href": "Electrocuting_an_Elephant",
"extract": "Electrocuting an Elephant is a 1903 American, short, black-and-white, silent documentary film of the killing of the elephant Topsy by electrocution at a Coney Island amusement park. It was produced by the Edison film company and is believed to have been shot by Edwin S. Porter or Jacob Blair Smith.",
"thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Electrocuting_an_Elephant_edison_film_1903_frame_shot.png/320px-Electrocuting_an_Elephant_edison_film_1903_frame_shot.png",
"thumbnail_width": 320,