From 8be5c773d095bd2942090a425de1ec0af619ea5f Mon Sep 17 00:00:00 2001 From: Clement Champetier Date: Tue, 19 Jul 2016 09:26:38 +0200 Subject: [PATCH] pyTest: fixed testEProcessMethodShortest * Develop branch was broken since PR #268. * The test was badly writen, because we would like to test the duration of streams with one video and one audio (we had 2 video with 24/25fps before this commit). --- test/pyTest/testEProcessMethod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pyTest/testEProcessMethod.py b/test/pyTest/testEProcessMethod.py index 4fee610f..62e4c80a 100644 --- a/test/pyTest/testEProcessMethod.py +++ b/test/pyTest/testEProcessMethod.py @@ -28,7 +28,7 @@ def testEProcessMethodShortest(): transcoder.setProcessMethod( av.eProcessMethodShortest ) transcoder.add( inputFileName_longest, 0 ) - transcoder.add( inputFileName_shortest, 0 ) + transcoder.add( inputFileName_shortest, 1 ) progress = av.ConsoleProgress() transcoder.process( progress )