Skip to content

Instantly share code, notes, and snippets.

View matth's full-sized avatar

Matt Haynes matth

  • BBC
  • United Kingdom
View GitHub Profile
command: rake test gem:build gem:push
@matth
matth / xbox_convert
Last active December 15, 2015 23:28
Convert video to a format that xbox actaully plays, requires ffmpeg, bash, linux / mac
#!/bin/bash
set -e
if [ $# -ne 1 ] || [ ! -f $1 ]; then
echo "usage: `basename $0` file"
exit 1
fi
input=$1