Fix typo in _run.py docstring

This commit is contained in:
372046933 2020-10-15 17:18:00 +08:00 committed by taoxu
parent 4cb7d26f55
commit 861b453b43

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()