Skip to content

Instantly share code, notes, and snippets.

@trikitrok
trikitrok / double-video-speed
Created May 30, 2016 14:41 — forked from searls/double-video-speed
double video speed with this
#!/usr/bin/env bash
# Just 'brew install ffmpeg' first
set -e
INPUT=$1
OUTPUT=$2
ffmpeg -i "$INPUT" -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2[a]" -map "[v]" -map "[a]" "$OUTPUT"
@trikitrok
trikitrok / 0_reuse_code.js
Created June 17, 2014 18:03
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console