Severe #Hydrogen impact on #climate.

We learnt this at university in the 90ies, but big money does not listen. Steam from water, vapor, mist are much more greenhouse gas than others. Especially on local levels, like urban micro climate (think of a million cars steaming water in the air) but also on higher layers. Read this. ATM there’s no valid path around public transport and electric vehicles. Good-bye, privately owned combustion engine. That includes fuel cells.

“we have also considered, for the first time, previously ignored changes in stratospheric [that is, in the second-lowest layer of the atmosphere] water vapour and stratospheric ozone in our calculations of hydrogen’s GWP,” “

https://www.rechargenews.com/energy-transition/hydrogen-twice-as-powerful-a-greenhouse-gas-as-thought-before-uk-government-study/2-1-1200115

Setting up four monitors on a Linux laptop via script

Although KDE discovers the three external monitors and the built-in display perfectly, I need this alias sometimes because the thunderbolt doc gets confused when I change the laptop attached to it: 

#:~> alias monitors
alias monitors=’xrandr –output eDP –output DisplayPort-1 –output DisplayPort-2 –off –output DisplayPort-3 –off –output HDMA-A-0 –off; xrandr –output DisplayPort-3 –mode 1920×1080 –output DisplayPort-1 –primary –mode 1920×1080 –right-of DisplayPort-3 –output HDMI-A-0 –mode 1920×1080 –right-of DisplayPort-1 –output eDP –mode 1920×1080 –below HDMI-A-0′
#:~>

(Yes, it’s an L-shaped Setup on my desktop)

#bipbip the #lucaapp remix loop (12” version 10:00)

#bip, #bipbip, #bipbipbip, #loop. Mit ffmpeg rumspielen, schabernack. Aber gerade die 10-Minuten-Dauerbeschallung ist so realitätsnah, irgendwie. #zusammenrottung. 

Hier die Videos, die Anleitung steht unten: 

BIP:

BIPBIP:

BIPBIPBIP:

BIPLOOP:

Bash HOWTO:

Die Schöpfungshöhe ist ja fragwürdig, bei dem hier, weil das unter #Linux so einfach geht. Erstmal habe ich den mit meinen GEZ-Geldern finanzierten, von den steuerfinanzierten Luca-App-Machern auf Youtube veröffentlichten Quelltext heruntergeladen. Ja, da ist noch ein wenig Overhead in Form von Bildern dabei, aber die entfernen wir später: 

mfeilner@:~> youtube-dl “ytsearch:Smudo Luca Maischberger Woche”     
[download] Downloading playlist: Smudo Luca Maischberger Woche
[youtube:search] query “Smudo Luca Maischberger Woche”: Downloading page 1
[youtube:search] playlist Smudo Luca Maischberger Woche: Downloading 1 videos
[download] Downloading video 1 of 1
[youtube] r66-5cDbNAE: Downloading webpage
[youtube] r66-5cDbNAE: Downloading MPD manifest
WARNING: Requested formats are incompatible for merge and will be merged into mkv.
[download] Smudo über Luca bei Maischberger Die Woche am 25.11.2020-r66-5cDbNAE.mkv has already been downloaded and merged
[download] Finished downloading playlist: Smudo Luca Maischberger Woche
mfeilner@al-khwarizmi:~>

Ups, das hatte ich ja schon runtergeladen. 😉 Habt Ihr gesehen, wie die Lucas auch dort alle Kommentare ausgeschalten haben? Da waren wohl wütende Opfer Kunden dabei?
Ok, dann den richtigen Ausschnitt ausschneiden: 2:32 bis 2:33:

ffmpeg -i Smudo\ über\ Luca\ bei\ Maischberger\ Die\ Woche\ am\ 25.11.2020-r66-5cDbNAE.mkv -ss 00:02:32 -to 00:02:33 -c copy bib-raw.mp4

Und im zweiten Nachgang genauer zuschneiden:

ffmpeg -i bip-raw.mp4 -ss 0.2 -to 0.4 -c copy bip.mp4

Aber so ein alleinestehender “Bip” ist doch langweilig, machen wir doch einen #bipbip, einen #bipbipbip und eine 10-Minuten-Loop daraus. 

cp bip.mp4 bip1.mp4; ls bip*mp4 > files.txt; ffmpeg -f concat -safe 0 -i files.txt -movflags faststart -c copy bipbip.mp4

cp bip.mp4 bip2.mp4; ls bip*mp4 > files.txt; ffmpeg -f concat -safe 0 -i files.txt -movflags faststart -c copy bipbipbip.mp4

Und dann machen wir mal 10 Minuten bipbip mit Fade-In und Fade-Out:

fmpeg -stream_loop 1485 -f concat -safe 0 -i fileList.txt -movflags faststart -c copy loop1.mp4

ffmpeg -i loop1.mp4 -af afade=t=in:st=0:d=5,afade=t=out:st=590:d=10 loop.mp4

Und jetzt? Das hält doch keiner aus. Genau wie bei der #lucaapp.

Disclaimer: Dies ist Lernmaterial aus einem ffmpeg / Linux-Kommandozeilen-Kurs.