Summer of Soul (...Or, When the Revolution Could Not Be Televised) (2021)

During the same summer as Woodstock, over 300,000 people attended the Harlem Cultural Festival, celebrating African American music and culture, and promoting Black pride and unity. The footage from the festival sat in a basement, unseen for over 50 years, keeping this incredible event in Americas history lost — until now.

2021
Music
Documentary
History
7.0
/lFO7e6lRKDMLFyU4SODcdqzHIry.jpg Poster

Cast

Richard Nixon
Richard Nixon
Self - 37th President of the United States (archive footage)
John V. Lindsay
John V. Lindsay
Self (archive footage)
Martin Luther King Jr.
Martin Luther King Jr.
Self - Activist (archive footage)
Fidel Castro
Fidel Castro
Self (archive footage)
Questlove
Questlove
Self (uncredited)
Chris Rock
Chris Rock
Self - Artist
John F. Kennedy
John F. Kennedy
Self - 35th President of the United States (archive footage)
John Chancellor
John Chancellor
Self (archive footage)
Walter Cronkite
Walter Cronkite
Self - Host, CBS Evening News with Walter Cronkite (archive footage)
Gladys Knight
Gladys Knight
Self - Musician
Malcolm X
Malcolm X
Self - Activist (archive footage)
Dinah Shore
Dinah Shore
Self (archive footage)
Neil Armstrong
Neil Armstrong
Self (archive sound)
Buzz Aldrin
Buzz Aldrin
Self (archive sound)
Luis A. Miranda Jr.
Luis A. Miranda Jr.
Self - Civic Leader
Lin-Manuel Miranda
Lin-Manuel Miranda
Self - Artist
Redd Foxx
Redd Foxx
Self - Comedian & Actor (archive footage)
Willie Tyler
Willie Tyler
Self - Ventriloquist (archive footage)
Robert F. Kennedy
Robert F. Kennedy
Self - Presidential Candidate (archive footage)
Selema Masekela
Selema Masekela
Self - Son of Hugh Masekela
Berry Gordy
Berry Gordy
Self - Founder of Motown Records (archive footage)
Stevie Wonder
Stevie Wonder
Self
Al Sharpton
Al Sharpton
Self - Minister & Activist
Sheila E.
Sheila E.
Self - Musician
Jesse Jackson
Jesse Jackson
Self
Max Roach
Max Roach
Self (archive footage)
Roebuck 'Pops' Staples
Roebuck 'Pops' Staples
Self - Performer (archive footage)
Abbey Lincoln
Abbey Lincoln
Self (archive footage)
B.B. King
B.B. King
Self (archive footage)
Mavis Staples
Mavis Staples
Self - Singer (archive footage) (voice)
Harry Reasoner
Harry Reasoner
Self (archive footage)
Marilyn McCoo
Marilyn McCoo
Self - The 5th Dimension
Sly Stone
Sly Stone
Self - Performer (archive footage)
Greg Errico
Greg Errico
Self - Drummer, Sly & the Family Stone
Kwame Ture
Kwame Ture
Self - Activist (archive footage)
Mahalia Jackson
Mahalia Jackson
Self (archive footage)
Nina Simone
Nina Simone
Self (archive footage)
Moms Mabley
Moms Mabley
Self (archive footage)
Tony Lawrence
Tony Lawrence
Self - Harlem Cultural Festival Producer & Host (archive footage)
Hugh Masekela
Hugh Masekela
Self (archive footage)
Ray Barretto
Ray Barretto
Self - Performer (archive footage)
Billy Davis Jr.
Billy Davis Jr.
Self - The 5th Dimension
Dewey 'Pigmeat' Markham
Dewey 'Pigmeat' Markham
Self (archive footage)
Bones Howe
Bones Howe
Self - Music Producer (archive footage)

Images

Summer of Soul (...Or, When the Revolution Could Not Be Televised) Poster
Summer of Soul (...Or, When the Revolution Could Not Be Televised) Poster

Video

trailer Oficial

Summer of Soul (...ou, Quando a Revolução Não Pôde Ser Televisionada) | Trailer Oficial

trailer Oficial

Detailed Information

General Information

Original Title: Summer of Soul (...Or, When the Revolution Could Not Be Televised)

Creators: Hwang Dong-hyuk

Gender: Music, Documentary, History,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $3,696,069.00

Awards and Recognitions

  • Emmy Award - Melhor Ator em Série Dramática (Lee Jung-jae)
  • Golden Globe - Melhor Ator Coadjuvante em Série (O Yeong-su)
  • Screen Actors Guild Award - Melhor Elenco em Série Dramática
  • Critics' Choice Television Award - Melhor Série Dramática

Interesting facts

  • A série se tornou a mais assistida da Netflix em seu lançamento.
  • O criador Hwang Dong-hyuk levou mais de 10 anos para desenvolver a série.
  • Os uniformes dos guardas foram inspirados em roupas de ginástica infantis.
  • O jogo "Batatinha Frita 1, 2, 3" é um jogo infantil coreano real.

API

Acesse os dados do filme/série através da nossa API REST. Use o endpoint abaixo para obter informações completas em formato JSON.

Endpoint da API

https://api.moviendb.com/v1/movie/776527

Parâmetros: {type} = "movie" ou "tv" | {id} = ID do filme/série

PHP com cURL

<?php
  $url = "https://api.moviendb.com/v1/movie/776527";

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  $response = curl_exec($ch);
  $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  curl_close($ch);

  if ($httpCode === 200) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro: " . $httpCode;
}
?>

PHP com file_get_contents

<?php
$url = "https://api.moviendb.com/v1/movie/776527";

$response = file_get_contents($url);

if ($response !== false) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro ao fazer a requisição";
}
?>

JavaScript com Fetch

const url = 'https://api.moviendb.com/v1/movie/776527';

fetch(url, {
    method: 'GET',
    headers: {
        'Accept': 'application/json',
        'User-Agent': 'MovieDB-Client/1.0'
    }
})
.then(response => {
    if (!response.ok) {
        throw new Error(`HTTP error! status: ${response.status}`);
    }
    return response.json();
})
.then(data => {
    console.log(data);
    // Processar os dados aqui
})
.catch(error => {
    console.error('Erro:', error);
});

Exemplo de Resposta JSON

{
  "id": 93405,
  "name": "Round 6",
  "original_name": "오징어 게임",
  "overview": "Centenas de jogadores falidos aceitam um estranho convite...",
  "first_air_date": "2021-09-17",
  "vote_average": 8.0,
  "vote_count": 14250,
  "genres": [
    {
      "id": 18,
      "name": "Drama"
    },
    {
      "id": 9648,
      "name": "Mistério"
    }
  ],
  "seasons": [
    {
      "season_number": 1,
      "episode_count": 9,
      "air_date": "2021-09-17"
    }
  ],
  "created_by": [
    {
      "name": "Hwang Dong-hyuk"
    }
  ]
}