-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.js
More file actions
41 lines (39 loc) · 774 Bytes
/
preview.js
File metadata and controls
41 lines (39 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { preview } from '../'
const previewRequest = {
template: {
path: 'UserName/Template',
aeps: [
{
fileName: 'project.aep',
compositions: [
{
name: 'Composition',
outputs: [
{
omTemplate: 'JPEG',
startFrame: 3 * 30,
endFrame: 3 * 30
},
{
name: 'Composition',
omTemplate: 'CineForm',
increment: 30
}
]
}
]
}
]
},
resolutions: [
{
height: 1080,
width: 1920
}
]
}
preview(previewRequest)
.then(output => {
console.log(JSON.stringify(output, null, 2))
})
.catch(console.error)