Notifications
Clear all

[Closed] Getting Quicktime or AVI frame length?

Can you do this directly or do I need to use Python or .NET?

I just want the frame length (and framerate) from the metadata of a .mov is that possible?

2 Replies

Number of frames can be found by the numFrames property under Bitmap:



mBitmap = openBitmap "C:\\YourFolders\\YourFile.mov"
print mBitmap.numFrames


Thanks. That does it!