Finnish Films
Technical, Historical and Color Data
@kaggle.thedevastator_finnish_fiction_film_metadata_analysis_1907_2018
Technical, Historical and Color Data
@kaggle.thedevastator_finnish_fiction_film_metadata_analysis_1907_2018
By [source]
This dataset provides an in-depth analysis of the technical aspects of Finnish fiction films. Drawing from the comprehensive archives and resources offered by the Elonet database managed by the Finnish National Audiovisual Institute, this dataset offers a vast collection of information about various facets of film production. In particular, you will be able to take advantage of detailed yearly breakdowns for amount produced and for key technical indicators such as aspect ratios and system types. This dataset is an essential resource for those looking to incorporate historical context into their research into Finnish fiction films
For more datasets, click here.
- 🚨 Your notebook can be here! 🚨!
This dataset contains information about Finnish Fiction films. The data is divided into two main parts: technical details for each film, and yearly analysis of those details.
- Understanding the history of Finnish film production: The detailed information provided in this dataset can be used to analyze and track trends in production techniques over time, allowing for a better understanding of the history of Finnish fiction films.
- Correlating subtitles to movies: By combining this dataset with other data sources, it could help researchers identify which parts of a movie have subtitles added to them, as well as determine whether certain language versions feature different audio formats than others due to varying countries' film systems at different times.
- Analyzing costs associated with producing films: The wide range of technical details included here can be used to estimate the costs associated with producing certain types of films using specific systems and color processes at various times throughout history
If you use this dataset in your research, please credit the original authors.
Data Source
License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.
File: films_per_year.csv
| Column name | Description |
|---|---|
| Year | The year the film was released. (Integer) |
| Amount | The number of films released in the given year. (Integer) |
File: yearly_aspect_ratios.csv
| Column name | Description |
|---|---|
| system | The type of film system used to produce the film (e.g., 35mm or 16mm). (String) |
| year | The year the film was released. (Integer) |
| amount | The number of films released in the given year. (Integer) |
If you use this dataset in your research, please credit the original authors.
If you use this dataset in your research, please credit .
CREATE TABLE aspect_ratios (
"kuvasuhde" VARCHAR,
"lukum_r" BIGINT -- Lukumäärä,
"alku" BIGINT,
"loppu" BIGINT
);CREATE TABLE color_film_laboratories_1956_2000_1 (
"unnamed_0" BIGINT -- Unnamed: 0,
"ulkomaiset_laboratoriot" VARCHAR,
"suomi_filmi_oy" DOUBLE,
"kurkvaara_filmi_oy" DOUBLE,
"syv_puro" DOUBLE,
"mtv_elokuvalaboratorio" DOUBLE,
"finn_lab_oy" DOUBLE,
"oy_yleisradio_ab" DOUBLE,
"video_ei_lab" DOUBLE -- Video (ei Lab.),
"ei_tiedossa" DOUBLE
);CREATE TABLE color_film_material_manufacturers_1956_2000_1 (
"unnamed_0" BIGINT -- Unnamed: 0,
"sovcolor" DOUBLE,
"kodak" DOUBLE,
"agfa" DOUBLE,
"fuji" DOUBLE,
"v_ri" DOUBLE,
"yhteens" DOUBLE -- Yhteensä
);CREATE TABLE films_per_year (
"year" BIGINT,
"amount" BIGINT
);CREATE TABLE foreign_laboratories_1956_2000_1 (
"unnamed_0" BIGINT -- Unnamed: 0,
"ruotsi" DOUBLE,
"tanska" DOUBLE,
"neuvostoliitto_ven_j" DOUBLE -- Neuvostoliitto/Venäjä,
"yhdysvallat" DOUBLE,
"iso_britannia" DOUBLE,
"saksa" DOUBLE,
"brasilia" DOUBLE,
"unkari" DOUBLE,
"viro" DOUBLE,
"sveitsi" DOUBLE,
"kanada" DOUBLE
);CREATE TABLE from_video_or_16_mm_to_35_mm_film_1 (
"unnamed_0" BIGINT -- Unnamed: 0,
"video" DOUBLE,
"n_16_mm" DOUBLE -- 16 Mm
);CREATE TABLE lengths_and_durations (
"nimi" VARCHAR,
"pituus" DOUBLE,
"kesto" DOUBLE,
"vuosi" BIGINT
);CREATE TABLE nitrate_acetate_1952_1959_1 (
"unnamed_0" BIGINT -- Unnamed: 0,
"nitraatti" BIGINT,
"asetaatti" BIGINT
);CREATE TABLE nitrate_acetate_companies_1952_1959_1 (
"vuosi" BIGINT,
"nimi" VARCHAR,
"tuotantoyhti" VARCHAR -- Tuotantoyhtiö,
"nitraatti" VARCHAR,
"asetaatti" VARCHAR
);CREATE TABLE sound_system_data (
"system" VARCHAR,
"year" BIGINT,
"amount" BIGINT
);CREATE TABLE summary_color (
"v_ri" VARCHAR,
"m_r" BIGINT -- Määrä
);CREATE TABLE yearly_aspect_ratios (
"system" VARCHAR,
"year" BIGINT,
"amount" BIGINT
);CREATE TABLE yearly_color_data (
"color" VARCHAR,
"year" BIGINT,
"amount" BIGINT
);Anyone who has the link will be able to view this.