diff options
Diffstat (limited to 'scripts/create-transcoding-job.ts')
-rwxr-xr-x | scripts/create-transcoding-job.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-transcoding-job.ts b/scripts/create-transcoding-job.ts index 2b7cb5177..2eb872169 100755 --- a/scripts/create-transcoding-job.ts +++ b/scripts/create-transcoding-job.ts | |||
@@ -29,7 +29,7 @@ run() | |||
29 | async function run () { | 29 | async function run () { |
30 | await initDatabaseModels(true) | 30 | await initDatabaseModels(true) |
31 | 31 | ||
32 | const video = await VideoModel.loadByUUIDWithFile(program['video']) | 32 | const video = await VideoModel.loadByUUID(program['video']) |
33 | if (!video) throw new Error('Video not found.') | 33 | if (!video) throw new Error('Video not found.') |
34 | 34 | ||
35 | const dataInput: VideoTranscodingPayload = program.resolution !== undefined | 35 | const dataInput: VideoTranscodingPayload = program.resolution !== undefined |