Skip to content

Instantly share code, notes, and snippets.

(defparameter *camera*
(make-camera :resx 1024
:resy 1024
:location (make-vect :x 0.0 :y 2.0 :z 10.0)
:looking-at (make-vect :x 0.0 :y 0.0 :z 0.0)
:up-vector (make-vect :x 0.0 :y 1.0 :z 0.0)
:image-dist 7.0
:fov-x-min -2.0
:fov-x-max 2.0
:fov-y-min -2.0
@nowl
nowl / gist:823525
Created February 12, 2011 04:44
flv to ogg conversion script using mplayer and oggenc
#!/bin/sh
function do_conversion ()
{
echo "processing $FLV_FILE"
WAV_FILE="${FLV_FILE/.flv/.wav}"
if [ "$WAV_FILE" == "$FLV_FILE" ]; then
echo "filename does not end in .flv"