diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 61b91ef73..ae5991d3a 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -390,13 +390,14 @@ def melt_frame_cmd(video, frame, position, height=128, info=None): video, 'in=%d' % position, 'out=%d' % position, '-consumer', 'avformat:%s' % frame, - 'vcodec=%s' % vcodec + 'vcodec=%s' % vcodec, + 'progressive=1' ] if height: dar = AspectRatio(info['video'][0]['display_aspect_ratio']) width = int(dar * height) width += width % 2 - cmd += ['-s', '%sx%s' % (width, height)] + cmd += ['s=%sx%s' % (width, height)] return cmd def frame_direct(video, target, position):