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

Commit

Permalink
Merge pull request #306 from gnes-ai/fix-ffmpeg
Browse files Browse the repository at this point in the history
fix(ffmpeg-threads): threads=0
  • Loading branch information
mergify[bot] authored Sep 29, 2019
2 parents 4dcf6d0 + 47add70 commit 83f96d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnes/preprocessor/io_utils/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def compile_args(input_fn: str = 'pipe:',
"""Wrapper for various `FFmpeg <https://www.ffmpeg.org/>`_ related applications (ffmpeg,
ffprobe).
"""
args = ['ffmpeg', '-threads', '1']
args = ['ffmpeg', '-threads', '0']

input_args = []
fmt = input_options.pop('format', None)
Expand Down

0 comments on commit 83f96d9

Please sign in to comment.