"bcl" wrote:
I already have most of that working. The new system serves up the XML based on database entries. You rescan the source media directories to update the list. I currently don't have bif file generation integrated into it since it is such a long running process.
sudo port install ffmpegand a little while later I had ffmpeg. I did need to modify the top line to read "/usr/bin/env" instead of just "/bin/env" ... but other than that, it runs fine. You are right though, its producing a squished image. My source is "widescreen" (but far from HD).
--- makebif.py.orig 2010-01-26 10:06:47.000000000 -0800
+++ makebif.py 2010-01-26 10:07:05.000000000 -0800
@@ -115,7 +115,7 @@
imageIndex += statinfo.st_size
f.write(struct.pack("<I1", 0xffffffff))
- f.write(struct.pack("<I1", imageIndex + 1))
+ f.write(struct.pack("<I1", imageIndex))
# Now copy the images
for image in images: