FFmpeg chromakey filter / Filthy Frank


Colour keying was available in FFmpeg since 2.8, but a 'chromakey' filter was included with the recent release of version 3.0. https://twitter.com/oioiiooixiii/status/704052912687878144

# Basic FFmpeg chromakey filter command - see also: 'colorkey'

ffmpeg \
   -i baselayer.mkv \
   -i overlay.mkv \
   -filter_complex \
      "[1:v]chromakey=green:0.1:0.5[keyed];\
       [0:v][keyed]overlay[out]" \
   -map "[out]" \
   output.mkv



100 layers of "Filthy Frank"

info: https://ffmpeg.org/ffmpeg-filters.html#chromakey
further info: https://ffmpeg.org/ffmpeg-filters.html#colorkey
source video: http://www.filthyfrank.net/

Gravitational 'Weave'

An animation of David Reitze, where his hair moves back and forth, highlighting it's dodgy wig-like appearance.


After ITAR-TASS reporter Андрей Ситов (Andrei Sitov) congratulated them on their work, and asked about any involvement with Russia, the science folks scrambled around like someone just threw a stink bomb on stage #BooRussia


The LIGO people were also very touchy when asked about how quickly they happened upon the results. It reminds me of that story about how it took Australian scientists 17 years to discover "alien" radio signals were caused by a dodgy microwave oven in the kitchen.¹



Incidentally: Rip Torn, I mean Kip Thorne, has a particular verbal tic, reminiscent of Ali G - "gravitational waves... Ayyyy".

¹  https://www.reddit.com/r/worldnews/comments/34zejv/after_17_years_of_fruitlessly_searching_the/
info: https://en.wikipedia.org/wiki/LIGO
source video: https://youtu.be/_582rU6neLc?t=50m42s

Patriarch Кирилл (Kirill) meets Pope Francis

A picture of Patriarch Kirill meeting Pope Francis, in the style of a 2008 Obama 'HOPE' poster

The first time in 1000 years! Such Hope! Such Joy! Change! Hallelujah! Immanentise the Rapture...

EvilSpeak


alias evilspeak="cat /dev/urandom \
| espeak -s 60 --stdout \
| ffplay - -af aformat=channel_layouts=1c,asetrate=16000,aecho=0.8:0.9:1052"

The alias name comes from a play on the name of the command "espeak", as well as the title of a 1981 film, starring Clint Howard, a bullied military student who begins to communicate with a demonic entity, through a computer (Apple II).



imdb: http://www.imdb.com/title/tt0082346/
espeak: http://espeak.sourceforge.net/

HTML Tags for Encapsulating Code in Blog Posts

<span style="font-family: "courier new" , "courier" , monospace;"><pre style="background-color: #eeeeee; border: 1px dashed rgb(153 , 153 , 153); color: black; font-size: 12px; line-height: 14px; overflow: auto; padding: 5px; white-space: pre-wrap; width: 620px; word-wrap: break-word;">

---> TEXT <---- 

</span></pre>
The HTML [currently] used for encapsulating and displaying code on this blog.


UPDATE: Now obsolete - 10th March 2015

Replaced with global CSS

pre.bash 
{
   width: 628px; 
   background-color: #ffffff;
   border: solid #292929;
   border-width: 1px 1px 1px 8px;
   border-radius: 3px;
   padding: 4px 4px 4px 4px;
   font-family: "Lucida Console", Monaco, monospace;
   color: #252525;
   font-size: 12px; 
   line-height: 14px;
   letter-spacing: .6px;
   overflow: auto;
   white-space: pre-wrap;
   word-wrap: break-word;
}