Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to copy parts of a movie to another one?

Answer: The code below copies ten seconds of the snowman movie to the dummy movie starting at the 5th second.
Example
dim f as FolderItem
dim md as EditableMovie
dim ms as EditableMovie

f=SpecialFolder.Desktop.Child("Our First Snowman.mov")
ms=f.OpenEditableMovie

ms.SelectionStartMBS=5
ms.SelectionLengthMBS=10

f=SpecialFolder.Desktop.Child("dummy.mov")
md=f.CreateMovie

msgbox str(md.AddMovieSelectionMBS(ms))

If result is not 0, the method fails.


The biggest plugin in space...