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

Commit

Permalink
fix(ffmpeg): use -threads = 1 for ffmpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
felix committed Sep 27, 2019
1 parent 5127395 commit f6c263a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnes/preprocessor/io_utils/ffmpeg.py
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']
args = ['ffmpeg', '-threads', '1']

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

0 comments on commit f6c263a

Please sign in to comment.