Skip to content

Instantly share code, notes, and snippets.

View bastibeckr's full-sized avatar

Basti Becker bastibeckr

  • studio2010 GmbH
  • Munich, Germany
View GitHub Profile
@bastibeckr
bastibeckr / gist:230dc012ff0e4507d308
Created July 23, 2014 07:42
build bmdtools on mac
g++ -o bmdplay bmdplay.cpp ../../include/DeckLinkAPIDispatch.cpp `pkg-config --cflags libavcodec libavformat libswscale libavutil` -D__STDC_CONSTANT_MACROS -Wno-multichar -I ../../include -fno-rtti -g -framework CoreFoundation -DHAVE_CFSTRING `pkg-config --libs libavcodec libavformat libswscale libavutil` -lm -ldl -lpthread -framework CoreFoundation
@bastibeckr
bastibeckr / opengeodb orte in bayern
Created March 23, 2014 15:11
OpenGeoDB to list towns, districts, municipalities (in a state) with hierarchy (adm. region, rural district), zipcode and population count .
SELECT
/** Ort / Ortsteil */
ort_name.loc_id 'loc_id',
ort_name.text_val 'loc_name',
ort_level.text_val 'level',
ort_type.text_val 'typ',
/* ort_parent.text_val 'parent_id', */
ort_plz.text_val 'postleitzahl',
/* LEVEL6 */
hier.id_lvl6 'gemeinde_id',
@bastibeckr
bastibeckr / index.js
Created February 10, 2014 08:48
HTTP Proxy for Web Development
var http = require('http'),
httpProxy = require('http-proxy');
var options = {
target: 'http://domain.dev/',
headers: {
host: 'domain.dev'
}
}
@bastibeckr
bastibeckr / stream.sh
Last active September 5, 2016 18:12
Capture on Mac OSX from Blackmagic Ultrastudio to FFMPEG. Generate multiple HLS streams
bmdcapture -m 8 -C 0 -A 2 -V 4 -F nut -f pipe:1 | \
ffmpeg -y -i - \
-c:a libfaac -ac 2 -b:a 96k -ar 44100 -c:v libx264 -pix_fmt yuv420p -profile:v main -level 32 -b:v 1000K -f hls -hls_time 10 -hls_list_size 999 -vf "scale=1280:-1" -segment_list_flags +live 1280x720.m3u8 \
-c:a libfaac -ac 2 -b:a 96k -ar 44100 -c:v libx264 -pix_fmt yuv420p -profile:v main -level 32 -b:v 600K -f hls -hls_time 10 -hls_list_size 999 -vf "scale=720:-1" -segment_list_flags +live 720x405.m3u8