Skip to content
This repository was archived by the owner on Feb 22, 2020. It is now read-only.

Commit 83f96d9

Browse files
authored
Merge pull request #306 from gnes-ai/fix-ffmpeg
fix(ffmpeg-threads): threads=0
2 parents 4dcf6d0 + 47add70 commit 83f96d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gnes/preprocessor/io_utils/ffmpeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def compile_args(input_fn: str = 'pipe:',
8585
"""Wrapper for various `FFmpeg <https://www.ffmpeg.org/>`_ related applications (ffmpeg,
8686
ffprobe).
8787
"""
88-
args = ['ffmpeg', '-threads', '1']
88+
args = ['ffmpeg', '-threads', '0']
8989

9090
input_args = []
9191
fmt = input_options.pop('format', None)

0 commit comments

Comments
 (0)