├── .gitattributes └── PR QE Guide.jsx /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /PR QE Guide.jsx: -------------------------------------------------------------------------------- 1 | // QE 2 | 3 | var qe = app.enableQE(); 4 | 5 | // global QE properties/methods 6 | qe.exit(); 7 | qe.getSequencePresets(); 8 | qe.language; 9 | qe.location; 10 | qe.name; 11 | qe.newProject(); 12 | qe.open(); 13 | qe.outputToConsole(); 14 | qe.platform; 15 | qe.startPlayback(); 16 | qe.stop(); 17 | qe.stopPlayback(); 18 | 19 | // qe.project 20 | var qeProj = qe.project; 21 | qeProj.close(); 22 | qeProj.currentRendererName; 23 | qeProj.deletePreviewFiles(); 24 | qeProj.flushCache(); 25 | qeProj.getAudioEffectByName(); 26 | qeProj.getAudioEffectList(); 27 | qeProj.getAudioTransitionByName(); 28 | qeProj.getAudioTransitionList(); 29 | qeProj.getBinAt(); 30 | qeProj.getItemAt(); 31 | qeProj.getSequenceAt(); 32 | qeProj.getSequenceItemAt(); 33 | qeProj.getVideoEffectByName(); 34 | qeProj.getVideoEffectList(); 35 | qeProj.getVideoTransitionByName(); 36 | qeProj.getVideoTransitionList(); 37 | qeProj.import(); 38 | qeProj.importAEComps(); 39 | qeProj.importAllAEComps(); 40 | qeProj.importFiles(); 41 | qeProj.importProject(); 42 | qeProj.name; 43 | qeProj.newBarsAndTone(); 44 | qeProj.newBin(); 45 | qeProj.newBlackVideo(); 46 | qeProj.newCaption(); 47 | qeProj.newSequence(); 48 | qeProj.newTransparentVideo(); 49 | qeProj.numBins; 50 | qeProj.numItems; 51 | qeProj.numSequenceItems; 52 | qeProj.numSequences; 53 | qeProj.path; 54 | qeProj.redo(); 55 | qeProj.undo(); 56 | 57 | // qe.source 58 | var qeSource = qe.source; 59 | qeSource.clearInPoint(); 60 | qeSource.clearOutPoint(); 61 | qeSource.duration; 62 | qeSource.filePath; 63 | qeSource.name; 64 | qeSource.setAudioInPoint(); 65 | qeSource.setAudioOutPoint(); 66 | qeSource.setDuration(); 67 | qeSource.setInPoint(); 68 | qeSource.setOutPoint(); 69 | qeSource.setVideoInPoint(); 70 | qeSource.setVideoOutPoint(); 71 | --------------------------------------------------------------------------------