8000 GitHub - oegea/xmeml: XML parser for Final Cut Pro <xmeml> files with clipping API to make new sequences out of others
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ xmeml Public
forked from ccnmtl/xmeml

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

oegea/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

  • Python 100.0%
0