diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-09-24 03:05:28 +0200 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-09-24 03:05:28 +0200 |
| commit | fa7e595b09eab3591067f34ccfae4a0d2875e758 (patch) | |
| tree | 81b5723ae16c2d11b79996749cd56d04f2b0b9de /app | |
| parent | 4fe280274dcbbb7df9652bc88f730044c355d06a (diff) | |
task opt
Diffstat (limited to 'app')
| -rw-r--r-- | app/relay/modules/pix2pixhd.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js index 5f7b1c7..d4c00f8 100644 --- a/app/relay/modules/pix2pixhd.js +++ b/app/relay/modules/pix2pixhd.js @@ -233,12 +233,12 @@ const splice = { type: 'perl', script: 'splice.pl', params: (task) => { - console.log(selection) + console.log(task.opt.selection) return [ '--dataset', task.dataset, '--sequence', task.opt.sequence, - '--start_frame', selection.start.i, - '--end_frame', selection.end.i, + '--start_frame', task.opt.selection.start.i, + '--end_frame', task.opt.selection.end.i, '--module', task.module, '--folder_id', task.opt.folder_id, '--endpoint', process.env.API_REMOTE + '/api/file/', |
