Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Adobe Premiere Slideshow Generator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ var videoTracks = slideshowSequence.videoTracks;

// get the first video track (where all the images will be)
var videoTrackOne = videoTracks[0];

//sets the time variable to figure out frameLength
var time = new Time();

// the length of one frame in premiere pro time (comes in handy later)
var frameLength = time.seconds;
Expand Down Expand Up @@ -216,4 +219,4 @@ function getImagePaths(files) {
}
}
return paths;
}
}