commit a7e500c86bbec0e2459b3c4ca93fef55d014d37e
parent d90d170932a9a5b5614593a45dc1742d1a934e50
Author: Brian C. Lane <bcl@brianlane.com>
Date:   Mon, 15 Mar 2010 21:13:34 -0700
Fix video format with makebif.py
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/server/scripts/makebif.py b/server/scripts/makebif.py
@@ -26,7 +26,7 @@ import shutil
 from optparse import OptionParser
 
 # for mode 0, 1, 2, 3
-videoSizes = ["320x240", "240x180", "320x180", "240x136"]
+videoSizes = ["240x180", "320x240", "240x136", "320x180"]
 
 # Extension to add to the file for mode 0, 1, 2, 3
 modeExtension = ['SD', 'HD', 'SD', 'HD']
@@ -103,7 +103,7 @@ def makeBIF( filename, directory, interval ):
 
     bifTableSize = 8 + (8 * len(images))
     imageIndex = 64 + bifTableSize
-    timestamp = 1
+    timestamp = 0
 
     # Get the length of each image
     for image in images: