“is there an easy way to see which file from the sequence is currently displayed?”
by Dan Ebberts
This expression (for a text layer’s source text) gives the name of the source of the current active layer (if it has no source it gives the layer name). Apply to a text layer at the top of the layer stack.
This source text layer has to be right above the footage for it to work. At the splice point of a new layer, it will update the name automatically. Set file project settings to frames.
—–
as for…
“image sequence with several gaps”
you’re looking at a combo of AE’s smartimport.jsx script mixed with empty layer scripting. Not super easy, but definately doable.
txt = “”;
for (j = 1; j <= thisComp.numLayers; j++){
if (j == index) continue;
L = thisComp.layer(j);
if (! (L.hasVideo && L.active)) continue;
if (time >= L.inPoint && time < L.outPoint){
try{
txt = L.source.name;
}catch(err1){
txt = L.name
}
break;
}
}
txt + ” ” + timeToCurrentFormat(time)
https://technicolorsoftware.hostzi.com/