# HG changeset patch # User Robert McIntyre # Date 1346595609 18000 # Node ID 31128a10ee282e73029f6e840d3e93f516fc1cd3 # Parent 4503899241e65ee71810d4974f125298eea30230 use png to save memory. diff -r 4503899241e6 -r 31128a10ee28 clojure/com/aurellem/run/adv_choreo.clj --- a/clojure/com/aurellem/run/adv_choreo.clj Sun Sep 02 09:18:43 2012 -0500 +++ b/clojure/com/aurellem/run/adv_choreo.clj Sun Sep 02 09:20:09 2012 -0500 @@ -388,7 +388,7 @@ move-images (file-names (File. rendered-dir "moves")) screenshots (file-names (File. rendered-dir "frames")) targets (map #(.getCanonicalPath - (File. final-frames (format "%07d.bmp" %))) + (File. final-frames (format "%07d.png" %))) (range (count screenshots)))] (dorun (map diff -r 4503899241e6 -r 31128a10ee28 clojure/com/aurellem/run/basic_choreo.clj --- a/clojure/com/aurellem/run/basic_choreo.clj Sun Sep 02 09:18:43 2012 -0500 +++ b/clojure/com/aurellem/run/basic_choreo.clj Sun Sep 02 09:20:09 2012 -0500 @@ -107,7 +107,7 @@ screenshots (file-names (File. rendered-dir "frames")) ram-maps (file-names (File. rendered-dir "ram-map")) targets (map #(.getCanonicalPath - (File. final-frames (format "%07d.bmp" %))) + (File. final-frames (format "%07d.png" %))) (range (count screenshots)))] (dorun (map diff -r 4503899241e6 -r 31128a10ee28 clojure/com/aurellem/run/final_cut.clj --- a/clojure/com/aurellem/run/final_cut.clj Sun Sep 02 09:18:43 2012 -0500 +++ b/clojure/com/aurellem/run/final_cut.clj Sun Sep 02 09:20:09 2012 -0500 @@ -147,7 +147,7 @@ (clojure.java.shell/sh "ffmpeg" "-framerate" "60" - "-i" (str (.getCanonicalPath final) "/" "%07d.bmp") + "-i" (str (.getCanonicalPath final) "/" "%07d.png") "-i" (.getCanonicalPath final-audio) "-b:a" "128k" "-b:v" "9000k"