forked from NTProductions/pr-scripting-qe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPR QE Guide.jsx
70 lines (66 loc) · 1.41 KB
/
PR QE Guide.jsx
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// QE
var qe = app.enableQE();
// global QE properties/methods
qe.exit();
qe.getSequencePresets();
qe.language;
qe.location;
qe.name;
qe.newProject();
qe.open();
qe.outputToConsole();
qe.platform;
qe.startPlayback();
qe.stop();
qe.stopPlayback();
// qe.project
var qeProj = qe.project;
qeProj.close();
qeProj.currentRendererName;
qeProj.deletePreviewFiles();
qeProj.flushCache();
qeProj.getAudioEffectByName();
qeProj.getAudioEffectList();
qeProj.getAudioTransitionByName();
qeProj.getAudioTransitionList();
qeProj.getBinAt();
qeProj.getItemAt();
qeProj.getSequenceAt();
qeProj.getSequenceItemAt();
qeProj.getVideoEffectByName();
qeProj.getVideoEffectList();
qeProj.getVideoTransitionByName();
qeProj.getVideoTransitionList();
qeProj.import();
qeProj.importAEComps();
qeProj.importAllAEComps();
qeProj.importFiles();
qeProj.importProject();
qeProj.name;
qeProj.newBarsAndTone();
qeProj.newBin();
qeProj.newBlackVideo();
qeProj.newCaption();
qeProj.newSequence();
qeProj.newTransparentVideo();
qeProj.numBins;
qeProj.numItems;
qeProj.numSequenceItems;
qeProj.numSequences;
qeProj.path;
qeProj.redo();
qeProj.undo();
// qe.source
var qeSource = qe.source;
qeSource.clearInPoint();
qeSource.clearOutPoint();
qeSource.duration;
qeSource.filePath;
qeSource.name;
qeSource.setAudioInPoint();
qeSource.setAudioOutPoint();
qeSource.setDuration();
qeSource.setInPoint();
qeSource.setOutPoint();
qeSource.setVideoInPoint();
qeSource.setVideoOutPoint();