if it is xml file and u familiar with its structure use xml parsing:
import xml.dom.minidom
def get_a_document(name="/tmp/
return xml.dom.minidom.parse(name
get timecode elements:
def find_timecode_element(doc)
business_element = None
for e in doc.childNodes:
if e.nodeType == e.ELEMENT_NODE and e.localName == "timecode":
business_element = e
break
return business_element
Main Topics
Browse All Topics





by: munkPosted on 2009-11-03 at 04:36:50ID: 25728287
ffmpeg can open and encode Sony MXF files. Maybe you can get ffmpeg to do the job for you.