diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/ffmpeg-utils.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/helpers/ffmpeg-utils.ts b/server/helpers/ffmpeg-utils.ts index f0e2c0af5..c170fc1a8 100644 --- a/server/helpers/ffmpeg-utils.ts +++ b/server/helpers/ffmpeg-utils.ts | |||
@@ -86,8 +86,10 @@ function transcode (options: TranscodeOptions) { | |||
86 | return new Promise<void>(async (res, rej) => { | 86 | return new Promise<void>(async (res, rej) => { |
87 | let command = ffmpeg(options.inputPath, { 'niceness': FFMPEG_NICE.TRANSCODING }) | 87 | let command = ffmpeg(options.inputPath, { 'niceness': FFMPEG_NICE.TRANSCODING }) |
88 | .output(options.outputPath) | 88 | .output(options.outputPath) |
89 | .outputOption('-threads ' + CONFIG.TRANSCODING.THREADS) | ||
90 | .preset(standard) | 89 | .preset(standard) |
90 | if (CONFIG.TRANSCODING.THREADS > 0) { | ||
91 | command.outputOption('-threads ' + CONFIG.TRANSCODING.THREADS) // if we don't set any threads ffmpeg will chose automatically | ||
92 | } | ||
91 | 93 | ||
92 | let fps = await getVideoFileFPS(options.inputPath) | 94 | let fps = await getVideoFileFPS(options.inputPath) |
93 | if (options.resolution !== undefined) { | 95 | if (options.resolution !== undefined) { |