From 49fd4d082ec8b284e6f347052c0d65c733d9bdb7 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 25 Jul 2007 10:35:48 +0000 Subject: [PATCH] +x --- oxdbarchive/tools/extract_poster_still.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oxdbarchive/tools/extract_poster_still.py b/oxdbarchive/tools/extract_poster_still.py index ea45220..79d6c6a 100644 --- a/oxdbarchive/tools/extract_poster_still.py +++ b/oxdbarchive/tools/extract_poster_still.py @@ -153,6 +153,9 @@ if __name__ == "__main__": import sys height = 128 inputFile = sys.argv[1] + #mov is broken somehow + if inputFile.endswith('.mov'): + sys.exit() outputFile = sys.argv[2] offset = int(float(sys.argv[3]) * gst.MSECOND) f = PosterStill(inputFile, outputFile, offset, height)