Merge pull request #433 from 372046933/patch-1

Fix typo in _run.py docstring
This commit is contained in:
Davide Depau 2020-12-13 05:24:28 +01:00 committed by GitHub
commit 80e99cbb38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -233,7 +233,7 @@ def run_async(
process = (
ffmpeg
.input(in_filename)
.output('pipe':, format='rawvideo', pix_fmt='rgb24')
.output('pipe:', format='rawvideo', pix_fmt='rgb24')
.run_async(pipe_stdout=True, pipe_stderr=True)
)
out, err = process.communicate()