This content has been marked as final.
Show 2 replies
-
1. Re: Parameters of the functions importFiles() and exportTimeline() in Premiere Pro Extension
bbb_999 Mar 26, 2013 9:26 AM (in response to NirmalRaghavan)Hello!
You are correct; importFiles() takes an array of strings.
exportTimeline() is exercised in the SDKPanel sample, available here:
https://workspaces.acrobat.com/?d=NJnaZfBRpmwGwrzOFEWRAA
The only argument is the match name of the Export Controller in question; the sample panel uses the SDK Export Controller sample, from the Premiere Pro C++ SDK:
-
2. Re: Parameters of the functions importFiles() and exportTimeline() in Premiere Pro Extension
anoopnr134 Sep 23, 2014 2:46 AM (in response to NirmalRaghavan);
qe.project.importFiles(fileName)
var seq=qe.project.getSequenceAt(i);
seq.makeCurrent();
seq.exportDirect( output path with extension , preset path);


