您当前的位置: 首页 > 

插件开发

暂无认证

  • 4浏览

    0关注

    492博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

AfterEffect插件-常规功能开发-改变渲染输出位置-js脚本开发-AE插件

插件开发 发布时间:2022-03-14 08:15:52 ,浏览量:4

文章目录
    • 1.算法程序
    • 2.作者答疑

1.算法程序

  AfterEffect(AE)插件是Adobe公司开发的特效制作软件,稳定快速的功能和特效,在视频制作领域使用非常广泛,本文向大家介绍如何在项目里进行改变渲染输出位置功能。源代码如下所示:

{
	// Change Render Locations.jsx
	//
	// This script prompts the user for a new output folder to use for queued items in the Render Queue.
	
	function ChangeRenderLocations()
	{
		var scriptName = "Change Render Locations";
		var newLocation = Folder.selectDialog("Select a render output folder...");
		
		if (newLocation != null) {
			app.beginUndoGroup(scriptName);
			
			// Process all render queue items whose status is set to Queued.
			for (i = 1; i             
关注
打赏
1665481431
查看更多评论
0.0367s