|
Hi,
is it possible to split a clip in the storymode and plot each clip to a new Take?
The problem is when I split a Clip and export each splitted Clip to a file so each file has the same content. *
Now i would like to plot each clip. create a new storytrack an past each Take to Storytrack. When i do this manually it works, so i search a solution with python.
*Here is the code:
lStoryFolder = FBStory().RootFolder
count = 0
for lTrack in lStoryFolder.Tracks:
for lClip in lTrack.Clips:
filename = "%s\%s_%s.fbx" % (lFp.Path,exportname,count)
result = lClip.ExportToFile(filename)
if result:
print "File exported - " + filename
count = count + 1
|
|
|