Dial:
**61*101**[seconds in 5s increments]#
And press call
javascript:(function()%7B%24('.track__buttons__play').css('opacity'%2C1)%7D)() |
youtube-dl -f251 "[URL]" -o - | ffmpeg -i pipe: -strict -2 out.mp3 |
ffmpeg -f lavfi -i anullsrc=r=11025:cl=mono -t <number of seconds> -acodec aac out.m4a |
for i in *.mp4; do ffmpeg -i "$i" -c:v copy "_${i%.mp4}.mp4"; done |
""" FLIRjpg2HDF5 | |
reads raw thermal images from a FLIR-camera JPG image series | |
and stores them in a HDF5 file - using exiftool """ | |
import glob | |
import os | |
import subprocess | |
import PIL.Image | |
import numpy as np |
#------------------------------------------------------------------------------ | |
# File: FLIR.pm | |
# | |
# Description: Read FLIR meta information | |
# | |
# Revisions: 2013/03/28 - P. Harvey Created | |
# | |
# References: 1) http://u88.n24.queensu.ca/exiftool/forum/index.php/topic,4898.0.html | |
# 2) http://www.nuage.ch/site/flir-i7-some-analysis/ | |
# 3) http://www.workswell.cz/manuals/flir/hardware/A3xx_and_A6xx_models/Streaming_format_ThermoVision.pdf |
highlighted = $('.highlighted'); | |
for (var i = 0; i < highlighted.length; i++) { | |
highlighted[i].remove(); | |
} | |
photos = $('.photo'); | |
for (var i = 0; i < 100; i++) { | |
photos[i].className = photos[i].className + ' highlighted'; | |
} |
// This isn't needed with official Arduino app | |
#include <SPI.h> | |
#include <SD.h> | |
File file; | |
void setup() { | |
Serial.begin(9600); | |
delay(50); |
sudo npm uninstall -g homebridge | |
sudo npm uninstall -g homebridge-lifx-lan | |
sudo npm install -g --unsafe-perm homebridge | |
sudo npm install -g homebridge-lifx-lan | |
cat << 'JSON' > ~/.homebridge/config.json | |
{ | |
"bridge": { | |
"name": "Homebridge", | |
"username": "CC:22:3D:E3:CE:30", |