From 0c3bfaa7920eb56702eb23202580469dd1b135a1 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 4 Jan 2012 23:08:38 +0530 Subject: [PATCH] use vf for scale and add hqdn3d for derivatives --- pandora/archive/extract.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 45d013d6..23236ff2 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -121,11 +121,10 @@ def stream(video, target, profile, info): aspect = '%s:%s' % (width, height) video_settings = [ - '-vb', '%dk'%bitrate, '-g', '%d' % int(fps*2), - '-keyint_min', '%d' % int(fps), - '-s', '%dx%d'%(width, height), + '-vb', '%dk'%bitrate, '-aspect', aspect, #'-vf', 'yadif', + '-vf', 'hqdn3d,scale=%s:%s'%(width, height), ] if format == 'mp4':