view lightsim/caplight @ 910:3a15fb921b9c

more tripleFilter speedups. accept Decimals coming in from n3 files, which happens with the 2012 code Ignore-this: 5a63ec4776bf9c4ffc3d6b4f20242ac0
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 10 Jun 2013 09:52:15 +0000
parents 45b12307c695
children
line wrap: on
line source

#!/bin/zsh

# grabs a DV frame and converts to ppm file named $1

dvgrab --format dv2 --frames 1 oneframe
dv2jpg oneframe001.avi oneframe.mjpeg
rm oneframe001.avi
lavtrans -f i -o oneframe.jpg oneframe.mjpeg
djpeg oneframe.jpg > $1
rm oneframe.*