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.
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
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.
Featuring a new invisible character who doesn't speak is I think fav
You could probably do this quickly if the intro is consistent -- at least by season