Skip to content

Instantly share code, notes, and snippets.

@fnz
fnz / gist:2bb35f825b237eb7fa1f
Created February 24, 2016 09:25
Create a time lapse from a set of JPG files
ffmpeg -f image2 -r 24 -pattern_type glob -i '*.JPG' -c:v libx264 -pix_fmt yuv420p out.mp4
@fnz
fnz / build_clang.sh
Created August 22, 2014 13:36
Bash scripts for automated downloading, updating and building a release version of llvm, clang and libcxx
#!/bin/bash
CURDIR=$(pwd)/
LLVMDIR=${CURDIR}/llvm
CLANGDIR=${LLVMDIR}/tools/clang
RTDIR=${LLVMDIR}/projects/compiler-rt
BUILDDIR=${CURDIR}/build
LIBCXXDIR=${CURDIR}/libcxx
mkdir ${BUILDDIR}