diff options
author | Chocobozzz <me@florianbigard.com> | 2023-05-05 10:53:04 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2023-05-09 08:57:34 +0200 |
commit | e7d8e2b245491c0a8e008fb570037506d729ff04 (patch) | |
tree | d850a7f82cc02946f2e87b306d0b281cef5eb73d /server/helpers | |
parent | dd3f99434cc3cb7226d33ffcd888c91d0ce150a9 (diff) | |
download | PeerTube-e7d8e2b245491c0a8e008fb570037506d729ff04.tar.gz PeerTube-e7d8e2b245491c0a8e008fb570037506d729ff04.tar.zst PeerTube-e7d8e2b245491c0a8e008fb570037506d729ff04.zip |
Fix audio transcoding copy
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/ffmpeg/ffmpeg-options.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/ffmpeg/ffmpeg-options.ts b/server/helpers/ffmpeg/ffmpeg-options.ts index db6350d39..64d7c4179 100644 --- a/server/helpers/ffmpeg/ffmpeg-options.ts +++ b/server/helpers/ffmpeg/ffmpeg-options.ts | |||
@@ -11,7 +11,7 @@ export function getFFmpegCommandWrapperOptions (type: CommandType, availableEnco | |||
11 | availableEncoders, | 11 | availableEncoders, |
12 | profile: getProfile(type), | 12 | profile: getProfile(type), |
13 | 13 | ||
14 | niceness: FFMPEG_NICE[type], | 14 | niceness: FFMPEG_NICE[type.toUpperCase()], |
15 | tmpDirectory: CONFIG.STORAGE.TMP_DIR, | 15 | tmpDirectory: CONFIG.STORAGE.TMP_DIR, |
16 | threads: getThreads(type), | 16 | threads: getThreads(type), |
17 | 17 | ||