Oh! What a Lovely War (1969)

The working-class Smiths change their initially sunny views on World War I after the five boys of the family witness the harsh reality of trench warfare.

1969
War
Music
Comedy
6.0
/zLAYzMNOos506tcKYXxIDvupY5S.jpg Poster

Cast

Vanessa Redgrave
Vanessa Redgrave
Sylvia Pankhurst
John Mills
John Mills
Field Marshall Sir Douglas Haig
Paul Shelley
Paul Shelley
Jack Henry Smith
Ian Holm
Ian Holm
President Poincare
John Owens
John Owens
Seamus Moore
Maurice Roëves
Maurice Roëves
George Smith
Jeremy Child
Jeremy Child
Wealthy Young Man (uncredited)
Jane Seymour
Jane Seymour
Chorus Girl (uncredited)
Corin Redgrave
Corin Redgrave
Bertie Smith
Tony Vogel
Tony Vogel
German Soldier (uncredited)
Maggie Smith
Maggie Smith
Music Hall Star
Laurence Olivier
Laurence Olivier
Field Marshal Sir John French
Angus Lennie
Angus Lennie
Scottish Soldier
Ralph Richardson
Ralph Richardson
Sir Edward Grey
Anthony Ainley
Anthony Ainley
3rd Aide
Ben Howard
Ben Howard
Pte Garbett
Ron Pember
Ron Pember
Corporal
Jack Hawkins
Jack Hawkins
Emperor Franz Josef
Frank Forsyth
Frank Forsyth
President Woodrow Wilson (uncredited)
John Gielgud
John Gielgud
Count Leopold Von Berchtold
Guy Standeven
Guy Standeven
American Officer (uncredited)
Penelope Allen
Penelope Allen
Solo Chorus Girl
Peter Gilmore
Peter Gilmore
Pte Burgess
Susannah York
Susannah York
Eleanor
Jean-Pierre Cassel
Jean-Pierre Cassel
French Colonel
Stanley Lebor
Stanley Lebor
Soldier (uncredited)
Steve Plytas
Steve Plytas
Turkish Military Attaché (uncredited)
Wendy Allnutt
Wendy Allnutt
Florence Victoria 'Flo' Smith
Robert Flemyng
Robert Flemyng
Staff Officer in Gassed Trench
Paul Daneman
Paul Daneman
Czar Nicholas II
Natasha Parry
Natasha Parry
Sir William Robertson's Lady
Michael Bates
Michael Bates
Drunk Lance Corporal
John Dunn-Hill
John Dunn-Hill
Irish Soldier (uncredited)
Juliet Mills
Juliet Mills
Nurse
Edward Fox
Edward Fox
Aide to Field-Marshal Haig
John Clements
John Clements
Gen. von Moltke
Gerald Sim
Gerald Sim
Chaplain
Norman Jones
Norman Jones
Scottish Soldier
Charles Farrell
Charles Farrell
Policeman (uncredited)
Norman Bird
Norman Bird
Training Sgt (uncredited)
Marianne Stone
Marianne Stone
Mill Girl
John Woodnutt
John Woodnutt
British Officer (uncredited)
Pippa Steel
Pippa Steel
Scoreboard Girl (uncredited)
Dirk Bogarde
Dirk Bogarde
Stephen
Thorley Walters
Thorley Walters
Staff Officer
Ruth Kettlewell
Ruth Kettlewell
Duchess Sophie (uncredited)
Angela Thorne
Angela Thorne
Elizabeth May 'Betty' Smith
Michael Redgrave
Michael Redgrave
Gen. Sir Henry Wilson
Wensley Pithey
Wensley Pithey
Archduke Ferdinand (uncredited)
Isabel Dean
Isabel Dean
Sir John French's Lady
Cecil Parker
Cecil Parker
Sir John
Kenneth More
Kenneth More
Kaiser Wilhelm II
Meriel Forbes
Meriel Forbes
Lady Pamela Grey
Paul Hansard
Paul Hansard
German Officer (uncredited)
Nanette Newman
Nanette Newman
Nurse
Vincent Ball
Vincent Ball
Australian Soldier
Phyllis Calvert
Phyllis Calvert
Lady Dorothy Haig
Joe Melia
Joe Melia
The Photographer
Paddy Joyce
Paddy Joyce
Irish Soldier
Derek Newark
Derek Newark
Shooting Gallery Proprietor
Clifford Mollison
Clifford Mollison
Heckler
Harry Locke
Harry Locke
Heckler
Guy Middleton
Guy Middleton
Gen. Sir William Robertson
Carole Gray
Carole Gray
Chorus Girl (uncredited)
Christine Noonan
Christine Noonan
Mill Girl (uncredited)
John Hussey
John Hussey
Soldier on Balcony (uncredited)
Christian Doermer
Christian Doermer
Fritz
Malcolm McFee
Malcolm McFee
Frederick Percy 'Freddie' Smith
Pia Colombo
Pia Colombo
Estaminet Singer
Dorothy Reynolds
Dorothy Reynolds
Heckler at Pankhurst Speech
Anthony Morton
Anthony Morton
Italian Military Attaché (uncredited)

Images

Oh! What a Lovely War Poster
Oh! What a Lovely War Poster

Detailed Information

General Information

Original Title: Oh! What a Lovely War

Creators: Hwang Dong-hyuk

Gender: War, Music, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $0.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/21335

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

PHP com cURL

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

  $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/21335";

$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/21335';

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"
    }
  ]
}