23 votes

All Futurama opening quotes

3 comments

  1. JXM
    Link
    I’ve always enjoyed the “Bender’s humor by Microsoft Joke” one, especially since they used the old 90s Microsoft font. I also love the “Hey TiVo, suggest this!” It’s very of its time.

    I’ve always enjoyed the “Bender’s humor by Microsoft Joke” one, especially since they used the old 90s Microsoft font.

    I also love the “Hey TiVo, suggest this!” It’s very of its time.

    2 votes
  2. FrillsofTilde
    Link
    Featuring a new invisible character who doesn't speak is I think fav

    Featuring a new invisible character who doesn't speak is I think fav

    1 vote
  3. tomf
    Link
    You could probably do this quickly if the intro is consistent -- at least by season #!/bin/bash mkdir quotes; for i in *.mkv; do echo $i; ffmpeg -i "$i" -ss 00:02:01 -vframes 1 -q:v 2...

    You could probably do this quickly if the intro is consistent -- at least by season

    #!/bin/bash
    mkdir quotes;
    for i in *.mkv;
     do echo $i;
      ffmpeg -i "$i" -ss 00:02:01 -vframes 1 -q:v 2 "quotes/${i%}.png";
     done