Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
/ xmeml Public archive

XML parser for Final Cut Pro <xmeml> files with clipping API to make new sequences out of others

License

Notifications You must be signed in to change notification settings

ccnmtl/xmeml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

from xmeml import VideoSequence

v1 = VideoSequence(file='examples/Conecta Test XML.xml')
v2 = VideoSequence(file='examples/Mark P XML.xml')
#print len(v1.track_items)

clip1 = v1.clip(1000, 4000, units='frames')
clip2 = v2.clip(300, 500, units='seconds')

xmldom1,dumb_uuid = v1.clips2dom([clip1])
xmldom2,dumb_uuid = v2.clips2dom([clip2])
xmldom3,dumb_uuid = v2.clips2dom([clip1, clip2])

#print xmldom1.toprettyxml() #probably won't work in Final Cut Pro
print xmldom2.toxml()

About

XML parser for Final Cut Pro <xmeml> files with clipping API to make new sequences out of others

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages