所以我一直在四处寻找并试图找到一种使用extendscript在Adobe Premiere Pro中导入图像序列的方法。
我可以使用以下方法导入单独的单个文件:
app.project.importFiles(new Folder(folder_path));
但我无法选择将这些图像作为序列导入。
我尝试使用opts = new ImportOptions(new File("path_to_image")); opts.sequence = true;
并在其中调用此内容
app.project.importFiles(opts)
但Premiere似乎不支持ImportOptions,我不断收到错误说明&#34; 导入选项没有构造函数&#34; .... < / p>
我假设Premiere Pro不支持ImportOptions?
是否有使用app.project.importFiles
导入图像序列的其他方式?
谢谢!
答案 0 :(得分:0)
来自Bruce Bullis的Adobe(https://forums.adobe.com/message/9752499#9752499):
app.project.importFiles的最后一个参数是0或1,表示是否“将要导入的数组中引用的所有文件解释为图像序列”。
参见PProPanel中的用法:
主人的样本/ Premiere.jsx·Adobe-CEP /样本·GitHub:https://github.com/Adobe-CEP/Samples/blob/master/PProPanel/jsx/PPRO/Premiere.jsx#L201
- &GT;
app.project.importFiles(importThese,
1, // suppress warnings
targetBin,
0); // import as numbered stills