This commit is contained in:
j 2007-07-25 10:35:48 +00:00
parent 4ae9ca5836
commit 49fd4d082e

View file

@ -153,6 +153,9 @@ if __name__ == "__main__":
import sys import sys
height = 128 height = 128
inputFile = sys.argv[1] inputFile = sys.argv[1]
#mov is broken somehow
if inputFile.endswith('.mov'):
sys.exit()
outputFile = sys.argv[2] outputFile = sys.argv[2]
offset = int(float(sys.argv[3]) * gst.MSECOND) offset = int(float(sys.argv[3]) * gst.MSECOND)
f = PosterStill(inputFile, outputFile, offset, height) f = PosterStill(inputFile, outputFile, offset, height)