diff options
Diffstat (limited to 'server/lib/job-queue/handlers')
-rw-r--r-- | server/lib/job-queue/handlers/video-studio-edition.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/lib/job-queue/handlers/video-studio-edition.ts b/server/lib/job-queue/handlers/video-studio-edition.ts index 23f9a34cc..3e208d83d 100644 --- a/server/lib/job-queue/handlers/video-studio-edition.ts +++ b/server/lib/job-queue/handlers/video-studio-edition.ts | |||
@@ -164,7 +164,10 @@ function processCut (options: TaskProcessorOptions<VideoStudioTaskCutPayload>) { | |||
164 | ...pick(options, [ 'inputPath', 'outputPath' ]), | 164 | ...pick(options, [ 'inputPath', 'outputPath' ]), |
165 | 165 | ||
166 | start: task.options.start, | 166 | start: task.options.start, |
167 | end: task.options.end | 167 | end: task.options.end, |
168 | |||
169 | availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(), | ||
170 | profile: CONFIG.TRANSCODING.PROFILE | ||
168 | }) | 171 | }) |
169 | } | 172 | } |
170 | 173 | ||