mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
#4: print ffmpeg version
This commit is contained in:
parent
4fe531f472
commit
a32ba18809
@ -1,5 +1,7 @@
|
|||||||
|
|
||||||
import ffmpeg
|
import ffmpeg
|
||||||
import os
|
import os
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
TEST_DIR = os.path.dirname(__file__)
|
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')
|
TEST_OUTPUT_FILE = os.path.join(SAMPLE_DATA_DIR, 'dummy2.mp4')
|
||||||
|
|
||||||
|
|
||||||
|
print(subprocess.check_call(['-version']))
|
||||||
|
|
||||||
|
|
||||||
def test_fluent_equality():
|
def test_fluent_equality():
|
||||||
base1 = ffmpeg.file_input('dummy1.mp4')
|
base1 = ffmpeg.file_input('dummy1.mp4')
|
||||||
base2 = ffmpeg.file_input('dummy1.mp4')
|
base2 = ffmpeg.file_input('dummy1.mp4')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user