Skip to content

Instantly share code, notes, and snippets.

View fukawi2's full-sized avatar

Phillip Smith fukawi2

View GitHub Profile
@fukawi2
fukawi2 / google-earth-studio-ffmpeg.sh
Created September 2, 2019 01:56 — forked from daz/google-earth-studio-ffmpeg.sh
Google Earth Studio stitch image sequence with FFmpeg
#!/bin/bash
set -eu
FRAMERATE="$1"
ffmpeg -framerate $FRAMERATE -pattern_type glob -i '*.jpeg' -c:v libx264 -pix_fmt yuv420p output.mp4
@fukawi2
fukawi2 / gist:3e6fcc398249a34a5c52a90dc9bfcd17
Last active September 14, 2018 05:07 — forked from natsu90/gist:6787b254929355c34e63
Installing PDO Informix
1. Installing Informix Client SDK for Linux x86_64
1.1 Download Informix Client SDK 3.70 for Linux x86_64 from IBM website, https://www-01.ibm.com/marketing/iwm/tnd/search.jsp?rs=ifxdl
1.2 Extract the file, `tar -xvf clientsdk.3.70.FC8DE.LINUX.tar`
1.3 Start installation, `./installclientsdk`, install all to `/opt/infomrix`
2. Installing PDO Informix
@fukawi2
fukawi2 / exifpic.pl
Created February 18, 2013 03:36 — forked from pjf/exifpic.pl
# /usr/bin/perl -w
use 5.010;
use strict;
use warnings;
use threads;
use Thread::Queue;
use autodie qw(:all);
use Image::ExifTool qw(ImageInfo);
use Data::Dumper;
use Imager;