diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-24 03:06:03 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-24 03:06:03 +0200 |
| commit | 91a29f1c46270c12664b2fd7561c2e0bcd651476 (patch) | |
| tree | 0d9b9e24adfc13297ed73feb8d3938622494575d | |
| parent | 58885f516b7447e7ef824b0e7a93ceca990ed584 (diff) | |
| parent | 368434ab88c2f7df79659ebabd3609ce79a981c0 (diff) | |
Merge branch 'master' of asdf.us:live-cortex
| -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 93f9c3a..2f794b0 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/', |
