#4: print ffmpeg version

This commit is contained in:
Karl Kroening 2017-05-25 15:23:17 -10:00
parent 4fe531f472
commit a32ba18809

View File

@ -1,5 +1,7 @@
import ffmpeg
import os
import subprocess
TEST_DIR = os.path.dirname(__file__)
@ -9,6 +11,9 @@ TEST_OVERLAY_FILE = os.path.join(SAMPLE_DATA_DIR, 'overlay.png')
TEST_OUTPUT_FILE = os.path.join(SAMPLE_DATA_DIR, 'dummy2.mp4')
print(subprocess.check_call(['-version']))
def test_fluent_equality():
base1 = ffmpeg.file_input('dummy1.mp4')
base2 = ffmpeg.file_input('dummy1.mp4')