Dataset Preview
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code: DatasetGenerationCastError
Exception: DatasetGenerationCastError
Message: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 1 new columns ({'producer'}) and 2 missing columns ({'certificates', 'cast'}).
This happened while the json dataset builder was generating data using
hf://datasets/akshayg08/mmimdb_test/annotations/0000010.json (at revision bf096727322a99cf10cea4eafa28a78a530e7820)
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback: Traceback (most recent call last):
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1870, in _prepare_split_single
writer.write_table(table)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/arrow_writer.py", line 622, in write_table
pa_table = table_cast(pa_table, self._schema)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2292, in table_cast
return cast_table_to_schema(table, schema)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2240, in cast_table_to_schema
raise CastError(
datasets.table.CastError: Couldn't cast
rating: double
distributors: list<item: struct<name: string, long imdb name: string>>
child 0, item: struct<name: string, long imdb name: string>
child 0, name: string
child 1, long imdb name: string
runtimes: list<item: string>
child 0, item: string
year: int64
color info: list<item: string>
child 0, item: string
plot: list<item: string>
child 0, item: string
votes: int64
producer: list<item: struct<canonical name: string, name: string, long imdb name: string, long imdb canonical name: string>>
child 0, item: struct<canonical name: string, name: string, long imdb name: string, long imdb canonical name: string>
child 0, canonical name: string
child 1, name: string
child 2, long imdb name: string
child 3, long imdb canonical name: string
title: string
smart canonical title: string
long imdb canonical title: string
long imdb title: string
country codes: list<item: string>
child 0, item: string
smart long imdb canonical title: string
cover url: string
sound mix: list<item: string>
child 0, item: string
genres: list<item: string>
child 0, item: string
director: list<item: struct<canonical name: string, name: string, long imdb name: string, long imdb canonical name: string>>
child 0, item: struct<canonical name: string, name: string, long imdb name: string, long imdb canonical name: string>
child 0, canonical name: string
child 1, name: string
child 2, long imdb name: string
child 3, long imdb canonical name: string
cinematographer: list<item: struct<canonical name: string, name: string, long imdb name: string, long imdb canonical name: string>>
child 0, item: struct<canonical name: string, name: string, long imdb name: string, long imdb canonical name: string>
child 0, canonical name: string
child 1, name: string
child 2, long imdb name: string
child 3, long imdb canonical name: string
akas: list<item: string>
child 0, item: string
aspect ratio: string
production companies: list<item: struct<name: string, long imdb name: string>>
child 0, item: struct<name: string, long imdb name: string>
child 0, name: string
child 1, long imdb name: string
kind: string
countries: list<item: string>
child 0, item: string
plot outline: string
full-size cover url: string
canonical title: string
to
{'rating': Value(dtype='float64', id=None), 'distributors': [{'name': Value(dtype='string', id=None), 'long imdb name': Value(dtype='string', id=None)}], 'runtimes': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'year': Value(dtype='int64', id=None), 'color info': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'plot': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'votes': Value(dtype='int64', id=None), 'title': Value(dtype='string', id=None), 'smart canonical title': Value(dtype='string', id=None), 'long imdb canonical title': Value(dtype='string', id=None), 'certificates': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'long imdb title': Value(dtype='string', id=None), 'country codes': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'smart long imdb canonical title': Value(dtype='string', id=None), 'cover url': Value(dtype='string', id=None), 'sound mix': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'genres': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'director': [{'canonical name': Value(dtype='string', id=None), 'name': Value(dtype='string', id=None), 'long imdb name': Value(dtype='string', id=None), 'long imdb canonical name': Value(dtype='string', id=None)}], 'cinematographer': [{'canonical name': Value(dtype='string', id=None), 'name': Value(dtype='string', id=None), 'long imdb name': Value(dtype='string', id=None), 'long imdb canonical name': Value(dtype='string', id=None)}], 'akas': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'aspect ratio': Value(dtype='string', id=None), 'production companies': [{'name': Value(dtype='string', id=None), 'long imdb name': Value(dtype='string', id=None)}], 'kind': Value(dtype='string', id=None), 'countries': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'plot outline': Value(dtype='string', id=None), 'full-size cover url': Value(dtype='string', id=None), 'canonical title': Value(dtype='string', id=None), 'cast': [{'canonical name': Value(dtype='string', id=None), 'name': Value(dtype='string', id=None), 'long imdb name': Value(dtype='string', id=None), 'long imdb canonical name': Value(dtype='string', id=None)}]}
because column names don't match
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1417, in compute_config_parquet_and_info_response
parquet_operations = convert_to_parquet(builder)
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1049, in convert_to_parquet
builder.download_and_prepare(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 924, in download_and_prepare
self._download_and_prepare(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1000, in _download_and_prepare
self._prepare_split(split_generator, **prepare_split_kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1741, in _prepare_split
for job_id, done, content in self._prepare_split_single(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1872, in _prepare_split_single
raise DatasetGenerationCastError.from_cast_error(
datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 1 new columns ({'producer'}) and 2 missing columns ({'certificates', 'cast'}).
This happened while the json dataset builder was generating data using
hf://datasets/akshayg08/mmimdb_test/annotations/0000010.json (at revision bf096727322a99cf10cea4eafa28a78a530e7820)
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
rating float64 | distributors list | runtimes sequence | year int64 | color info sequence | plot sequence | votes int64 | title string | smart canonical title string | long imdb canonical title string | certificates sequence | long imdb title string | country codes sequence | smart long imdb canonical title string | cover url string | sound mix sequence | genres sequence | director list | cinematographer list | akas sequence | aspect ratio string | production companies list | kind string | countries sequence | plot outline string | full-size cover url string | canonical title string | cast list | producer list | writer list | languages sequence | language codes sequence | original music list | miscellaneous companies list |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6.2 | [
{
"name": "Edison Manufacturing Company",
"long imdb name": "Edison Manufacturing Company"
},
{
"name": "Continental Commerce Company",
"long imdb name": "Continental Commerce Company"
}
] | [
"1"
] | 1,893 | [
"Black and White"
] | [
"A stationary camera looks at a large anvil with a blacksmith behind it and one on either side. The smith in the middle draws a heated metal rod from the fire, places it on the anvil, and all three begin a rhythmic hammering. After several blows, the metal goes back in the fire. One smith pulls out a bottle of beer... | 1,335 | Blacksmith Scene | Blacksmith Scene | Blacksmith Scene (1893) | [
"USA:Unrated"
] | Blacksmith Scene (1893) | [
"us"
] | Blacksmith Scene (1893) | http://ia.media-imdb.com/images/M/MV5BNDg0ZDg0YWYtYzMwYi00ZjVlLWI5YzUtNzBkNjlhZWM5ODk5XkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1._SX100_SY75_.jpg | [
"lent"
] | [
"Short"
] | [
{
"canonical name": "Dickson, William K.L.",
"name": "William K.L. Dickson",
"long imdb name": "William K.L. Dickson",
"long imdb canonical name": "Dickson, William K.L."
}
] | [
{
"canonical name": "Heise, William",
"name": "William Heise",
"long imdb name": "William Heise",
"long imdb canonical name": "Heise, William"
}
] | [
"Blacksmith Scene #1::USA (alternative title)",
"Blacksmith Shop::UK (informal alternative title)",
"Blacksmithing::USA (informal alternative title)",
"Blacksmithing Scene::USA (alternative title)",
"The Blacksmith's Forge::UK (informal alternative title)",
"Сцена в кузне::Russia",
"A patkolókovács::Hun... | 1.33 : 1 | [
{
"name": "Edison Manufacturing Company",
"long imdb name": "Edison Manufacturing Company"
}
] | movie | [
"USA"
] | Three men hammer on an anvil and pass a bottle of beer around. | http://ia.media-imdb.com/images/M/MV5BNDg0ZDg0YWYtYzMwYi00ZjVlLWI5YzUtNzBkNjlhZWM5ODk5XkEyXkFqcGdeQXVyNDk0MDg4NDk@.jpg | Blacksmith Scene | [
{
"canonical name": "Kayser, Charles",
"name": "Charles Kayser",
"long imdb name": "Charles Kayser",
"long imdb canonical name": "Kayser, Charles"
},
{
"canonical name": "Ott, John",
"name": "John Ott",
"long imdb name": "John Ott",
"long imdb canonical name": "Ott, John"
}
] | null | null | null | null | null | null |
6.9 | [
{
"name": "Lumière",
"long imdb name": "Lumière"
},
{
"name": "BFI Video",
"long imdb name": "BFI Video"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
}
] | [
"1"
] | 1,895 | [
"Black and White"
] | [
"A man opens the big gates to the Lumière factory. Through the gateway and a smaller doorway beside it, workers are streaming out, turning either left or right. Most of them are women in long dresses and big hats, but some are men. Suddenly a man with a long apron rushes out through the crowd, followed by a big dog... | 4,003 | La Sortie de l'Usine Lumière à Lyon (le Premier Film) | Sortie de l'Usine Lumière à Lyon (le Premier Film), La | Sortie de l'Usine Lumière à Lyon (le Premier Film), La (1895) | null | La Sortie de l'Usine Lumière à Lyon (le Premier Film) (1895) | [
"fr"
] | Sortie de l'Usine Lumière à Lyon (le Premier Film), La (1895) | http://ia.media-imdb.com/images/M/MV5BZmU4MDM3MWUtNjRmZi00MTBhLWE3MzItYmZiZjgwYzhlMmUwXkEyXkFqcGdeQXVyNTc0ODYyODk@._V1._SX100_SY69_.jpg | [
"lent"
] | [
"Documentary",
"Short"
] | [
{
"canonical name": "Lumière, Louis",
"name": "Louis Lumière",
"long imdb name": "Louis Lumière",
"long imdb canonical name": "Lumière, Louis"
}
] | [
{
"canonical name": "Lumière, Louis",
"name": "Louis Lumière",
"long imdb name": "Louis Lumière",
"long imdb canonical name": "Lumière, Louis"
}
] | [
"Employees Leaving the Lumière Factory::USA",
"Exiting the Factory::USA",
"La sortie de l'usine Lumière à Lyon::France (poster title)",
"La sortie des ouvriers de l'usine Lumière::France (informal alternative title)",
"Leaving the Lumière Factory",
"Sortie d'usine::France (short title)",
"Выход рабочих ... | 1.33 : 1 | [
{
"name": "Lumière",
"long imdb name": "Lumière"
}
] | movie | [
"France"
] | A man opens the big gates to the Lumière factory. Through the gateway and a smaller doorway beside it... | http://ia.media-imdb.com/images/M/MV5BZmU4MDM3MWUtNjRmZi00MTBhLWE3MzItYmZiZjgwYzhlMmUwXkEyXkFqcGdeQXVyNTc0ODYyODk@.jpg | Sortie de l'Usine Lumière à Lyon (le Premier Film), La | null | [
{
"canonical name": "Lumière, Louis",
"name": "Louis Lumière",
"long imdb name": "Louis Lumière",
"long imdb canonical name": "Lumière, Louis"
}
] | null | null | null | null | null |
6.3 | [
{
"name": "American Mutoscope & Biograph",
"long imdb name": "American Mutoscope & Biograph"
},
{
"name": "Grapevine Video",
"long imdb name": "Grapevine Video"
},
{
"name": "Image Entertainment",
"long imdb name": "Image Entertainment"
},
{
"name": "Kino Video",
"long im... | [
"2::(18 fps)"
] | 1,909 | [
"Black and White"
] | [
"A gentleman with a top hat, and a series of women with ever more ludicrous hats enter a movie theatre. They refuse to remove them, until a giant bucket forcibly removes one hat. All but one woman then remove their hats, and the bucket returns to remove the woman.",
"It is often you are annoyed by the fact that i... | 713 | Those Awful Hats | Those Awful Hats | Those Awful Hats (1909) | [
"USA:Not Rated"
] | Those Awful Hats (1909) | [
"us"
] | Those Awful Hats (1909) | http://ia.media-imdb.com/images/M/MV5BMDlmYzgwZmItNzdlMS00ZmE5LThkYmUtYmNhNjAyY2FlMmFiXkEyXkFqcGdeQXVyMTYxNjkxOQ@@._V1._SX100_SY139_.jpg | [
"lent"
] | [
"Comedy",
"Short"
] | [
{
"canonical name": "Griffith, D.W.",
"name": "D.W. Griffith",
"long imdb name": "D.W. Griffith",
"long imdb canonical name": "Griffith, D.W."
}
] | [
{
"canonical name": "Bitzer, G.W.",
"name": "G.W. Bitzer",
"long imdb name": "G.W. Bitzer",
"long imdb canonical name": "Bitzer, G.W."
}
] | [
"Those Darn Hats::USA (video catalogue title)",
"Эти ужасные шляпы::Russia",
"Ces sacrés chapeaux::France",
"Te okropne kapelusze::Poland (imdb display title)"
] | 1.33 : 1 | [
{
"name": "American Mutoscope & Biograph",
"long imdb name": "American Mutoscope & Biograph"
}
] | movie | [
"USA"
] | Set in an early cinema house, this comic short illustrates the problems with the gals' hats obscuring the movie patron's line of vision. | http://ia.media-imdb.com/images/M/MV5BMDlmYzgwZmItNzdlMS00ZmE5LThkYmUtYmNhNjAyY2FlMmFiXkEyXkFqcGdeQXVyMTYxNjkxOQ@@.jpg | Those Awful Hats | [
{
"canonical name": "Arvidson, Linda",
"name": "Linda Arvidson",
"long imdb name": "Linda Arvidson",
"long imdb canonical name": "Arvidson, Linda"
},
{
"canonical name": "Cumpson, John R.",
"name": "John R. Cumpson",
"long imdb name": "John R. Cumpson",
"long imdb canonical name"... | null | [
{
"canonical name": "Griffith, D.W.",
"name": "D.W. Griffith",
"long imdb name": "D.W. Griffith",
"long imdb canonical name": "Griffith, D.W."
}
] | [
"English"
] | [
"en"
] | [
{
"canonical name": "Brand, Neil",
"name": "Neil Brand",
"long imdb name": "Neil Brand",
"long imdb canonical name": "Brand, Neil"
},
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}... | null |
6.6 | [
{
"name": "Motion Picture Distributors and Sales Company",
"long imdb name": "Motion Picture Distributors and Sales Company"
},
{
"name": "Danish Film Institute",
"long imdb name": "Danish Film Institute"
},
{
"name": "Det Danske Filminstitut",
"long imdb name": "Det Danske Filminsti... | [
"Denmark:38",
"Denmark:37::(16 fps) (2004 restored version)"
] | 1,910 | [
"Black and White"
] | [
"At a tramcar in Copenhagen the piano teacher Magda Vang meets the young man Knud Svane, who falls in love with her. She is invited to spend the summer with him and his parents at the vicarage in Gjerslev. Outside the vicarage a circus troupe passes by, and Magda is saluted by the performer Rudolph Stern. In the ni... | 471 | Afgrunden | Afgrunden | Afgrunden (1910) | [
"Iceland:L"
] | Afgrunden (1910) | [
"dk"
] | Afgrunden (1910) | http://ia.media-imdb.com/images/M/MV5BNWZjYjAyODAtNjM2Zi00MzQ1LWE2ODAtZWQ4MjUxNmQ0MTg2XkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1._SX100_SY138_.jpg | [
"lent"
] | [
"Short",
"Drama"
] | [
{
"canonical name": "Gad, Urban",
"name": "Urban Gad",
"long imdb name": "Urban Gad",
"long imdb canonical name": "Gad, Urban"
}
] | [
{
"canonical name": "Lind, Alfred",
"name": "Alfred Lind",
"long imdb name": "Alfred Lind",
"long imdb canonical name": "Lind, Alfred"
}
] | [
"The Abyss",
"The Woman Always Pays::USA",
"Woman Always Pays::USA",
"Бездна::Russia",
"A züllés útján::Hungary (imdb display title)",
"Abgründe::Germany",
"Avgrunden::Sweden (imdb display title)",
"Der Abgrund::Germany",
"I avysos::Greece (imdb display title)",
"O Abismo::Brazil (imdb display tit... | 1.33 : 1 | [
{
"name": "Kosmorama",
"long imdb name": "Kosmorama"
}
] | movie | [
"Denmark"
] | At a tramcar in Copenhagen the piano teacher Magda Vang meets the young man Knud Svane, who falls in love with her... | http://ia.media-imdb.com/images/M/MV5BNWZjYjAyODAtNjM2Zi00MzQ1LWE2ODAtZWQ4MjUxNmQ0MTg2XkEyXkFqcGdeQXVyNDk0MDg4NDk@.jpg | Afgrunden | [
{
"canonical name": "Nielsen, Asta",
"name": "Asta Nielsen",
"long imdb name": "Asta Nielsen",
"long imdb canonical name": "Nielsen, Asta"
},
{
"canonical name": "Dinesen, Robert",
"name": "Robert Dinesen",
"long imdb name": "Robert Dinesen",
"long imdb canonical name": "Dinesen,... | [
{
"canonical name": "Davidsen, Hjalmar",
"name": "Hjalmar Davidsen",
"long imdb name": "Hjalmar Davidsen",
"long imdb canonical name": "Davidsen, Hjalmar"
}
] | [
{
"canonical name": "Gad, Urban",
"name": "Urban Gad",
"long imdb name": "Urban Gad",
"long imdb canonical name": "Gad, Urban"
}
] | [
"Danish"
] | [
"da"
] | null | [
{
"name": "Independent Moving Pictures Co. of America (IMP)",
"long imdb name": "Independent Moving Pictures Co. of America (IMP)"
}
] |
6.7 | [
{
"name": "General Film Company",
"long imdb name": "General Film Company"
},
{
"name": "General Film Company",
"long imdb name": "General Film Company"
},
{
"name": "American Mutoscope & Biograph",
"long imdb name": "American Mutoscope & Biograph"
},
{
"name": "American Muto... | [
"17::(16 fps)"
] | 1,912 | [
"Black and White"
] | [
"A young wife and her musician husband live in poverty in a New York City tenement. The husband's job requires him to go away for for a number of days. On his return, he is robbed by the neighborhood gangster. Sometime later, an unrelated mob shoot-out ensues. The husband happens upon the melee, recognizing the cro... | 1,335 | The Musketeers of Pig Alley | Musketeers of Pig Alley, The | Musketeers of Pig Alley, The (1912) | null | The Musketeers of Pig Alley (1912) | [
"us"
] | Musketeers of Pig Alley, The (1912) | http://ia.media-imdb.com/images/M/MV5BMTkyNzk5MDYzOV5BMl5BanBnXkFtZTgwNzQ3Njk5MTE@._V1._SX94_SY140_.jpg | [
"lent"
] | [
"Short",
"Crime",
"Drama"
] | [
{
"canonical name": "Griffith, D.W.",
"name": "D.W. Griffith",
"long imdb name": "D.W. Griffith",
"long imdb canonical name": "Griffith, D.W."
}
] | [
{
"canonical name": "Bitzer, G.W.",
"name": "G.W. Bitzer",
"long imdb name": "G.W. Bitzer",
"long imdb canonical name": "Bitzer, G.W."
}
] | [
"Мушкетеры Свиной аллеи::Russia",
"A Pig Alley muskétásai::Hungary",
"Coeur d'apache::France"
] | 1.33 : 1 | [
{
"name": "Biograph Company",
"long imdb name": "Biograph Company"
}
] | movie | [
"USA"
] | A young wife and her musician husband live in poverty in a New York City tenement. The husband's job requires him to go away for for a number of days... | http://ia.media-imdb.com/images/M/MV5BMTkyNzk5MDYzOV5BMl5BanBnXkFtZTgwNzQ3Njk5MTE@.jpg | Musketeers of Pig Alley, The | [
{
"canonical name": "Booth, Elmer",
"name": "Elmer Booth",
"long imdb name": "Elmer Booth",
"long imdb canonical name": "Booth, Elmer"
},
{
"canonical name": "Gish, Lillian",
"name": "Lillian Gish",
"long imdb name": "Lillian Gish",
"long imdb canonical name": "Gish, Lillian"
}... | null | [
{
"canonical name": "Griffith, D.W.",
"name": "D.W. Griffith",
"long imdb name": "D.W. Griffith",
"long imdb canonical name": "Griffith, D.W."
},
{
"canonical name": "Loos, Anita",
"name": "Anita Loos",
"long imdb name": "Anita Loos",
"long imdb canonical name": "Loos, Anita"
}... | [
"English"
] | [
"en"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | null |
5.8 | [
{
"name": "Kino Video",
"long imdb name": "Kino Video"
}
] | [
"55"
] | 1,912 | [
"Black and White",
"Color::(hand-tinted)"
] | [
"Shakespeare's tragedy of the hump-backed Duke of Gloucester, who rises to the throne of England by chicanery, treachery, and brilliance, only to find that his own methods have prepared the groundwork for his downfall.",
"Richard of Gloucester uses manipulation and murder to gain the English throne."
] | 171 | Richard III | Richard III | Richard III (1912) | null | Richard III (1912) | [
"fr",
"us"
] | Richard III (1912) | http://ia.media-imdb.com/images/M/MV5BMTQ1ODY2NTU4OF5BMl5BanBnXkFtZTgwNTc3NjU4MDE@._V1._SX95_SY140_.jpg | [
"lent"
] | [
"Drama"
] | [
{
"canonical name": "Calmettes, André",
"name": "André Calmettes",
"long imdb name": "André Calmettes",
"long imdb canonical name": "Calmettes, André"
},
{
"canonical name": "Keane, James",
"name": "James Keane",
"long imdb name": "James Keane",
"long imdb canonical name": "Keane... | null | [
"Mr. Frederick Warde in Shakespeare's Masterpiece 'The Life and Death of King Richard III'::International (English title) (long title)",
"The Life and Death of King Richard III::International (English title)",
"III. Richárd::Hungary (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Le Film d'Art",
"long imdb name": "Le Film d'Art"
},
{
"name": "M.B. Dudley Amusement Co.",
"long imdb name": "M.B. Dudley Amusement Co."
},
{
"name": "Sterling Camera and Film Company",
"long imdb name": "Sterling Camera and Film Company"
}
] | movie | [
"France",
"USA"
] | Richard of Gloucester uses manipulation and murder to gain the English throne. | http://ia.media-imdb.com/images/M/MV5BMTQ1ODY2NTU4OF5BMl5BanBnXkFtZTgwNTc3NjU4MDE@.jpg | Richard III | [
{
"canonical name": "Gemp, Robert",
"name": "Robert Gemp",
"long imdb name": "Robert Gemp",
"long imdb canonical name": "Gemp, Robert"
},
{
"canonical name": "Warde, Frederick",
"name": "Frederick Warde",
"long imdb name": "Frederick Warde",
"long imdb canonical name": "Warde, Fr... | [
{
"canonical name": "Blackton, J. Stuart",
"name": "J. Stuart Blackton",
"long imdb name": "J. Stuart Blackton",
"long imdb canonical name": "Blackton, J. Stuart"
},
{
"canonical name": "Dudley, M.B.",
"name": "M.B. Dudley",
"long imdb name": "M.B. Dudley",
"long imdb canonical n... | [
{
"canonical name": "Keane, James",
"name": "James Keane",
"long imdb name": "James Keane",
"long imdb canonical name": "Keane, James"
},
{
"canonical name": "Shakespeare, William",
"name": "William Shakespeare",
"long imdb name": "William Shakespeare",
"long imdb canonical name"... | [
"English"
] | [
"en"
] | null | null |
6.6 | [
{
"name": "Kleine Optical Company",
"long imdb name": "Kleine Optical Company"
},
{
"name": "Universum Film (UFA)",
"long imdb name": "Universum Film (UFA)"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"... | [
"148",
"125::(1990 alternate version)",
"USA:123::(Kino Restored Print)",
"162::(1995 restoration)",
"181::(16 fps) (2006 restoration)"
] | 1,914 | [
"Black and White::(tinted)"
] | [
"Three centuries before Christus. Young Cabiria is kidnapped by some pirates during one eruption of the Etna. She is sold as a slave in Carthage, and as she is just going to be sacrificed to god Moloch, Cabiria is rescued by both Fulvio Axilla, a Roman noble, and his giant slave Maciste. Maciste is captured just af... | 2,182 | Cabiria | Cabiria | Cabiria (1914) | [
"USA:Not Rated"
] | Cabiria (1914) | [
"it"
] | Cabiria (1914) | http://ia.media-imdb.com/images/M/MV5BMjIzMjk2NjMzNF5BMl5BanBnXkFtZTgwMTg4NzYwMjE@._V1._SX94_SY140_.jpg | [
"lent"
] | [
"Adventure",
"Drama",
"History",
"War"
] | [
{
"canonical name": "Pastrone, Giovanni",
"name": "Giovanni Pastrone",
"long imdb name": "Giovanni Pastrone",
"long imdb canonical name": "Pastrone, Giovanni"
}
] | [
{
"canonical name": "Battagliotti, Augusto",
"name": "Augusto Battagliotti",
"long imdb name": "Augusto Battagliotti",
"long imdb canonical name": "Battagliotti, Augusto"
},
{
"canonical name": "Bava, Eugenio",
"name": "Eugenio Bava",
"long imdb name": "Eugenio Bava",
"long imdb ... | [
"Cabiria, Visione Storica del Terzo Secolo A.C.::Italy (long title)",
"Кабирия::Russia",
"Кабирия::Bulgaria (Bulgarian title)",
"Cabiria::Denmark (imdb display title)",
"Cabiria::Hungary (imdb display title)",
"Cabiria::Turkey (Turkish title)",
"Cabiria::Greece",
"Cabiria I: Cabirias ring::Sweden (fir... | 1.20 : 1 | [
{
"name": "Itala Film",
"long imdb name": "Itala Film"
}
] | movie | [
"Italy"
] | Three centuries before Christus. Young Cabiria is kidnapped by some pirates during one eruption of the Etna... | http://ia.media-imdb.com/images/M/MV5BMjIzMjk2NjMzNF5BMl5BanBnXkFtZTgwMTg4NzYwMjE@.jpg | Cabiria | [
{
"canonical name": "Catena, Carolina",
"name": "Carolina Catena",
"long imdb name": "Carolina Catena",
"long imdb canonical name": "Catena, Carolina"
},
{
"canonical name": "Quaranta, Lidia",
"name": "Lidia Quaranta",
"long imdb name": "Lidia Quaranta",
"long imdb canonical name... | [
{
"canonical name": "Pastrone, Giovanni",
"name": "Giovanni Pastrone",
"long imdb name": "Giovanni Pastrone",
"long imdb canonical name": "Pastrone, Giovanni"
}
] | [
{
"canonical name": "D'Annunzio, Gabriele",
"name": "Gabriele D'Annunzio",
"long imdb name": "Gabriele D'Annunzio",
"long imdb canonical name": "D'Annunzio, Gabriele"
},
{
"canonical name": "Livius, Titus",
"name": "Titus Livius",
"long imdb name": "Titus Livius",
"long imdb cano... | [
"Italian"
] | [
"it"
] | [
{
"canonical name": "Mazza, Manlio",
"name": "Manlio Mazza",
"long imdb name": "Manlio Mazza",
"long imdb canonical name": "Mazza, Manlio"
},
{
"canonical name": "Pizzetti, Ildebrando",
"name": "Ildebrando Pizzetti",
"long imdb name": "Ildebrando Pizzetti",
"long imdb canonical n... | null |
6 | [
{
"name": "Paramount Pictures",
"long imdb name": "Paramount Pictures"
},
{
"name": "Kino International",
"long imdb name": "Kino International"
},
{
"name": "Kino International",
"long imdb name": "Kino International"
}
] | [
"49::(alternate version)",
"54::(18 fps)"
] | 1,915 | [
"Black and White"
] | [
"The parallel stories of a modern preacher and a medieval monk, Gabriel the Ascetic, who is killed by an ignorant mob for making a nude statue representing Truth, which is also represented by a ghostly naked girl who flits throughout the film."
] | 268 | Hypocrites | Hypocrites | Hypocrites (1915) | [
"USA:Passed",
"USA:TV-PG::(TV rating)",
"USA:Passed::(The National Board of Censorship)"
] | Hypocrites (1915) | [
"us"
] | Hypocrites (1915) | http://ia.media-imdb.com/images/M/MV5BMjA5NTYzNDQ4NV5BMl5BanBnXkFtZTgwMzA5NzgwMzE@._V1._CR1,92,425,407._SX100_SY96_.jpg | [
"lent"
] | [
"Drama"
] | [
{
"canonical name": "Weber, Lois",
"name": "Lois Weber",
"long imdb name": "Lois Weber",
"long imdb canonical name": "Weber, Lois"
}
] | [
{
"canonical name": "Clawson, Dal",
"name": "Dal Clawson",
"long imdb name": "Dal Clawson",
"long imdb canonical name": "Clawson, Dal"
},
{
"canonical name": "Hill, George W.",
"name": "George W. Hill",
"long imdb name": "George W. Hill",
"long imdb canonical name": "Hill, George... | null | 1.33 : 1 | [
{
"name": "Hobart Bosworth Productions",
"long imdb name": "Hobart Bosworth Productions"
}
] | movie | [
"USA"
] | The parallel stories of a modern preacher and a medieval monk, Gabriel the Ascetic, who is killed by an ignorant mob for making a nude statue representing Truth, which is also represented by a ghostly naked girl who flits throughout the film. | http://ia.media-imdb.com/images/M/MV5BMjA5NTYzNDQ4NV5BMl5BanBnXkFtZTgwMzA5NzgwMzE@._V1._CR1,92,425,407._SX100_SY96_.jpg | Hypocrites | [
{
"canonical name": "Foote, Courtenay",
"name": "Courtenay Foote",
"long imdb name": "Courtenay Foote",
"long imdb canonical name": "Foote, Courtenay"
},
{
"canonical name": "Stedman, Myrtle",
"name": "Myrtle Stedman",
"long imdb name": "Myrtle Stedman",
"long imdb canonical name... | [
{
"canonical name": "Weber, Lois",
"name": "Lois Weber",
"long imdb name": "Lois Weber",
"long imdb canonical name": "Weber, Lois"
},
{
"canonical name": "Smalley, Phillips",
"name": "Phillips Smalley",
"long imdb name": "Phillips Smalley",
"long imdb canonical name": "Smalley, P... | [
{
"canonical name": "Weber, Lois",
"name": "Lois Weber",
"long imdb name": "Lois Weber",
"long imdb canonical name": "Weber, Lois"
}
] | [
"English"
] | [
"en"
] | null | null |
5.8 | [
{
"name": "Mutual Film",
"long imdb name": "Mutual Film"
},
{
"name": "Sunrise Silents",
"long imdb name": "Sunrise Silents"
},
{
"name": "FilmAnnex",
"long imdb name": "FilmAnnex"
},
{
"name": "Looser Than Loose Publishing",
"long imdb name": "Looser Than Loose Publishin... | [
"17"
] | 1,914 | [
"Black and White"
] | [
"Mabel goes home after being humiliated by a masher whom her wimpy husband won't fight. The husband goes off to a bar and gets drunk. She buys a boxing dummy hoping it will inspire her husband, but when he returns he gets in a fight with it, taking it to be the ladykiller.",
"Accosted by a masher in the park and ... | 739 | Mabel's Married Life | Mabel's Married Life | Mabel's Married Life (1914) | [
"Argentina:Atp"
] | Mabel's Married Life (1914) | [
"us"
] | Mabel's Married Life (1914) | http://ia.media-imdb.com/images/M/MV5BZDc3OTg0MDEtMTVjNy00NmIzLTgzMDktOTQ1MmY2ODE5NGI4XkEyXkFqcGdeQXVyMzM0NzM1MDk@._V1._SX92_SY140_.jpg | [
"lent"
] | [
"Short",
"Comedy"
] | [
{
"canonical name": "Sennett, Mack",
"name": "Mack Sennett",
"long imdb name": "Mack Sennett",
"long imdb canonical name": "Sennett, Mack"
}
] | [
{
"canonical name": "Williams, Frank D.",
"name": "Frank D. Williams",
"long imdb name": "Frank D. Williams",
"long imdb canonical name": "Williams, Frank D."
}
] | [
"The Squarehead",
"When You're Married",
"Chaplin pod pantoflem::Czech Republic (imdb display title)",
"Chaplin som skinsyg Ægtemand::Denmark (imdb display title)",
"Charlie i manekin::Poland (imdb display title)",
"Charlies rival::Sweden",
"Charlot e il manichino::Italy (imdb display title)",
"Charlo... | 1.33 : 1 | [
{
"name": "Keystone Film Company",
"long imdb name": "Keystone Film Company"
}
] | movie | [
"USA"
] | Accosted by a masher in the park and unable to motivate husband Charlie into taking action, Mabel gets him a boxing mannequin to sharpen his fighting skills. | http://ia.media-imdb.com/images/M/MV5BZDc3OTg0MDEtMTVjNy00NmIzLTgzMDktOTQ1MmY2ODE5NGI4XkEyXkFqcGdeQXVyMzM0NzM1MDk@.jpg | Mabel's Married Life | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Normand, Mabel",
"name": "Mabel Normand",
"long imdb name": "Mabel Normand",
"long imdb canonical name": ... | [
{
"canonical name": "Sennett, Mack",
"name": "Mack Sennett",
"long imdb name": "Mack Sennett",
"long imdb canonical name": "Sennett, Mack"
}
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Normand, Mabel",
"name": "Mabel Normand",
"long imdb name": "Mabel Normand",
"long imdb canonical name": ... | [
"English"
] | [
"en"
] | null | [
{
"name": "CineMuseum",
"long imdb name": "CineMuseum"
}
] |
6.8 | [
{
"name": "General Film Company",
"long imdb name": "General Film Company"
},
{
"name": "Inter Arte Films",
"long imdb name": "Inter Arte Films"
},
{
"name": "Image Entertainment",
"long imdb name": "Image Entertainment"
},
{
"name": "Koch Vision",
"long imdb name": "Koch... | [
"25::(21.3 fps)",
"Canada:15::(Ontario)"
] | 1,915 | [
"Black and White"
] | [
"Charlie does everything but an efficient job as janitor. Edna buys her fiance, the cashier, a birthday present. Charlie thinks \"To Charles with Love\" is for him. He presents her a rose which she throws in the garbage. Depressed, Charlie dreams of a bank robbery and his heroic role in saving he manager and Edna .... | 1,197 | The Bank | Bank, The | Bank, The (1915) | [
"Argentina:Atp",
"Canada:G::(Ontario)",
"USA:TV-G::(TV rating)"
] | The Bank (1915) | [
"us"
] | Bank, The (1915) | http://ia.media-imdb.com/images/M/MV5BMjI3NzQ0MzIxMV5BMl5BanBnXkFtZTgwMzA1ODI3MzE@._V1._SX91_SY140_.jpg | [
"lent"
] | [
"Comedy",
"Short"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Ensign, Harry",
"name": "Harry Ensign",
"long imdb name": "Harry Ensign",
"long imdb canonical name": "Ensign, Harry"
}
] | [
"Charlie in the Bank::USA (alternative title)",
"Банк::Russia",
"A bankban::Hungary",
"Chaplin bankovním sluhou::Czech Republic (imdb display title)",
"Chaplin som Bankbud::Denmark (imdb display title)",
"Chaplin som banktjänsteman::Sweden",
"Charlie w banku::Poland (imdb display title)",
"Charlot à l... | 1.33 : 1 | [
{
"name": "Essanay Film Manufacturing Company, The",
"long imdb name": "Essanay Film Manufacturing Company, The"
}
] | movie | [
"USA"
] | Charlie does everything but an efficient job as janitor. Edna buys her fiance, the cashier, a birthday present... | http://ia.media-imdb.com/images/M/MV5BMjI3NzQ0MzIxMV5BMl5BanBnXkFtZTgwMzA1ODI3MzE@.jpg | Bank, The | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Purviance, Edna",
"name": "Edna Purviance",
"long imdb name": "Edna Purviance",
"long imdb canonical name... | [
{
"canonical name": "Shepard, David",
"name": "David Shepard",
"long imdb name": "David Shepard",
"long imdb canonical name": "Shepard, David"
},
{
"canonical name": "Robbins, Jess",
"name": "Jess Robbins",
"long imdb name": "Jess Robbins",
"long imdb canonical name": "Robbins, J... | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
"English"
] | [
"en"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | [
{
"name": "Blackhawk Films",
"long imdb name": "Blackhawk Films"
},
{
"name": "Lobster Films, Paris",
"long imdb name": "Lobster Films, Paris"
},
{
"name": "Museum of Modern Art, The (MoMA)",
"long imdb name": "Museum of Modern Art, The (MoMA)"
},
{
"name": "Screen Time Image... |
6.8 | [
{
"name": "General Film Company",
"long imdb name": "General Film Company"
},
{
"name": "Victor Kremer Film Features",
"long imdb name": "Victor Kremer Film Features"
},
{
"name": "Tusisa",
"long imdb name": "Tusisa"
},
{
"name": "BFI Video",
"long imdb name": "BFI Video"... | [
"31::(17.4 fps)"
] | 1,915 | [
"Black and White"
] | [
"Walking along with his bulldog, Charlie finds a \"good luck\" horseshoe just as he passes a training camp advertising for a boxing partner \"who can take a beating.\" After watching others lose, Charlie puts the horseshoe in his glove and wins. The trainer prepares Charlie to fight the world champion. A gambler wa... | 1,401 | The Champion | Champion, The | Champion, The (1915) | [
"Argentina:Atp",
"Finland:S::(1973)",
"Finland:(Banned)::(1915)",
"Spain:T",
"Sweden:Btl",
"UK:U"
] | The Champion (1915) | [
"us"
] | Champion, The (1915) | http://ia.media-imdb.com/images/M/MV5BMTU4NDc5Nzg4M15BMl5BanBnXkFtZTYwODk0NDE5._V1._CR1,3,325,439._SX100_SY135_.jpg | [
"lent"
] | [
"Short",
"Comedy",
"Sport"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Ensign, Harry",
"name": "Harry Ensign",
"long imdb name": "Harry Ensign",
"long imdb canonical name": "Ensign, Harry"
}
] | [
"Battling Charlie",
"Champion Charlie",
"Charlie the Champion::USA (alternative title)",
"Charlot boxeur::Canada (French title), France (imdb display title)",
"Чeмпион::Russia",
"Шампионът::Bulgaria (Bulgarian title)",
"A bokszbajnok::Hungary (alternative title)",
"Campeão de Boxe::Brazil (imdb displa... | 1.33 : 1 | [
{
"name": "Essanay Film Manufacturing Company, The",
"long imdb name": "Essanay Film Manufacturing Company, The"
}
] | movie | [
"USA"
] | Walking along with his bulldog, Charlie finds a "good luck" horseshoe just as he passes a training camp... | http://ia.media-imdb.com/images/M/MV5BMTU4NDc5Nzg4M15BMl5BanBnXkFtZTYwODk0NDE5._V1._CR1,3,325,439._SX100_SY135_.jpg | Champion, The | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Anderson, Gilbert M. 'Broncho Billy'",
"name": "Gilbert M. 'Broncho Billy' Anderson",
"long imdb name": "Gilb... | [
{
"canonical name": "Shepard, David",
"name": "David Shepard",
"long imdb name": "David Shepard",
"long imdb canonical name": "Shepard, David"
},
{
"canonical name": "Robbins, Jess",
"name": "Jess Robbins",
"long imdb name": "Jess Robbins",
"long imdb canonical name": "Robbins, J... | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
"English"
] | [
"en"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | [
{
"name": "Blackhawk Films Inc.",
"long imdb name": "Blackhawk Films Inc."
},
{
"name": "Kino International",
"long imdb name": "Kino International"
},
{
"name": "Lobster Films",
"long imdb name": "Lobster Films"
},
{
"name": "Museum of Modern Art, The (MoMA)",
"long imdb... |
6.5 | [
{
"name": "Paramount Pictures",
"long imdb name": "Paramount Pictures"
},
{
"name": "Paramount Pictures",
"long imdb name": "Paramount Pictures"
},
{
"name": "International Museum of Photography",
"long imdb name": "International Museum of Photography"
},
{
"name": "Kino Vide... | [
"59::(1994 alternate version)"
] | 1,915 | [
"Black and White"
] | [
"Edith Hardy uses charity funds for Wall Street investments in hopes of buying some new gowns. She loses all the money and borrows from wealthy oriental Tori. When her husband gives her the amount she borrowed, Tori won't take it back, branding her shoulder with a Japanese sign of his ownership. She shoots him. Her... | 1,733 | The Cheat | Cheat, The | Cheat, The (1915) | [
"USA:Not Rated"
] | The Cheat (1915) | [
"us"
] | Cheat, The (1915) | http://ia.media-imdb.com/images/M/MV5BMjEzMjcxNTM5M15BMl5BanBnXkFtZTgwMzgwNjQ1MjE@._V1._SX95_SY140_.jpg | [
"lent"
] | [
"Drama"
] | [
{
"canonical name": "DeMille, Cecil B.",
"name": "Cecil B. DeMille",
"long imdb name": "Cecil B. DeMille",
"long imdb canonical name": "DeMille, Cecil B."
}
] | [
{
"canonical name": "Wyckoff, Alvin",
"name": "Alvin Wyckoff",
"long imdb name": "Alvin Wyckoff",
"long imdb canonical name": "Wyckoff, Alvin"
}
] | [
"Обман::Russia",
"A Marca de Fogo::Portugal",
"Der Betrug::Germany (imdb display title)",
"Enganar e Perdoar::Brazil (imdb display title)",
"Forfaiture::France",
"La marca del fuego::Spain",
"Megbélyegzett asszony::Hungary (imdb display title)",
"Oszustka::Poland (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Jesse L. Lasky Feature Play Company",
"long imdb name": "Jesse L. Lasky Feature Play Company"
}
] | movie | [
"USA"
] | A venal, spoiled stockbroker's wife impulsively embezzles $10,000 from the charity she chairs and desperately turns to a Burmese ivory trader to replace the stolen money. | http://ia.media-imdb.com/images/M/MV5BMjEzMjcxNTM5M15BMl5BanBnXkFtZTgwMzgwNjQ1MjE@.jpg | Cheat, The | [
{
"canonical name": "Ward, Fannie",
"name": "Fannie Ward",
"long imdb name": "Fannie Ward",
"long imdb canonical name": "Ward, Fannie"
},
{
"canonical name": "Hayakawa, Sessue",
"name": "Sessue Hayakawa",
"long imdb name": "Sessue Hayakawa",
"long imdb canonical name": "Hayakawa,... | [
{
"canonical name": "DeMille, Cecil B.",
"name": "Cecil B. DeMille",
"long imdb name": "Cecil B. DeMille",
"long imdb canonical name": "DeMille, Cecil B."
},
{
"canonical name": "Lasky, Jesse L.",
"name": "Jesse L. Lasky",
"long imdb name": "Jesse L. Lasky",
"long imdb canonical ... | [
{
"canonical name": "Turnbull, Hector",
"name": "Hector Turnbull",
"long imdb name": "Hector Turnbull",
"long imdb canonical name": "Turnbull, Hector"
},
{
"canonical name": "Macpherson, Jeanie",
"name": "Jeanie Macpherson",
"long imdb name": "Jeanie Macpherson",
"long imdb canon... | [
"English"
] | [
"en"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | null |
5.9 | [
{
"name": "Box Office Attractions Company",
"long imdb name": "Box Office Attractions Company"
},
{
"name": "Fox Film Corporation",
"long imdb name": "Fox Film Corporation"
},
{
"name": "Grapevine Video",
"long imdb name": "Grapevine Video"
},
{
"name": "Critics' Choice Video... | [
"67"
] | 1,915 | [
"Black and White"
] | [
"John Schuyler, happily married Wall Street lawyer, is appointed as special diplomatic representative to England. By an unhappy accident, his wife and child can't come along; but on the ship with him is \"The Vampire,\" a \"notorious woman\" who lives off a succession of men she has seduced and ruined. Slighted by ... | 519 | A Fool There Was | Fool There Was, A | Fool There Was, A (1915) | [
"UK:R"
] | A Fool There Was (1915) | [
"us"
] | Fool There Was, A (1915) | http://ia.media-imdb.com/images/M/MV5BMTU0ODk2MzQ0MF5BMl5BanBnXkFtZTgwNDU0MTgxMjE@._V1._SX99_SY140_.jpg | [
"lent"
] | [
"Drama"
] | [
{
"canonical name": "Powell, Frank",
"name": "Frank Powell",
"long imdb name": "Frank Powell",
"long imdb canonical name": "Powell, Frank"
}
] | [
{
"canonical name": "McCardell, Roy L.",
"name": "Roy L. McCardell",
"long imdb name": "Roy L. McCardell",
"long imdb canonical name": "McCardell, Roy L."
}
] | [
"A veszedelmes asszony::Hungary (imdb display title)",
"Byl sobie glupiec::Poland (alternative title)",
"Embrasse-moi idiot::France (DVD title)",
"Escravo de uma Paixão::Brazil (imdb display title)",
"Glupiec tu byl::Poland (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Fox Film Corporation",
"long imdb name": "Fox Film Corporation"
}
] | movie | [
"USA"
] | A married diplomat falls hopelessly under the spell of a predatory woman. | http://ia.media-imdb.com/images/M/MV5BMTU0ODk2MzQ0MF5BMl5BanBnXkFtZTgwNDU0MTgxMjE@.jpg | Fool There Was, A | [
{
"canonical name": "Hodges, Runa",
"name": "Runa Hodges",
"long imdb name": "Runa Hodges",
"long imdb canonical name": "Hodges, Runa"
},
{
"canonical name": "Frenyear, Mabel",
"name": "Mabel Frenyear",
"long imdb name": "Mabel Frenyear",
"long imdb canonical name": "Frenyear, Ma... | [
{
"canonical name": "Powell, Frank",
"name": "Frank Powell",
"long imdb name": "Frank Powell",
"long imdb canonical name": "Powell, Frank"
},
{
"canonical name": "Fox, William",
"name": "William Fox",
"long imdb name": "William Fox",
"long imdb canonical name": "Fox, William"
}... | [
{
"canonical name": "Browne, Porter Emerson",
"name": "Porter Emerson Browne",
"long imdb name": "Porter Emerson Browne",
"long imdb canonical name": "Browne, Porter Emerson"
},
{
"canonical name": "Kipling, Rudyard",
"name": "Rudyard Kipling",
"long imdb name": "Rudyard Kipling",
... | [
"English"
] | [
"en"
] | null | null |
5.8 | [
{
"name": "General Film Company",
"long imdb name": "General Film Company"
},
{
"name": "BFI Video",
"long imdb name": "BFI Video"
},
{
"name": "FilmAnnex",
"long imdb name": "FilmAnnex"
},
{
"name": "Grapevine Video",
"long imdb name": "Grapevine Video"
},
{
"nam... | [
"14::(1999 TCM print)"
] | 1,915 | [
"Black and White"
] | [
"A tramp steals a girl's handbag, but when he tries to pick Charlie's pocket loses his cigarettes and matches. He rescues a hot dog man from a thug, but takes a few with his walking stick. When the thief tries to take some of Charlie's sausages, Charlie gets the handbag. The handbag makes its way from person to per... | 939 | In the Park | In the Park | In the Park (1915) | [
"Argentina:Atp",
"Australia:G"
] | In the Park (1915) | [
"us"
] | In the Park (1915) | http://ia.media-imdb.com/images/M/MV5BMTU4NDc5Nzg4M15BMl5BanBnXkFtZTYwODk0NDE5._V1._CR1,3,325,439._SX100_SY135_.jpg | [
"lent"
] | [
"Short",
"Comedy"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Ensign, Harry",
"name": "Harry Ensign",
"long imdb name": "Harry Ensign",
"long imdb canonical name": "Ensign, Harry"
}
] | [
"Charlie in the Park",
"Charlie on the Spree",
"В парка::Bulgaria (Bulgarian title)",
"Chaplin v parku::Czech Republic (imdb display title)",
"Charlie a parkban::Hungary (imdb display title)",
"Charlie i parken::Sweden",
"Charlie w parku::Poland (imdb display title)",
"Charlot dans le parc::France",
... | 1.33 : 1 | [
{
"name": "Essanay Film Manufacturing Company, The",
"long imdb name": "Essanay Film Manufacturing Company, The"
}
] | movie | [
"USA"
] | A tramp steals a girl's handbag, but when he tries to pick Charlie's pocket loses his cigarettes and matches... | http://ia.media-imdb.com/images/M/MV5BMTU4NDc5Nzg4M15BMl5BanBnXkFtZTYwODk0NDE5._V1._CR1,3,325,439._SX100_SY135_.jpg | In the Park | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Anderson, Leona",
"name": "Leona Anderson",
"long imdb name": "Leona Anderson",
"long imdb canonical name... | [
{
"canonical name": "Shepard, David",
"name": "David Shepard",
"long imdb name": "David Shepard",
"long imdb canonical name": "Shepard, David"
},
{
"canonical name": "Robbins, Jess",
"name": "Jess Robbins",
"long imdb name": "Jess Robbins",
"long imdb canonical name": "Robbins, J... | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
"English"
] | [
"en"
] | null | [
{
"name": "Blackhawk Films",
"long imdb name": "Blackhawk Films"
},
{
"name": "Kino International",
"long imdb name": "Kino International"
},
{
"name": "Lobster Films",
"long imdb name": "Lobster Films"
},
{
"name": "Museum of Modern Art, The (MoMA)",
"long imdb name": "M... |
6.6 | [
{
"name": "General Film Company",
"long imdb name": "General Film Company"
},
{
"name": "Warner Bros.",
"long imdb name": "Warner Bros."
},
{
"name": "Inter Arte Films",
"long imdb name": "Inter Arte Films"
},
{
"name": "Tusisa",
"long imdb name": "Tusisa"
},
{
"n... | [
"Argentina:30",
"Spain:29"
] | 1,915 | [
"Black and White"
] | [
"Mr. Pest tries several theatre seats before winding up in front in a fight with the conductor. He is thrown out. In the lobby he pushes a fat lady into a fountain and returns to sit down by Edna. Mr. Rowdy, in the gallery, pours beer down on Mr. Pest and Edna. He attacks patrons, a harem dancer, the singers Dot an... | 1,075 | A Night in the Show | Night in the Show, A | Night in the Show, A (1915) | [
"Argentina:Atp",
"Spain:T"
] | A Night in the Show (1915) | [
"us"
] | Night in the Show, A (1915) | http://ia.media-imdb.com/images/M/MV5BMTI5Nzk3Mjc4MF5BMl5BanBnXkFtZTcwMDg4NzIyMQ@@._V1._CR60,141,225,308._SX100_SY137_.jpg | [
"lent"
] | [
"Comedy",
"Short"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Ensign, Harry",
"name": "Harry Ensign",
"long imdb name": "Harry Ensign",
"long imdb canonical name": "Ensign, Harry"
},
{
"canonical name": "Totheroh, Roland",
"name": "Roland Totheroh",
"long imdb name": "Roland Totheroh",
"long imdb canonical name": "Tothe... | [
"A Night at the Show",
"Charlie at the Show",
"Chaplin a music hallban::Hungary (imdb display title)",
"Chaplin paa Variete::Denmark (imdb display title)",
"Chaplin v kabaretu::Czech Republic (imdb display title)",
"Charlie Chaplins varietébesök::Sweden",
"Charlie w music-hallu::Poland (imdb display tit... | 1.33 : 1 | [
{
"name": "Essanay Film Manufacturing Company, The",
"long imdb name": "Essanay Film Manufacturing Company, The"
}
] | movie | [
"USA"
] | Mr. Pest tries several theatre seats before winding up in front in a fight with the conductor. He is thrown out... | http://ia.media-imdb.com/images/M/MV5BMTI5Nzk3Mjc4MF5BMl5BanBnXkFtZTcwMDg4NzIyMQ@@._V1._CR60,141,225,308._SX100_SY137_.jpg | Night in the Show, A | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Allen, Phyllis",
"name": "Phyllis Allen",
"long imdb name": "Phyllis Allen",
"long imdb canonical name": ... | [
{
"canonical name": "Robbins, Jess",
"name": "Jess Robbins",
"long imdb name": "Jess Robbins",
"long imdb canonical name": "Robbins, Jess"
}
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
"English"
] | [
"en"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | null |
7.1 | [
{
"name": "Universal Film Manufacturing Company",
"long imdb name": "Universal Film Manufacturing Company"
},
{
"name": "Bach Films",
"long imdb name": "Bach Films"
},
{
"name": "FilmAnnex",
"long imdb name": "FilmAnnex"
},
{
"name": "DTP Entertainment",
"long imdb name":... | [
"105",
"UK:84::(video)"
] | 1,916 | [
"Black and White::(tinted and toned)"
] | [
"Captain Nemo has built a fantastic submarine for his mission of revenge. He has traveled over 20,000 leagues in search of Charles Denver - a man who caused the death of Princess Daaker. Seeing what he had done, Denver took the daughter to his yacht and sailed away. He abandoned her and a sailor on a mysterious isl... | 1,115 | 20,000 Leagues Under the Sea | 20,000 Leagues Under the Sea | 20,000 Leagues Under the Sea (1916) | [
"Argentina:Atp",
"UK:PG",
"USA:Passed::(National Board of Review: of Motion Pictures)",
"USA:TV-G::(TV rating)"
] | 20,000 Leagues Under the Sea (1916) | [
"us"
] | 20,000 Leagues Under the Sea (1916) | http://ia.media-imdb.com/images/M/MV5BMTQ0OTk3MTIzNV5BMl5BanBnXkFtZTgwNDA5MjAwMzE@._V1._SX92_SY140_.jpg | [
"lent"
] | [
"Action",
"Adventure",
"Sci-Fi"
] | [
{
"canonical name": "Paton, Stuart",
"name": "Stuart Paton",
"long imdb name": "Stuart Paton",
"long imdb canonical name": "Paton, Stuart"
}
] | [
{
"canonical name": "Gaudio, Eugene",
"name": "Eugene Gaudio",
"long imdb name": "Eugene Gaudio",
"long imdb canonical name": "Gaudio, Eugene"
}
] | [
"20 000 lieues sous les mers::France (DVD title)",
"20.000 Léguas Submarinas::Brazil (imdb display title)",
"20.000 milja pod morem::Serbia (imdb display title)",
"En Verdensomsejling under Havet::Denmark (imdb display title)",
"Húszezer mérföld a tenger alatt::Hungary (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Williamson Submarine Film Corporation",
"long imdb name": "Williamson Submarine Film Corporation"
}
] | movie | [
"USA"
] | Captain Nemo has built a fantastic submarine for his mission of revenge. He has traveled over 20,000 leagues in search of Charles Denver... | http://ia.media-imdb.com/images/M/MV5BMTQ0OTk3MTIzNV5BMl5BanBnXkFtZTgwNDA5MjAwMzE@.jpg | 20,000 Leagues Under the Sea | [
{
"canonical name": "Hanlon, Dan",
"name": "Dan Hanlon",
"long imdb name": "Dan Hanlon",
"long imdb canonical name": "Hanlon, Dan"
},
{
"canonical name": "Pendleton, Edna",
"name": "Edna Pendleton",
"long imdb name": "Edna Pendleton",
"long imdb canonical name": "Pendleton, Edna"... | [
{
"canonical name": "Laemmle, Carl",
"name": "Carl Laemmle",
"long imdb name": "Carl Laemmle",
"long imdb canonical name": "Laemmle, Carl"
},
{
"canonical name": "Paton, Stuart",
"name": "Stuart Paton",
"long imdb name": "Stuart Paton",
"long imdb canonical name": "Paton, Stuart"... | [
{
"canonical name": "Verne, Jules",
"name": "Jules Verne",
"long imdb name": "Jules Verne",
"long imdb canonical name": "Verne, Jules"
},
{
"canonical name": "Paton, Stuart",
"name": "Stuart Paton",
"long imdb name": "Stuart Paton",
"long imdb canonical name": "Paton, Stuart"
}... | [
"English"
] | [
"en"
] | [
{
"canonical name": "Benison, Brian",
"name": "Brian Benison",
"long imdb name": "Brian Benison",
"long imdb canonical name": "Benison, Brian"
},
{
"canonical name": "Mathevon, Maximilien",
"name": "Maximilien Mathevon",
"long imdb name": "Maximilien Mathevon",
"long imdb canonic... | null |
6.6 | [
{
"name": "Mutual Film",
"long imdb name": "Mutual Film"
},
{
"name": "Hallmark Pictures Corporation",
"long imdb name": "Hallmark Pictures Corporation"
},
{
"name": "Tusisa",
"long imdb name": "Tusisa"
},
{
"name": "Republic Pictures Home Video",
"long imdb name": "Repub... | [
"Canada:24::(21.7 fps)"
] | 1,916 | [
"Black and White"
] | [
"Charlie is a fireman who always does everything wrong. A man talks the Fire Chief into ignoring his burning home (he wants the insurance money) unaware that his daughter (the love of the Chief) is upstairs in the house. When the house next door catches fire its owner rouses Charlie who rouses the force."
] | 1,555 | The Fireman | Fireman, The | Fireman, The (1916) | [
"Argentina:Atp",
"Australia:G",
"Canada:G::(Ontario)",
"Finland:S",
"Spain:T",
"USA:TV-G::(TV rating)"
] | The Fireman (1916) | [
"us"
] | Fireman, The (1916) | http://ia.media-imdb.com/images/M/MV5BMDg5OWI5ZGYtNWQ0Ny00OGJiLWJhNmEtZGU0MDlhYTRkNWIzXkEyXkFqcGdeQXVyMzIwMTIwODc@._V1._SX97_SY140_.jpg | [
"lent"
] | [
"Short",
"Comedy"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Foster, William C.",
"name": "William C. Foster",
"long imdb name": "William C. Foster",
"long imdb canonical name": "Foster, William C."
},
{
"canonical name": "Totheroh, Roland",
"name": "Roland Totheroh",
"long imdb name": "Roland Totheroh",
"long imdb can... | [
"A Gallant Fireman::USA (alternative title)",
"The Fiery Circle::USA (alternative title)",
"The Freeman::Australia (TV title)",
"Brandsoldaten::Finland (Swedish title) (alternative title), Sweden",
"Пожарникар::Bulgaria (Bulgarian title)",
"Пожарный::Russia",
"Carlitos Bombeiro::Brazil",
"Chaplin hasi... | 1.33 : 1 | [
{
"name": "Lone Star Corporation",
"long imdb name": "Lone Star Corporation"
}
] | movie | [
"USA"
] | Charlie is a fireman who always does everything wrong. A man talks the Fire Chief into ignoring his... | http://ia.media-imdb.com/images/M/MV5BMDg5OWI5ZGYtNWQ0Ny00OGJiLWJhNmEtZGU0MDlhYTRkNWIzXkEyXkFqcGdeQXVyMzIwMTIwODc@.jpg | Fireman, The | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Campbell, Eric",
"name": "Eric Campbell",
"long imdb name": "Eric Campbell",
"long imdb canonical name": ... | [
{
"canonical name": "Caulfield, Henry P.",
"name": "Henry P. Caulfield",
"long imdb name": "Henry P. Caulfield",
"long imdb canonical name": "Caulfield, Henry P."
},
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb... | [
{
"canonical name": "Bryan, Vincent",
"name": "Vincent Bryan",
"long imdb name": "Vincent Bryan",
"long imdb canonical name": "Bryan, Vincent"
},
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "C... | [
"English"
] | [
"en"
] | null | null |
7 | [
{
"name": "Triangle Distributing",
"long imdb name": "Triangle Distributing"
},
{
"name": "VEC",
"long imdb name": "VEC"
},
{
"name": "Something Weird Video (SWV)",
"long imdb name": "Something Weird Video (SWV)"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
... | [
"25"
] | 1,916 | [
"Black and White"
] | [
"Coke Ennyday, the scientific detective, divides his own time in periods for \"Sleep\", \"Eat\", \"Dope\" and \"Drink\". In fact he's used to overcome every situation with drugs: consuming it to increase his energies or injecting it in his opponents to KO them. To help the police he discovers a contraband of opium ... | 625 | The Mystery of the Leaping Fish | Mystery of the Leaping Fish, The | Mystery of the Leaping Fish, The (1916) | null | The Mystery of the Leaping Fish (1916) | [
"us"
] | Mystery of the Leaping Fish, The (1916) | http://ia.media-imdb.com/images/M/MV5BMWZlZTE5MzMtYTdlZi00YjQ1LWJiMTItODk1YWNkNGIxODI0XkEyXkFqcGdeQXVyMjg3MDAyMjg@._V1._SX93_SY140_.jpg | [
"lent"
] | [
"Comedy",
"Short"
] | [
{
"canonical name": "Cabanne, Christy",
"name": "Christy Cabanne",
"long imdb name": "Christy Cabanne",
"long imdb canonical name": "Cabanne, Christy"
},
{
"canonical name": "Emerson, John",
"name": "John Emerson",
"long imdb name": "John Emerson",
"long imdb canonical name": "Em... | [
{
"canonical name": "Leezer, John W.",
"name": "John W. Leezer",
"long imdb name": "John W. Leezer",
"long imdb canonical name": "Leezer, John W."
}
] | [
"A hal rejtélye::Hungary (imdb display title)",
"Le mystère du poisson volant::France (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Triangle Film Corporation",
"long imdb name": "Triangle Film Corporation"
}
] | movie | [
"USA"
] | Coke Ennyday, the scientific detective, divides his own time in periods for "Sleep", "Eat", "Dope" and "Drink"... | http://ia.media-imdb.com/images/M/MV5BMWZlZTE5MzMtYTdlZi00YjQ1LWJiMTItODk1YWNkNGIxODI0XkEyXkFqcGdeQXVyMjg3MDAyMjg@.jpg | Mystery of the Leaping Fish, The | [
{
"canonical name": "Fairbanks, Douglas",
"name": "Douglas Fairbanks",
"long imdb name": "Douglas Fairbanks",
"long imdb canonical name": "Fairbanks, Douglas"
},
{
"canonical name": "Love, Bessie",
"name": "Bessie Love",
"long imdb name": "Bessie Love",
"long imdb canonical name"... | null | [
{
"canonical name": "Browning, Tod",
"name": "Tod Browning",
"long imdb name": "Tod Browning",
"long imdb canonical name": "Browning, Tod"
},
{
"canonical name": "Loos, Anita",
"name": "Anita Loos",
"long imdb name": "Anita Loos",
"long imdb canonical name": "Loos, Anita"
}
] | [
"English"
] | [
"en"
] | null | null |
7.5 | [
{
"name": "Mutual Film",
"long imdb name": "Mutual Film"
},
{
"name": "Tusisa",
"long imdb name": "Tusisa"
},
{
"name": "Inter Arte Films",
"long imdb name": "Inter Arte Films"
},
{
"name": "Image Entertainment",
"long imdb name": "Image Entertainment"
},
{
"name"... | [
"24::(20.6 fps)",
"Germany:24::(restored version)",
"Canada:20::(Ontario)"
] | 1,917 | [
"Black and White"
] | [
"Charlie escapes from prison. After rescuing a girl and her mother from drowning, Charlie is invited to their home where a big party is held and he is treated like a hero. However, as a result Charlie's photo is printed in the newspapers and the prison guards come after him.",
"Charlie has escaped from Sing-Sing.... | 2,391 | The Adventurer | Adventurer, The | Adventurer (I), The (I) (1917) | [
"Argentina:Atp",
"Australia:G",
"Canada:G::(Ontario)",
"Finland:S::(1925)",
"Finland:(Banned)::(1920)",
"UK:U",
"USA:Unrated"
] | The Adventurer (I) (1917) | [
"us"
] | Adventurer (I), The (I) (1917) | http://ia.media-imdb.com/images/M/MV5BMTczODgwMDc0MV5BMl5BanBnXkFtZTcwMTY4NjYxOA@@._V1._SX100_SY73_.jpg | [
"lent"
] | [
"Comedy",
"Short"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Foster, William C.",
"name": "William C. Foster",
"long imdb name": "William C. Foster",
"long imdb canonical name": "Foster, William C."
},
{
"canonical name": "Totheroh, Roland",
"name": "Roland Totheroh",
"long imdb name": "Roland Totheroh",
"long imdb can... | [
"Ο περιπετειώδης::Greece",
"Авантюрист::Bulgaria (Bulgarian title)",
"Искатель приключений::Soviet Union (Russian title)",
"Äventyraren::Sweden",
"A szökött fegyenc::Hungary (imdb display title)",
"Chaplin kahlekarkurina::Finland (alternative title)",
"Chaplin som Selskabsmand::Denmark (imdb display tit... | 1.33 : 1 | [
{
"name": "Lone Star Corporation",
"long imdb name": "Lone Star Corporation"
}
] | movie | [
"USA"
] | The Little Tramp escapes from prison; saves a girl and her mother from drowning; and creates havoc at a swank party. | http://ia.media-imdb.com/images/M/MV5BMTczODgwMDc0MV5BMl5BanBnXkFtZTcwMTY4NjYxOA@@.jpg | Adventurer, The | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Purviance, Edna",
"name": "Edna Purviance",
"long imdb name": "Edna Purviance",
"long imdb canonical name... | [
{
"canonical name": "Caulfield, Henry P.",
"name": "Henry P. Caulfield",
"long imdb name": "Henry P. Caulfield",
"long imdb canonical name": "Caulfield, Henry P."
},
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb... | [
{
"canonical name": "Bryan, Vincent",
"name": "Vincent Bryan",
"long imdb name": "Vincent Bryan",
"long imdb canonical name": "Bryan, Vincent"
},
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "C... | [
"English"
] | [
"en"
] | null | [
{
"name": "Screen Time Images",
"long imdb name": "Screen Time Images"
}
] |
5.8 | [
{
"name": "Paramount Pictures",
"long imdb name": "Paramount Pictures"
},
{
"name": "Image Entertainment",
"long imdb name": "Image Entertainment"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
},
{
"name": "Divisa Home Video",
"long imdb name": "Divisa Home Vi... | [
"22"
] | 1,917 | [
"Black and White"
] | [
"Roscoe, his wife and his mother-in-law run a seaside resort. Buster plays a gardener who puts out a fire started by Roscoe, then a delivery boy who fights with the cook St. John, then a cop."
] | 710 | The Rough House | Rough House, The | Rough House, The (1917) | null | The Rough House (1917) | [
"us"
] | Rough House, The (1917) | http://ia.media-imdb.com/images/M/MV5BMTY1MTQ2OTE2NF5BMl5BanBnXkFtZTgwNDc0NzkwMjE@._V1._SX100_SY137_.jpg | [
"lent"
] | [
"Comedy",
"Short"
] | [
{
"canonical name": "Arbuckle, Roscoe 'Fatty'",
"name": "Roscoe 'Fatty' Arbuckle",
"long imdb name": "Roscoe 'Fatty' Arbuckle",
"long imdb canonical name": "Arbuckle, Roscoe 'Fatty'"
},
{
"canonical name": "Keaton, Buster",
"name": "Buster Keaton",
"long imdb name": "Buster Keaton",
... | [
{
"canonical name": "Williams, Frank D.",
"name": "Frank D. Williams",
"long imdb name": "Frank D. Williams",
"long imdb canonical name": "Williams, Frank D."
}
] | [
"Det forrykte Hus::Denmark (imdb display title)",
"Dom Roughów::Poland (imdb display title)",
"Fatty als Brandstifter::Germany (imdb display title)",
"Fatty chez lui::France (imdb display title)",
"La casa tempestosa::Italy",
"La casa tempestuosa::Venezuela",
"Rvacka::Czech Republic (imdb display title)... | 1.33 : 1 | [
{
"name": "Comique Film Company",
"long imdb name": "Comique Film Company"
}
] | movie | [
"USA"
] | Roscoe, his wife and his mother-in-law run a seaside resort. Buster plays a gardener who puts out a fire started by Roscoe, then a delivery boy who fights with the cook St. John, then a cop. | http://ia.media-imdb.com/images/M/MV5BMTY1MTQ2OTE2NF5BMl5BanBnXkFtZTgwNDc0NzkwMjE@.jpg | Rough House, The | [
{
"canonical name": "Arbuckle, Roscoe 'Fatty'",
"name": "Roscoe 'Fatty' Arbuckle",
"long imdb name": "Roscoe 'Fatty' Arbuckle",
"long imdb canonical name": "Arbuckle, Roscoe 'Fatty'"
},
{
"canonical name": "Al St., John",
"name": "John Al St.",
"long imdb name": "John Al St.",
"l... | null | [
{
"canonical name": "Arbuckle, Roscoe 'Fatty'",
"name": "Roscoe 'Fatty' Arbuckle",
"long imdb name": "Roscoe 'Fatty' Arbuckle",
"long imdb canonical name": "Arbuckle, Roscoe 'Fatty'"
},
{
"canonical name": "Keaton, Buster",
"name": "Buster Keaton",
"long imdb name": "Buster Keaton",
... | [
"English"
] | [
"en"
] | null | null |
6.2 | [
{
"name": "Universal Film Manufacturing Company",
"long imdb name": "Universal Film Manufacturing Company"
},
{
"name": "Grapevine Video",
"long imdb name": "Grapevine Video"
}
] | [
"57",
"USA:71::(1998 George Eastman House Restoration)"
] | 1,917 | [
"Black and White::(tinted)"
] | [
"Cattleman Flint cuts off farmer Sims' water supply. When Sims' son Ted goes for water, one of Flint's men kills him. Cheyenne is sent to finish off Sims, but finding the family at the newly dug grave, he changes sides."
] | 256 | Straight Shooting | Straight Shooting | Straight Shooting (1917) | [
"USA:Unrated"
] | Straight Shooting (1917) | [
"us"
] | Straight Shooting (1917) | http://ia.media-imdb.com/images/M/MV5BZmEzMDY5ZTQtZjc2Zi00OTlmLWFiZDktNGI1Yzg3ZWRhZDI3XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1._SX99_SY140_.jpg | [
"lent"
] | [
"Western"
] | [
{
"canonical name": "Ford, John",
"name": "John Ford",
"long imdb name": "John Ford",
"long imdb canonical name": "Ford, John"
}
] | [
{
"canonical name": "Scott, George",
"name": "George Scott",
"long imdb name": "George Scott",
"long imdb canonical name": "Scott, George"
},
{
"canonical name": "Reynolds, Ben F.",
"name": "Ben F. Reynolds",
"long imdb name": "Ben F. Reynolds",
"long imdb canonical name": "Reyno... | [
"Joan of the Cattle Country",
"Straight Shootin'::USA (cut version)",
"The Cattle War",
"Centro!::Italy",
"O Último Cartucho::Brazil (imdb display title)",
"Precizno gadjanje::Yugoslavia (Serbian title) (literal title)",
"Pred puskami cowboyu::Czechoslovakia",
"Tiro al blanco::Venezuela"
] | 1.33 : 1 | [
{
"name": "Universal Film Manufacturing Company",
"long imdb name": "Universal Film Manufacturing Company"
}
] | movie | [
"USA"
] | Cattleman Flint cuts off farmer Sims' water supply. When Sims' son Ted goes for water, one of Flint's men kills him. Cheyenne is sent to finish off Sims, but finding the family at the newly dug grave, he changes sides. | http://ia.media-imdb.com/images/M/MV5BZmEzMDY5ZTQtZjc2Zi00OTlmLWFiZDktNGI1Yzg3ZWRhZDI3XkEyXkFqcGdeQXVyNjE5MjUyOTM@.jpg | Straight Shooting | [
{
"canonical name": "Carey, Harry",
"name": "Harry Carey",
"long imdb name": "Harry Carey",
"long imdb canonical name": "Carey, Harry"
},
{
"canonical name": "Lee, Duke R.",
"name": "Duke R. Lee",
"long imdb name": "Duke R. Lee",
"long imdb canonical name": "Lee, Duke R."
},
... | null | [
{
"canonical name": "Hively, George",
"name": "George Hively",
"long imdb name": "George Hively",
"long imdb canonical name": "Hively, George"
}
] | [
"English"
] | [
"en"
] | null | null |
7.2 | [
{
"name": "Radiosoul Films",
"long imdb name": "Radiosoul Films"
},
{
"name": "Norsk Filminstitutt",
"long imdb name": "Norsk Filminstitutt"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
}
] | [
"Norway:48",
"Finland:56::(18 fps)",
"Taiwan:60::(Taipei Film Festival)"
] | 1,917 | [
"Black and White"
] | [
"Terje Vigen, a sailor, suffers the loss of his family through the cruelty of another man. Years later, when his enemy's family finds itself dependent on Terje's beneficence, Terje must decide whether to avenge himself."
] | 883 | Terje Vigen | Terje Vigen | Terje Vigen (1917) | [
"Sweden:Btl"
] | Terje Vigen (1917) | [
"se"
] | Terje Vigen (1917) | http://ia.media-imdb.com/images/M/MV5BMTQ2OTYyMDU4OV5BMl5BanBnXkFtZTgwMTk5MDg0MjE@._V1._SX99_SY140_.jpg | [
"lent"
] | [
"Drama",
"War"
] | [
{
"canonical name": "Sjöström, Victor",
"name": "Victor Sjöström",
"long imdb name": "Victor Sjöström",
"long imdb canonical name": "Sjöström, Victor"
}
] | [
{
"canonical name": "Jaenzon, Julius",
"name": "Julius Jaenzon",
"long imdb name": "Julius Jaenzon",
"long imdb canonical name": "Jaenzon, Julius"
}
] | [
"A Man There Was::International (English title)",
"C'era un uomo::Italy (imdb display title)",
"O Lobo do Mar::Portugal (imdb display title)",
"Terje Vigen::Norway (imdb display title)",
"Terje Vigen::Denmark (imdb display title)",
"Terje Vigen::Poland (imdb display title)",
"Terje Vigen - Száműzöttek::... | 1.33 : 1 | [
{
"name": "Svenska Biografteatern AB",
"long imdb name": "Svenska Biografteatern AB"
}
] | movie | [
"Sweden"
] | Terje Vigen, a sailor, suffers the loss of his family through the cruelty of another man. Years later... | http://ia.media-imdb.com/images/M/MV5BMTQ2OTYyMDU4OV5BMl5BanBnXkFtZTgwMTk5MDg0MjE@.jpg | Terje Vigen | [
{
"canonical name": "Sjöström, Victor",
"name": "Victor Sjöström",
"long imdb name": "Victor Sjöström",
"long imdb canonical name": "Sjöström, Victor"
},
{
"canonical name": "Falck, August",
"name": "August Falck",
"long imdb name": "August Falck",
"long imdb canonical name": "Fa... | [
{
"canonical name": "Magnusson, Charles",
"name": "Charles Magnusson",
"long imdb name": "Charles Magnusson",
"long imdb canonical name": "Magnusson, Charles"
}
] | [
{
"canonical name": "Ibsen, Henrik",
"name": "Henrik Ibsen",
"long imdb name": "Henrik Ibsen",
"long imdb canonical name": "Ibsen, Henrik"
},
{
"canonical name": "Molander, Gustaf",
"name": "Gustaf Molander",
"long imdb name": "Gustaf Molander",
"long imdb canonical name": "Molan... | null | null | null | null |
7.8 | [
{
"name": "First National Exhibitors' Circuit",
"long imdb name": "First National Exhibitors' Circuit"
},
{
"name": "Associated First National Pictures",
"long imdb name": "Associated First National Pictures"
},
{
"name": "Playhouse Home Video",
"long imdb name": "Playhouse Home Vide... | [
"33::(TCM print)"
] | 1,918 | [
"Black and White"
] | [
"Poor Charlie lives in a vacant lot. He tries to get a job but when he gets to the head of the employment line the jobs are gone. Back \"home\" he rescues Scraps, a bitch being attacked by other strays. Together they manage to steal some sausages from a lunch wagon. They enter a dance hall where Edna is a singer an... | 4,773 | A Dog's Life | Dog's Life, A | Dog's Life, A (1918) | [
"Argentina:Atp",
"USA:Not Rated",
"USA:TV-G::(TV rating)"
] | A Dog's Life (1918) | [
"us"
] | Dog's Life, A (1918) | http://ia.media-imdb.com/images/M/MV5BNjA1NzE2MTM4MV5BMl5BanBnXkFtZTgwNzg4OTcwMjE@._V1._SX89_SY140_.jpg | [
"(Westrex Recording System)::(1959 re-issue)",
"Silent"
] | [
"Short",
"Comedy"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Totheroh, Roland",
"name": "Roland Totheroh",
"long imdb name": "Roland Totheroh",
"long imdb canonical name": "Totheroh, Roland"
}
] | [
"Une vie de chien::Belgium (French title), France",
"Кучешки живот::Bulgaria (Bulgarian title)",
"Собачья жизнь::Russia",
"Ein Hundeleben::Germany",
"Et Hundeliv::Denmark (imdb display title)",
"Ett hundliv::Sweden",
"Koiranelämää::Finland (imdb display title)",
"Kutyaélet::Hungary",
"Pasji život::S... | 1.33 : 1 | [
{
"name": "First National Pictures",
"long imdb name": "First National Pictures"
}
] | movie | [
"USA"
] | The Little Tramp and his dog companion struggle to survive in the inner city. | http://ia.media-imdb.com/images/M/MV5BNjA1NzE2MTM4MV5BMl5BanBnXkFtZTgwNzg4OTcwMjE@.jpg | Dog's Life, A | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
},
{
"canonical name": "Anderson, Dave",
"name": "Dave Anderson",
"long imdb name": "Dave Anderson",
"long imdb canonical name": ... | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | [
"English"
] | [
"en"
] | [
{
"canonical name": "Chaplin, Charles",
"name": "Charles Chaplin",
"long imdb name": "Charles Chaplin",
"long imdb canonical name": "Chaplin, Charles"
}
] | null |
7 | [
{
"name": "Super-Film",
"long imdb name": "Super-Film"
},
{
"name": "Ideal",
"long imdb name": "Ideal"
},
{
"name": "Kino Video",
"long imdb name": "Kino Video"
},
{
"name": "Divisa Home Video",
"long imdb name": "Divisa Home Video"
},
{
"name": "Eureka Entertainm... | [
"58",
"58::(20 fps)",
"Spain:60::(DVD edition)"
] | 1,919 | [
"Black and White"
] | [
"Oyster-king Quaker cannot be impressed anymore. He is so rich that he even has a special butler holding his cigar while he is smoking. The only thing Quaker would be impressed by is if his daughter Ossi were to marry a real prince. He makes an offer to the poor prince Nucki, who sends his friend Josef to get a cle... | 1,077 | Die Austernprinzessin | Austernprinzessin, Die | Austernprinzessin, Die (1919) | null | Die Austernprinzessin (1919) | [
"de"
] | Austernprinzessin, Die (1919) | http://ia.media-imdb.com/images/M/MV5BMTYwMzA4MDgxOF5BMl5BanBnXkFtZTgwNzI0NzkxMjE@._V1._SX99_SY140_.jpg | [
"lent"
] | [
"Comedy"
] | [
{
"canonical name": "Lubitsch, Ernst",
"name": "Ernst Lubitsch",
"long imdb name": "Ernst Lubitsch",
"long imdb canonical name": "Lubitsch, Ernst"
}
] | [
{
"canonical name": "Sparkuhl, Theodor",
"name": "Theodor Sparkuhl",
"long imdb name": "Theodor Sparkuhl",
"long imdb canonical name": "Sparkuhl, Theodor"
}
] | [
"The Oyster Princess::International (English title) (imdb display title), UK (imdb display title)",
"My Lady Margarine::USA (alternative title)",
"A Princesa das Ostras::Brazil (imdb display title), Portugal",
"Østersprinsessen::Denmark (imdb display title)",
"Austrijska princeza::Yugoslavia (Serbian title)... | 1.33 : 1 | [
{
"name": "Projektions-AG Union",
"long imdb name": "Projektions-AG Union"
}
] | movie | [
"Germany"
] | An American heiress seeks the hand of an impoverished German prince. | http://ia.media-imdb.com/images/M/MV5BMTYwMzA4MDgxOF5BMl5BanBnXkFtZTgwNzI0NzkxMjE@.jpg | Austernprinzessin, Die | [
{
"canonical name": "Janson, Victor",
"name": "Victor Janson",
"long imdb name": "Victor Janson",
"long imdb canonical name": "Janson, Victor"
},
{
"canonical name": "Oswalda, Ossi",
"name": "Ossi Oswalda",
"long imdb name": "Ossi Oswalda",
"long imdb canonical name": "Oswalda, O... | null | [
{
"canonical name": "Kräly, Hanns",
"name": "Hanns Kräly",
"long imdb name": "Hanns Kräly",
"long imdb canonical name": "Kräly, Hanns"
},
{
"canonical name": "Lubitsch, Ernst",
"name": "Ernst Lubitsch",
"long imdb name": "Ernst Lubitsch",
"long imdb canonical name": "Lubitsch, Er... | [
"German"
] | [
"de"
] | [
{
"canonical name": "Davies, William",
"name": "William Davies",
"long imdb name": "William Davies",
"long imdb canonical name": "Davies, William"
}
] | null |
6.1 | [
{
"name": "Pathé Exchange",
"long imdb name": "Pathé Exchange"
},
{
"name": "Pathé Frères",
"long imdb name": "Pathé Frères"
},
{
"name": "Kinowelt Home Entertainment",
"long imdb name": "Kinowelt Home Entertainment"
},
{
"name": "New Line Home Video",
"long imdb name": "... | [
"12::(Turner library print)"
] | 1,919 | [
"Black and White"
] | [
"The mining town of Peaceful Vale is a rough place, and sheriff 'Gun Shy' Gallagher can do little about it, since the town is ruled by Crooked Charley, the gambler. Charley runs Pierre the tavern keeper out of town, and takes Pierre's daughter Nell as his prisoner. But when Billy Blazes sees Charley's henchmen hara... | 521 | Billy Blazes, Esq. | Billy Blazes, Esq. | Billy Blazes, Esq. (1919) | [
"USA:Passed::(National Board of Review)",
"USA:TV-PG::(TV rating)"
] | Billy Blazes, Esq. (1919) | [
"us"
] | Billy Blazes, Esq. (1919) | http://ia.media-imdb.com/images/M/MV5BYjhlMjcyMGUtZDJhZC00MWY1LThiODktZDhjNDg4OTY3NGZhXkEyXkFqcGdeQXVyNDUzNzExOTE@._V1._SX100_SY132_.jpg | [
"lent"
] | [
"Short",
"Comedy",
"Western"
] | [
{
"canonical name": "Roach, Hal",
"name": "Hal Roach",
"long imdb name": "Hal Roach",
"long imdb canonical name": "Roach, Hal"
}
] | [
{
"canonical name": "Lundin, Walter",
"name": "Walter Lundin",
"long imdb name": "Walter Lundin",
"long imdb canonical name": "Lundin, Walter"
}
] | [
"Billy Blazes, Esq.::Germany (imdb display title)",
"Coco de Chicago::France (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Rolin Films",
"long imdb name": "Rolin Films"
}
] | movie | [
"USA"
] | Billy Blazes confronts Crooked Charley, who has been ruling the town of Peaceful Vale through fear and violence. | http://ia.media-imdb.com/images/M/MV5BYjhlMjcyMGUtZDJhZC00MWY1LThiODktZDhjNDg4OTY3NGZhXkEyXkFqcGdeQXVyNDUzNzExOTE@.jpg | Billy Blazes, Esq. | [
{
"canonical name": "Lloyd, Harold",
"name": "Harold Lloyd",
"long imdb name": "Harold Lloyd",
"long imdb canonical name": "Lloyd, Harold"
},
{
"canonical name": "Pollard, 'Snub'",
"name": "'Snub' Pollard",
"long imdb name": "'Snub' Pollard",
"long imdb canonical name": "Pollard,... | [
{
"canonical name": "Hayes, Suzanne Lloyd",
"name": "Suzanne Lloyd Hayes",
"long imdb name": "Suzanne Lloyd Hayes",
"long imdb canonical name": "Hayes, Suzanne Lloyd"
},
{
"canonical name": "Roach, Hal",
"name": "Hal Roach",
"long imdb name": "Hal Roach",
"long imdb canonical nam... | [
{
"canonical name": "Roach, Hal",
"name": "Hal Roach",
"long imdb name": "Hal Roach",
"long imdb canonical name": "Roach, Hal"
},
{
"canonical name": "Walker, H.M.",
"name": "H.M. Walker",
"long imdb name": "H.M. Walker",
"long imdb canonical name": "Walker, H.M."
}
] | [
"English"
] | [
"en"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | [
{
"name": "Capolavoro Music Company",
"long imdb name": "Capolavoro Music Company"
},
{
"name": "Harold Lloyd Entertainment",
"long imdb name": "Harold Lloyd Entertainment"
},
{
"name": "Harold Lloyd Trust, The",
"long imdb name": "Harold Lloyd Trust, The"
},
{
"name": "Harol... |
6.7 | [
{
"name": "Universal Film Manufacturing Company",
"long imdb name": "Universal Film Manufacturing Company"
},
{
"name": "Universal Pictures",
"long imdb name": "Universal Pictures"
},
{
"name": "European Motion Picture Company",
"long imdb name": "European Motion Picture Company"
}... | [
"92::(18 fps)",
"Germany:99::(18 fps) (Berlin International Film Festival)",
"Austria:99::(18 fps)",
"UK:99::(DVD release)"
] | 1,919 | [
"Black and White"
] | [
"An Austrian military officer and roue' attempts to seduce the wife of a surgeon. The two men confront each other in a test of abilities that ends surprisingly.",
"An Austrian officer sets out to seduce a neglected young wife."
] | 962 | Blind Husbands | Blind Husbands | Blind Husbands (1919) | null | Blind Husbands (1919) | [
"us"
] | Blind Husbands (1919) | http://ia.media-imdb.com/images/M/MV5BMTQyOTU5MzA2Nl5BMl5BanBnXkFtZTgwMjkwNTg1MzE@._V1._SX92_SY140_.jpg | [
"lent"
] | [
"Drama",
"Romance"
] | [
{
"canonical name": "von Stroheim, Erich",
"name": "Erich von Stroheim",
"long imdb name": "Erich von Stroheim",
"long imdb canonical name": "von Stroheim, Erich"
}
] | [
{
"canonical name": "Reynolds, Ben F.",
"name": "Ben F. Reynolds",
"long imdb name": "Ben F. Reynolds",
"long imdb canonical name": "Reynolds, Ben F."
}
] | [
"A Lei das Montanhas::Portugal",
"Asszonybecsület::Hungary",
"Blinde Ægtemænd::Denmark (imdb display title)",
"Blinde Ehemänner::Austria",
"Corazón olvidado::Spain",
"Die Rache der Berge::Austria",
"La loi des montagnes::France",
"Maridos Cegos::Brazil (imdb display title)",
"Mariti ciechi::Italy",
... | 1.33 : 1 | [
{
"name": "Universal Film Manufacturing Company",
"long imdb name": "Universal Film Manufacturing Company"
}
] | movie | [
"USA"
] | An Austrian officer sets out to seduce a neglected young wife. | http://ia.media-imdb.com/images/M/MV5BMTQyOTU5MzA2Nl5BMl5BanBnXkFtZTgwMjkwNTg1MzE@.jpg | Blind Husbands | [
{
"canonical name": "De Grasse, Sam",
"name": "Sam De Grasse",
"long imdb name": "Sam De Grasse",
"long imdb canonical name": "De Grasse, Sam"
},
{
"canonical name": "Billington, Francelia",
"name": "Francelia Billington",
"long imdb name": "Francelia Billington",
"long imdb cano... | [
{
"canonical name": "von Stroheim, Erich",
"name": "Erich von Stroheim",
"long imdb name": "Erich von Stroheim",
"long imdb canonical name": "von Stroheim, Erich"
}
] | [
{
"canonical name": "Ducey, Lillian",
"name": "Lillian Ducey",
"long imdb name": "Lillian Ducey",
"long imdb canonical name": "Ducey, Lillian"
},
{
"canonical name": "von Stroheim, Erich",
"name": "Erich von Stroheim",
"long imdb name": "Erich von Stroheim",
"long imdb canonical ... | [
"English"
] | [
"en"
] | null | null |
7.8 | [
{
"name": "First National Exhibitors' Circuit",
"long imdb name": "First National Exhibitors' Circuit"
},
{
"name": "Pathé Frères",
"long imdb name": "Pathé Frères"
},
{
"name": "FilmAnnex",
"long imdb name": "FilmAnnex"
},
{
"name": "Milestone Film & Video",
"long imdb n... | [
"85::(1998 restored version)"
] | 1,919 | [
"Black and White"
] | [
"Wealthy Jervis Pendleton acts as benefactor for orphan Judy Abbott, anonymously sponsoring her in her boarding school. But as she grows up, he finds himself falling in love with her, and she with him, though she does not know that the man she has fallen for is her benefactor."
] | 1,086 | Daddy-Long-Legs | Daddy-Long-Legs | Daddy-Long-Legs (1919) | [
"USA:Unrated",
"USA:TV-PG::(TV rating)"
] | Daddy-Long-Legs (1919) | [
"us"
] | Daddy-Long-Legs (1919) | http://ia.media-imdb.com/images/M/MV5BMTQ4Mzc0MDczOF5BMl5BanBnXkFtZTgwNTUwNzYwMjE@._V1._SX95_SY140_.jpg | [
"lent"
] | [
"Comedy",
"Drama"
] | [
{
"canonical name": "Neilan, Marshall",
"name": "Marshall Neilan",
"long imdb name": "Marshall Neilan",
"long imdb canonical name": "Neilan, Marshall"
}
] | [
{
"canonical name": "Rosher, Charles",
"name": "Charles Rosher",
"long imdb name": "Charles Rosher",
"long imdb canonical name": "Rosher, Charles"
},
{
"canonical name": "Cronjager, Henry",
"name": "Henry Cronjager",
"long imdb name": "Henry Cronjager",
"long imdb canonical name"... | [
"As Pernas Altas do Papá::Portugal (imdb display title)",
"Dlugonogi tata::Poland (imdb display title)",
"Nyakigláb apó::Hungary (imdb display title)",
"Papa Langben::Denmark (imdb display title)",
"Papa longue-jambes::France (imdb display title)"
] | 1.33 : 1 | [
{
"name": "Mary Pickford Company",
"long imdb name": "Mary Pickford Company"
}
] | movie | [
"USA"
] | Wealthy Jervis Pendleton acts as benefactor for orphan Judy Abbott, anonymously sponsoring her in her boarding school... | http://ia.media-imdb.com/images/M/MV5BMTQ4Mzc0MDczOF5BMl5BanBnXkFtZTgwNTUwNzYwMjE@.jpg | Daddy-Long-Legs | [
{
"canonical name": "Pickford, Mary",
"name": "Mary Pickford",
"long imdb name": "Mary Pickford",
"long imdb canonical name": "Pickford, Mary"
},
{
"canonical name": "Davenport, Milla",
"name": "Milla Davenport",
"long imdb name": "Milla Davenport",
"long imdb canonical name": "D... | [
{
"canonical name": "Pickford, Mary",
"name": "Mary Pickford",
"long imdb name": "Mary Pickford",
"long imdb canonical name": "Pickford, Mary"
}
] | [
{
"canonical name": "Webster, Jean",
"name": "Jean Webster",
"long imdb name": "Jean Webster",
"long imdb canonical name": "Webster, Jean"
},
{
"canonical name": "Johnston, Agnes Christine",
"name": "Agnes Christine Johnston",
"long imdb name": "Agnes Christine Johnston",
"long i... | [
"English"
] | [
"en"
] | null | null |
5.5 | [
{
"name": "Decla-Bioscop AG",
"long imdb name": "Decla-Bioscop AG"
}
] | [
"80",
"Canada:108",
"76::(20 fps)"
] | 1,919 | [
"Black and White::(tinted)"
] | [
"The Buddhist priest wants the Daughter of the Daimyo to become a priestess at the Forbidden Garden. The Daimyo thinks if he were in Europe that his daughter should decide on her own, but he is denunciated and has to commit harakiri. She meets Olaf, a European officer, falls in love and marries him, but after a few... | 373 | Harakiri | Harakiri | Harakiri (1919) | null | Harakiri (1919) | [
"de"
] | Harakiri (1919) | http://ia.media-imdb.com/images/M/MV5BMTc4NDg2MjM2N15BMl5BanBnXkFtZTgwMzUyMTY0MjE@._V1._SX100_SY140_.jpg | [
"lent"
] | [
"Drama"
] | [
{
"canonical name": "Lang, Fritz",
"name": "Fritz Lang",
"long imdb name": "Fritz Lang",
"long imdb canonical name": "Lang, Fritz"
}
] | [
{
"canonical name": "Fassbender, Max",
"name": "Max Fassbender",
"long imdb name": "Max Fassbender",
"long imdb canonical name": "Fassbender, Max"
},
{
"canonical name": "Hoffmann, Carl",
"name": "Carl Hoffmann",
"long imdb name": "Carl Hoffmann",
"long imdb canonical name": "Hof... | [
"Харакири::Bulgaria (Bulgarian title)",
"Harakiri::Poland (imdb display title)",
"Harakiri::Hungary (imdb display title)",
"Madame Butterfly::France",
"Madame Butterfly::Denmark (imdb display title)",
"Madame Butterfly::Netherlands (theatrical title)"
] | 1.33 : 1 | [
{
"name": "Decla-Bioscop AG",
"long imdb name": "Decla-Bioscop AG"
},
{
"name": "Decla-Film-Gesellschaft Holz & Co.",
"long imdb name": "Decla-Film-Gesellschaft Holz & Co."
}
] | movie | [
"Germany"
] | The Buddhist priest wants the Daughter of the Daimyo to become a priestess at the Forbidden Garden.... | http://ia.media-imdb.com/images/M/MV5BMTc4NDg2MjM2N15BMl5BanBnXkFtZTgwMzUyMTY0MjE@.jpg | Harakiri | [
{
"canonical name": "Biensfeldt, Paul",
"name": "Paul Biensfeldt",
"long imdb name": "Paul Biensfeldt",
"long imdb canonical name": "Biensfeldt, Paul"
},
{
"canonical name": "Dagover, Lil",
"name": "Lil Dagover",
"long imdb name": "Lil Dagover",
"long imdb canonical name": "Dagov... | [
{
"canonical name": "Pommer, Erich",
"name": "Erich Pommer",
"long imdb name": "Erich Pommer",
"long imdb canonical name": "Pommer, Erich"
}
] | [
{
"canonical name": "Belasco, David",
"name": "David Belasco",
"long imdb name": "David Belasco",
"long imdb canonical name": "Belasco, David"
},
{
"canonical name": "Jungk, Max",
"name": "Max Jungk",
"long imdb name": "Max Jungk",
"long imdb canonical name": "Jungk, Max"
},
... | null | null | null | [
{
"name": "Bundesarchiv-Filmarchiv Koblenz",
"long imdb name": "Bundesarchiv-Filmarchiv Koblenz"
}
] |
7 | [
{
"name": "Svenska Bios Filmbyrå",
"long imdb name": "Svenska Bios Filmbyrå"
},
{
"name": "Decla-Bioscop AG",
"long imdb name": "Decla-Bioscop AG"
},
{
"name": "Grapevine Video",
"long imdb name": "Grapevine Video"
}
] | [
"106::(restored version)",
"122::(original release)"
] | 1,919 | [
"Black and White"
] | [
"Three Scottish officers, including Sir Archi, murder Sir Arne and his household for a coffin filled with gold. The only survivor is Elsalill, who moves to relatives in Marstrand. There she meets a charming young officer - Sir Archi, and she soon understands that he was one of the murderers. She is in a classic dil... | 787 | Herr Arnes pengar | Herr Arnes pengar | Herr Arnes pengar (1919) | [
"Iceland:L",
"Spain:13"
] | Herr Arnes pengar (1919) | [
"se"
] | Herr Arnes pengar (1919) | http://ia.media-imdb.com/images/M/MV5BMjA0ODYzMzM0M15BMl5BanBnXkFtZTcwMDQwODIzMQ@@._V1._SX100_SY140_.jpg | [
"lent"
] | [
"Drama",
"History"
] | [
{
"canonical name": "Stiller, Mauritz",
"name": "Mauritz Stiller",
"long imdb name": "Mauritz Stiller",
"long imdb canonical name": "Stiller, Mauritz"
}
] | [
{
"canonical name": "Boge, Gustaf",
"name": "Gustaf Boge",
"long imdb name": "Gustaf Boge",
"long imdb canonical name": "Boge, Gustaf"
},
{
"canonical name": "Jaenzon, Julius",
"name": "Julius Jaenzon",
"long imdb name": "Julius Jaenzon",
"long imdb canonical name": "Jaenzon, Jul... | [
"Sir Arne's Treasure::International (English title) (imdb display title)",
"Snows of Destiny",
"The Three Who Were Doomed",
"The Treasure of Arne::International (English title) (bowdlerized title)",
"Aarne-herran rahat::Finland",
"Arne úr kincse::Hungary (imdb display title)",
"El tesoro de Arne::Spain"... | 1.33 : 1 | [
{
"name": "Svenska Biografteatern AB",
"long imdb name": "Svenska Biografteatern AB"
}
] | movie | [
"Sweden"
] | Three Scottish officers, including Sir Archi, murder Sir Arne and his household for a coffin filled with gold... | http://ia.media-imdb.com/images/M/MV5BMjA0ODYzMzM0M15BMl5BanBnXkFtZTcwMDQwODIzMQ@@.jpg | Herr Arnes pengar | [
{
"canonical name": "Stocklassa, Erik",
"name": "Erik Stocklassa",
"long imdb name": "Erik Stocklassa",
"long imdb canonical name": "Stocklassa, Erik"
},
{
"canonical name": "Berger, Bror",
"name": "Bror Berger",
"long imdb name": "Bror Berger",
"long imdb canonical name": "Berge... | [
{
"canonical name": "Magnusson, Charles",
"name": "Charles Magnusson",
"long imdb name": "Charles Magnusson",
"long imdb canonical name": "Magnusson, Charles"
}
] | [
{
"canonical name": "Lagerlöf, Selma",
"name": "Selma Lagerlöf",
"long imdb name": "Selma Lagerlöf",
"long imdb canonical name": "Lagerlöf, Selma"
},
{
"canonical name": "Molander, Gustaf",
"name": "Gustaf Molander",
"long imdb name": "Gustaf Molander",
"long imdb canonical name"... | [
"Swedish"
] | [
"sv"
] | [
{
"canonical name": "Emilson, Fredrik",
"name": "Fredrik Emilson",
"long imdb name": "Fredrik Emilson",
"long imdb canonical name": "Emilson, Fredrik"
}
] | [
{
"name": "Svenska Kinemathek",
"long imdb name": "Svenska Kinemathek"
}
] |
7.1 | [
{
"name": "Pathé Frères",
"long imdb name": "Pathé Frères"
},
{
"name": "United Artists",
"long imdb name": "United Artists"
}
] | [
"166"
] | 1,919 | [
"Black And White::(tinted)"
] | [
"The story of two men, one married, the other the lover of the other's wife, who meet in the trenches of the First World War, and how their tale becomes a microcosm for the horrors of war."
] | 876 | J'accuse! | J'accuse! | J'accuse! (1919) | null | J'accuse! (1919) | [
"fr"
] | J'accuse! (1919) | http://ia.media-imdb.com/images/M/MV5BMjEyODM2NDYzOF5BMl5BanBnXkFtZTgwOTYyMzU5MTE@._V1._SX100_SY71_.jpg | [
"lent"
] | [
"Drama",
"Horror",
"War"
] | [
{
"canonical name": "Gance, Abel",
"name": "Abel Gance",
"long imdb name": "Abel Gance",
"long imdb canonical name": "Gance, Abel"
}
] | [
{
"canonical name": "Bujard, Marc",
"name": "Marc Bujard",
"long imdb name": "Marc Bujard",
"long imdb canonical name": "Bujard, Marc"
},
{
"canonical name": "Burel, Léonce-Henri",
"name": "Léonce-Henri Burel",
"long imdb name": "Léonce-Henri Burel",
"long imdb canonical name": "... | [
"I Accuse::International (English title)",
"J'accuse!::USA (imdb display title)",
"Ich klage an::Germany",
"Oskarzam!::Poland (imdb display title)",
"Per la patria::Italy",
"Vádolok!::Hungary (imdb display title)",
"Yo acuso::Spain"
] | 1.33 : 1 | [
{
"name": "Pathé Frères",
"long imdb name": "Pathé Frères"
}
] | movie | [
"France"
] | The story of two men, one married, the other the lover of the other's wife, who meet in the trenches of the First World War, and how their tale becomes a microcosm for the horrors of war. | http://ia.media-imdb.com/images/M/MV5BMjEyODM2NDYzOF5BMl5BanBnXkFtZTgwOTYyMzU5MTE@.jpg | J'accuse! | [
{
"canonical name": "Joubé, Romuald",
"name": "Romuald Joubé",
"long imdb name": "Romuald Joubé",
"long imdb canonical name": "Joubé, Romuald"
},
{
"canonical name": "Desjardins, Maxime",
"name": "Maxime Desjardins",
"long imdb name": "Maxime Desjardins",
"long imdb canonical nam... | [
{
"canonical name": "Pathé, Charles",
"name": "Charles Pathé",
"long imdb name": "Charles Pathé",
"long imdb canonical name": "Pathé, Charles"
}
] | [
{
"canonical name": "Gance, Abel",
"name": "Abel Gance",
"long imdb name": "Abel Gance",
"long imdb canonical name": "Gance, Abel"
}
] | [
"French"
] | [
"fr"
] | [
{
"canonical name": "Israel, Robert",
"name": "Robert Israel",
"long imdb name": "Robert Israel",
"long imdb canonical name": "Israel, Robert"
}
] | null |
8.1 | [
{
"name": "Decla-Bioscop AG",
"long imdb name": "Decla-Bioscop AG"
},
{
"name": "Sfinks",
"long imdb name": "Sfinks"
},
{
"name": "Goldwyn Distributing Company",
"long imdb name": "Goldwyn Distributing Company"
},
{
"name": "Rothafel",
"long imdb name": "Rothafel"
},
... | [
"France:78",
"Spain:50",
"USA:67",
"USA:51::(video version)",
"Spain:73::(DVD version)"
] | 1,920 | [
"Black and White::(tinted)"
] | [
"Francis, a young man, recalls in his memory the horrible experiences he and his fiancée Jane recently went through. It is the annual fair in Holstenwall. Francis and his friend Alan visit The Cabinet of Dr. Caligari, an exhibit where the mysterious doctor shows the somnambulist Cesare, and awakens him for some mom... | 38,824 | Das Cabinet des Dr. Caligari | Cabinet des Dr. Caligari, Das | Cabinet des Dr. Caligari, Das (1920) | [
"Argentina:13",
"Australia:PG",
"Canada:PG::(Alberta/Manitoba/Ontario)",
"Canada:14::(Nova Scotia)",
"Canada:G::(Quebec)",
"Finland:K-16",
"Finland:K-15::(new rating: 2001)",
"France:Tous publics",
"Germany:12::(bw) (1964, 1995)",
"Germany:18::(1920)",
"Spain:7",
"Sweden:15",
"UK:A::(origina... | Das Cabinet des Dr. Caligari (1920) | [
"de"
] | Cabinet des Dr. Caligari, Das (1920) | http://ia.media-imdb.com/images/M/MV5BMTY1NzIxOTcxM15BMl5BanBnXkFtZTgwMjY0ODgwNzE@._V1._SX100_SY138_.jpg | [
"lent"
] | [
"Fantasy",
"Horror",
"Mystery",
"Thriller"
] | [
{
"canonical name": "Wiene, Robert",
"name": "Robert Wiene",
"long imdb name": "Robert Wiene",
"long imdb canonical name": "Wiene, Robert"
}
] | [
{
"canonical name": "Hameister, Willy",
"name": "Willy Hameister",
"long imdb name": "Willy Hameister",
"long imdb canonical name": "Hameister, Willy"
}
] | [
"The Cabinet of Dr. Caligari::International (English title), USA",
"El gabinete del Dr. Caligari::Argentina (imdb display title), Spain",
"O Gabinete do Dr. Caligari::Brazil, Portugal",
"Кабинет доктора Калигари::Russia",
"Кабинетът на д-р Калигари::Bulgaria (Bulgarian title)",
"Caligari Hakase::Japan (im... | 1.33 : 1 | [
{
"name": "Decla-Bioscop AG",
"long imdb name": "Decla-Bioscop AG"
}
] | movie | [
"Germany"
] | Dr. Caligari's somnambulist, Cesare, and his deadly predictions. | http://ia.media-imdb.com/images/M/MV5BMTY1NzIxOTcxM15BMl5BanBnXkFtZTgwMjY0ODgwNzE@.jpg | Cabinet des Dr. Caligari, Das | [
{
"canonical name": "Krauss, Werner",
"name": "Werner Krauss",
"long imdb name": "Werner Krauss",
"long imdb canonical name": "Krauss, Werner"
},
{
"canonical name": "Veidt, Conrad",
"name": "Conrad Veidt",
"long imdb name": "Conrad Veidt",
"long imdb canonical name": "Veidt, Con... | [
{
"canonical name": "Meinert, Rudolf",
"name": "Rudolf Meinert",
"long imdb name": "Rudolf Meinert",
"long imdb canonical name": "Meinert, Rudolf"
},
{
"canonical name": "Pommer, Erich",
"name": "Erich Pommer",
"long imdb name": "Erich Pommer",
"long imdb canonical name": "Pommer... | [
{
"canonical name": "Mayer, Carl",
"name": "Carl Mayer",
"long imdb name": "Carl Mayer",
"long imdb canonical name": "Mayer, Carl"
},
{
"canonical name": "Janowitz, Hans",
"name": "Hans Janowitz",
"long imdb name": "Hans Janowitz",
"long imdb canonical name": "Janowitz, Hans"
}... | [
"German"
] | [
"de"
] | [
{
"canonical name": "Antonini, Alfredo",
"name": "Alfredo Antonini",
"long imdb name": "Alfredo Antonini",
"long imdb canonical name": "Antonini, Alfredo"
},
{
"canonical name": "Becce, Giuseppe",
"name": "Giuseppe Becce",
"long imdb name": "Giuseppe Becce",
"long imdb canonical ... | [
{
"name": "Bundesarchiv-Filmarchiv Koblenz",
"long imdb name": "Bundesarchiv-Filmarchiv Koblenz"
},
{
"name": "Studio Babelsberg",
"long imdb name": "Studio Babelsberg"
}
] |
6 | [
{
"name": "Filmjuwelen",
"long imdb name": "Filmjuwelen"
},
{
"name": "LS Video",
"long imdb name": "LS Video"
}
] | [
"112",
"98::(DVD)"
] | 1,919 | [
"Black and White"
] | [
"After the old-books shop closes, portraits of the Strumpet, Death, and the Devil come to life and amuse themselves by reading stories--about themselves, of course, in various guises and eras. Four of the stories are literary horror stories (one by Poe, one by R. L. Stevenson), and the last one is a comedy involvin... | 287 | Unheimliche Geschichten | Unheimliche Geschichten | Unheimliche Geschichten (1919) | [
"Argentina:13"
] | Unheimliche Geschichten (1919) | [
"de"
] | Unheimliche Geschichten (1919) | http://ia.media-imdb.com/images/M/MV5BNmMzNmU3YjgtMzQ1Zi00N2Y2LTllMTEtZDA3NzcyNzRjMDNhXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1._SX87_SY140_.jpg | [
"lent"
] | [
"Fantasy",
"Horror",
"Mystery"
] | [
{
"canonical name": "Oswald, Richard",
"name": "Richard Oswald",
"long imdb name": "Richard Oswald",
"long imdb canonical name": "Oswald, Richard"
}
] | [
{
"canonical name": "Hoffmann, Carl",
"name": "Carl Hoffmann",
"long imdb name": "Carl Hoffmann",
"long imdb canonical name": "Hoffmann, Carl"
}
] | [
"Eerie Tales::USA",
"Five Sinister Stories",
"Grausige Nächte::Germany (alternative title)",
"Tales of Horror",
"Tales of the Uncanny",
"Weird Tales",
"Borzalmas éjszakák::Hungary (imdb display title)",
"Cauchemars et hallucinations::France",
"Historias tenebrosas::Argentina",
"Un affare misterios... | 1.33 : 1 | [
{
"name": "Richard-Oswald-Produktion",
"long imdb name": "Richard-Oswald-Produktion"
}
] | movie | [
"Germany"
] | After the old-books shop closes, portraits of the Strumpet, Death, and the Devil come to life and amuse... | http://ia.media-imdb.com/images/M/MV5BNmMzNmU3YjgtMzQ1Zi00N2Y2LTllMTEtZDA3NzcyNzRjMDNhXkEyXkFqcGdeQXVyMzU0NzkwMDg@.jpg | Unheimliche Geschichten | [
{
"canonical name": "Berber, Anita",
"name": "Anita Berber",
"long imdb name": "Anita Berber",
"long imdb canonical name": "Berber, Anita"
},
{
"canonical name": "Veidt, Conrad",
"name": "Conrad Veidt",
"long imdb name": "Conrad Veidt",
"long imdb canonical name": "Veidt, Conrad"... | [
{
"canonical name": "Oswald, Richard",
"name": "Richard Oswald",
"long imdb name": "Richard Oswald",
"long imdb canonical name": "Oswald, Richard"
}
] | [
{
"canonical name": "Heine, Anselma",
"name": "Anselma Heine",
"long imdb name": "Anselma Heine",
"long imdb canonical name": "Heine, Anselma"
},
{
"canonical name": "Liebmann, Robert",
"name": "Robert Liebmann",
"long imdb name": "Robert Liebmann",
"long imdb canonical name": "L... | null | null | null | null |
End of preview.
No dataset card yet
- Downloads last month
- 10