Produktionen

Selbstgemachtes, Projekt-Dokumentationen, Texte und Arbeiten

DIY Surveillance Camera Recording

my crontab: # start recording on boot @reboot sleep 10; /usr/local/bin/startrecord.sh &> /dev/null # restart every 10 minutes to create a new file */10 * * * * killall ffmpeg ; sleep 5 ; /usr/local/bin/startrecord.sh &> /dev/null # purge old recordings 0 */6 * * * find /data/office-kamera -type f -mtime +12 -delete /usr/local/bin/startrecord.sh #!/bin/bash […]

DIY Surveillance Camera Recording Read More »

Xiaomi Robot Vacuum 4S2P DIY Battery Pack Repair

My Xiaomi Robot (V1) just sporadically shut down after around 20 Minutes of cleaning, stating „Error 14“. I looked it up, and Error 14 stands for battery malfunction. Since i own a lot of 18650 battery packs I’m able to build my own battery from old laptop battery 18650s, so I decided to upload the

Xiaomi Robot Vacuum 4S2P DIY Battery Pack Repair Read More »

Gentoo Linux working on an SGI Octane – with Xorg and Audio!

UPDATE: gentoo/octane is released. CLICK HERE! Gentoo Linux on an SGI Octane R12000 with working hardware accelerated graphics driver, audio, and even Software RAID 😉 I should be the only person on the planet running this system right now. If you want a copy of the system or would like to know how it’s done,

Gentoo Linux working on an SGI Octane – with Xorg and Audio! Read More »

Spacewalk Client for Ubuntu 18.04 / bionic

You have to roll your own: for shizzle in \ bionic/apt-spacewalk \ bionic/python-ethtool \ bionic/rhn-client-tools \ bionic/rhnlib \ bionic/rhnsd \ ; do cd $shizzle && debuild -uc -us ; \ cd ../../ done I uploaded some binary packages (.deb) which work for me ™: spacewalk-client-bionic.zip (This was originally uploaded for https://www.redhat.com/archives/spacewalk-list/2018-May/msg00009.html ) EDIT: If you are

Spacewalk Client for Ubuntu 18.04 / bionic Read More »

How often can you crash your FPV race quads in one weekend?

We went out to fly,  and this time there really was a lot of crashing involved. That’s just the way it’s supposed to be if you’re learning to fly, I guess. Especially if you’re trying to pass things with as little distance as as possible, flying proximity, and if you max out the physics of

How often can you crash your FPV race quads in one weekend? Read More »

Mit Linux und ffmpeg zu Youtube streamen

VBR=“3500k“ # bitrate FPS=“30″ # framerate KEYFRAMEINT=“40″ # keyframe interval QUAL=“medium“ # ffpmeg quality preset YOUTUBE_URL=“rtmp://a.rtmp.youtube.com/live2″ # youtube rtmp url KEY=“XXXX-XXXX-XXXX-XXXX“ sudo modprobe snd_aloop alsactl restore while true do ffmpeg -err_detect explode -thread_queue_size 16384 \ -f alsa -ac 2 -i pulse \ -f v4l2 -video_size 864×480 -thread_queue_size 16384 -i /dev/video1 -deinterlace \ \ -vcodec libx264

Mit Linux und ffmpeg zu Youtube streamen Read More »

Liveset/Mitschnitt mit Audacity normalisieren und komprimieren – schnell und einfach

Wer kennt das nicht – Mitschnitt bekommen oder selbst gemacht von der letzten Party, aber irgendwie fehlt der Druck. Es ist auch am Anfang leise, am Ende lauter, weil der DJ mal wieder den Gain Stück für Stück lauter gezogen hat… Normalisiert man einfach nur, sind bestimmte Passagen des Mixes immer noch ziemlich leise. Und der Druck

Liveset/Mitschnitt mit Audacity normalisieren und komprimieren – schnell und einfach Read More »

Setzen der MTU-Größe für L2TP/IPSEC/PPTP VPN unter Ubuntu 13.04 mit Network-Manager

Bei der VPN-Konfiguration meines Notebooks (Verbindung zu einem CentOS L2TP/IPSEC VPN Gateway) kam es zu gräßlichen, einen schier in den Wahnsinn treibenden Verbindungsproblemen. Nachdem ich mit sudo ifconfig ppp0 mtu xxxx den korrekten MTU-Wert mehr oder minder erraten hatte (bei mit war das 1200), wollte ich die Änderung permanent machen, also nach dem Verbindungsaufbau automatisch

Setzen der MTU-Größe für L2TP/IPSEC/PPTP VPN unter Ubuntu 13.04 mit Network-Manager Read More »

Nach oben scrollen