Weird: The Al Yankovic Story (2022)

Exploring every facet of Weird Al Yankovics life, from his meteoric rise to fame with early hits like Eat It and Like a Surgeon to his torrid celebrity love affairs and famously depraved lifestyle, this biopic takes audiences on a truly unbelievable journey through Yankovics life and career, from gifted child prodigy to the greatest musical legend of all time.

2022
Music
Comedy
6.0
/qcj2z13G0KjaIgc01ifiUKu7W07.jpg Poster

Cast

Quinta Brunson
Quinta Brunson
Oprah Winfrey
Nina West
Nina West
Divine
Michael McKean
Michael McKean
Sleazy MC
Dot-Marie Jones
Dot-Marie Jones
Mama Bear
Arturo Castro
Arturo Castro
Pablo Escobar
David Dastmalchian
David Dastmalchian
John Deacon
Thomas Lennon
Thomas Lennon
Salesman
Patton Oswalt
Patton Oswalt
Heckler
Jack Black
Jack Black
Wolfman Jack
Rainn Wilson
Rainn Wilson
Dr. Demento
Diedrich Bader
Diedrich Bader
Grizzled Narrator (voice)
Will Forte
Will Forte
Ben Scotti
Julianne Nicholson
Julianne Nicholson
Mary Yankovic
James Preston Rogers
James Preston Rogers
Hulk Hogan
Spencer Treat Clark
Spencer Treat Clark
Steve
Johnny Pemberton
Johnny Pemberton
Johnny Barf
Conan O'Brien
Conan O'Brien
Andy Warhol
Demetri Martin
Demetri Martin
Tiny Tim
Jonah Ray Rodrigues
Jonah Ray Rodrigues
Jonah Barf
Toby Huss
Toby Huss
Nick Yankovic
Evan Rachel Wood
Evan Rachel Wood
Madonna
Jorma Taccone
Jorma Taccone
Pee-Wee Herman
Seth Green
Seth Green
Radio DJ (voice)
Daniel Radcliffe
Daniel Radcliffe
'Weird Al' Yankovic
Gordon Tarpley
Gordon Tarpley
David Bowie (uncredited)
Chad Guerrero
Chad Guerrero
Guard #2
'Weird Al' Yankovic
'Weird Al' Yankovic
Tony Scotti
Scott Aukerman
Scott Aukerman
Police Officer
Akiva Schaffer
Akiva Schaffer
Alice Cooper
Jimmy Walker Jr.
Jimmy Walker Jr.
Floor Manager
William Guirola
William Guirola
Sicario
Mike Escamilla
Mike Escamilla
Guard #1
Lin-Manuel Miranda
Lin-Manuel Miranda
Doctor
Paul F. Tompkins
Paul F. Tompkins
Gallagher
Paul Riley Fox
Paul Riley Fox
Elton John (uncredited)
Trenyce
Trenyce
Diana Ross
Anthony N.
Anthony N.
Security Guard
Paloma Esparza Rabinov
Paloma Esparza Rabinov
Hipster Teen
Rocky Abou-Sakher
Rocky Abou-Sakher
Terrorist Diner Patron
Keanush Tafreshi
Keanush Tafreshi
Kip
Dean Sharpe
Dean Sharpe
Bartender
Josh Groban
Josh Groban
Waiter
Emo Philips
Emo Philips
Salvador Dali
Jack Lancaster
Jack Lancaster
Jim
Andrew Steven Hernandez
Andrew Steven Hernandez
Robbie
Constantine Rousouli
Constantine Rousouli
Cone-Bra Dancer #1
Richard Aaron Anderson
Richard Aaron Anderson
Young Al
Jeremy Bolm
Jeremy Bolm
Jeremy Barf
Eric Appel
Eric Appel
Captain Buffoon (voice)

Images

Weird: The Al Yankovic Story Poster
Weird: The Al Yankovic Story Poster

Detailed Information

General Information

Original Title: Weird: The Al Yankovic Story

Creators: Hwang Dong-hyuk

Gender: Music, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $12,000,000.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/928344

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

PHP com cURL

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

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

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

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