diff options
author | Chocobozzz <me@florianbigard.com> | 2021-01-27 09:09:59 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-01-27 09:09:59 +0100 |
commit | a4a8cd39712c59119ad0be5cd584b158f06c5852 (patch) | |
tree | 9633e393153e1b5d0bde6d5b56f3410acea969f9 | |
parent | 5d84d717b246e7f6bed998481c817dc29e5c4948 (diff) | |
download | PeerTube-a4a8cd39712c59119ad0be5cd584b158f06c5852.tar.gz PeerTube-a4a8cd39712c59119ad0be5cd584b158f06c5852.tar.zst PeerTube-a4a8cd39712c59119ad0be5cd584b158f06c5852.zip |
Add missing niceness to ffmpeg thumbnail processes
-rw-r--r-- | server/helpers/ffmpeg-utils.ts | 4 | ||||
-rw-r--r-- | server/initializers/constants.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/server/helpers/ffmpeg-utils.ts b/server/helpers/ffmpeg-utils.ts index a4d02908d..f85b9f316 100644 --- a/server/helpers/ffmpeg-utils.ts +++ b/server/helpers/ffmpeg-utils.ts | |||
@@ -56,7 +56,7 @@ export type AvailableEncoders = { | |||
56 | // --------------------------------------------------------------------------- | 56 | // --------------------------------------------------------------------------- |
57 | 57 | ||
58 | function convertWebPToJPG (path: string, destination: string): Promise<void> { | 58 | function convertWebPToJPG (path: string, destination: string): Promise<void> { |
59 | const command = ffmpeg(path) | 59 | const command = ffmpeg(path, { niceness: FFMPEG_NICE.THUMBNAIL }) |
60 | .output(destination) | 60 | .output(destination) |
61 | 61 | ||
62 | return runCommand(command) | 62 | return runCommand(command) |
@@ -67,7 +67,7 @@ function processGIF ( | |||
67 | destination: string, | 67 | destination: string, |
68 | newSize: { width: number, height: number } | 68 | newSize: { width: number, height: number } |
69 | ): Promise<void> { | 69 | ): Promise<void> { |
70 | const command = ffmpeg(path) | 70 | const command = ffmpeg(path, { niceness: FFMPEG_NICE.THUMBNAIL }) |
71 | .fps(20) | 71 | .fps(20) |
72 | .size(`${newSize.width}x${newSize.height}`) | 72 | .size(`${newSize.width}x${newSize.height}`) |
73 | .output(destination) | 73 | .output(destination) |
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 0b4b41273..a78a66d78 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -362,8 +362,8 @@ const VIDEO_RATE_TYPES: { [ id: string ]: VideoRateType } = { | |||
362 | const FFMPEG_NICE: { [ id: string ]: number } = { | 362 | const FFMPEG_NICE: { [ id: string ]: number } = { |
363 | // parent process defaults to niceness = 0 | 363 | // parent process defaults to niceness = 0 |
364 | // reminder: lower = higher priority, max value is 19, lowest is -20 | 364 | // reminder: lower = higher priority, max value is 19, lowest is -20 |
365 | THUMBNAIL: 2, // low value in order to avoid blocking server | 365 | LIVE: 5, // prioritize over VOD and THUMBNAIL |
366 | LIVE: 9, // prioritize over VOD | 366 | THUMBNAIL: 10, |
367 | VOD: 15 | 367 | VOD: 15 |
368 | } | 368 | } |
369 | 369 | ||