This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Send push notification when doorbell rings | |
# using Tinkerforge Industrial Digital In 4 Bricklet | |
# | |
# License: CC BY-SA 3.0 | |
# Based on http://www.tinkerforge.com/de/doc/Kits/HardwareHacking/DoorbellNotifier_Python.html | |
# | |
# The following changes were made: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Converts all GIF files in the current folder and its subfolders to MP4 files | |
# so they can be used in applications that don't support animated GIFs | |
# requires ffmpeg >= 1.2 | |
# target format: H.264 baseline, level 3.0 @ 30 fps | |
width=320 | |
height=240 |
NewerOlder