Added a couple ffmpeg compression scripts, updated the mount whitehorse command and a couple of cli commands to open files with quicktime

This commit is contained in:
2016-09-29 16:36:16 -07:00
parent dee053f9f1
commit aca1cdd6ca
14 changed files with 77 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
//Walk the items.search_string = "Element";project_items = app.project.itemsfor ( var i = 1; i <= project_items.length ; i ++) { var item = project_items[i]; if( item.typeName == "Composition" ) { var comp = item; //alert( comp.name ); var comp = item; for ( var j = 1 ; j <= comp.numLayers ; j ++ ) { var layer = comp.layer(j); if ( layer.matchName == "ADBE AV Layer") //Only go into layers... not cameras and lights. { var effects = layer.property("Effects"); //alert( comp.name + " , " + layer.name ); for ( var k = 1 ; k <= effects.numProperties ; k ++ ) { var effect = effects.property(k); if ( effect.name == search_string ) { layer.comment = "Contains " + effect.name + " layer."; comp.comment = "Contains " + effect.name + " layer."; } //alert( comp.name + " , " + layer.name + " , " + effect.name ); } } } } }