From 3d4bb39d98d4259da3984ccb28607c26ee79236e Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sun, 6 Jul 2008 19:27:49 +0200 Subject: [PATCH] disable subtitles on stills --- oxdbarchive/extract.py | 1 + 1 file changed, 1 insertion(+) diff --git a/oxdbarchive/extract.py b/oxdbarchive/extract.py index 0a57f0b..837d037 100644 --- a/oxdbarchive/extract.py +++ b/oxdbarchive/extract.py @@ -139,6 +139,7 @@ def extract_frame(movie_file, timestamp, img_folder, width=128, offset = 0, redo timestamp_in_file = timestamp if os.path.exists(movie_file): mplayer_options = '' + mplayer_options += ' -noautosub' mplayer_options += ' "%s"' % movie_file.replace('"', '\"') mplayer_options += " -ss '%s' -frames 2" % (timestamp_in_file) mplayer_options += " -vo jpeg:quality=90 "