import xml.etree.ElementTree as ET import sys import os import argparse from datetime import datetime

def load_fcpxml(self): """Load and parse FCPXML file.""" try: # Register namespaces to avoid ns0, ns1 prefixes ET.register_namespace('', 'http://ns.apple.com/fcpxml/1.0') ET.register_namespace('xsi', 'http://www.w3.org/2001/XMLSchema-instance') self.tree = ET.parse(self.input_file) self.root = self.tree.getroot() return True except ET.ParseError as e: print(f"Error parsing FCPXML: {e}") return False except FileNotFoundError: print(f"File not found: {self.input_file}") return False

def convert(self): """Main conversion process.""" if not self.load_fcpxml(): return False # Optionally strip namespaces if self.strip_namespace: self.strip_namespaces(self.root) # Convert to string if self.pretty: # Pretty print XML xml_str = ET.tostring(self.root, encoding='unicode', method='xml') # Add XML declaration output = '<?xml version="1.0" encoding="UTF-8"?>\n' # Simple pretty formatting from xml.dom import minidom try: dom = minidom.parseString(xml_str) output += dom.toprettyxml(indent=" ")[23:] # Skip the first line with its own declaration except: output += xml_str else: output = ET.tostring(self.root, encoding='unicode', method='xml') # Write or print output if self.output_file: with open(self.output_file, 'w', encoding='utf-8') as f: f.write(output) print(f"Converted FCPXML saved to: {self.output_file}") else: print(output) return True

class FCPXMLConverter: def __init__(self, input_file, output_file=None, pretty=True, strip_namespace=True): self.input_file = input_file self.output_file = output_file self.pretty = pretty self.strip_namespace = strip_namespace self.tree = None self.root = None

def main(): parser = argparse.ArgumentParser( description='Convert FCPXML (Final Cut Pro XML) to standard XML format', epilog='Example: python fcpxml_converter.py input.fcpxml -o output.xml --metadata' ) parser.add_argument('input', help='Input FCPXML file path') parser.add_argument('-o', '--output', help='Output XML file path (optional, prints to console if not provided)') parser.add_argument('--keep-namespace', action='store_true', help='Keep original namespace prefixes (default: strip them)') parser.add_argument('--compact', action='store_true', help='Output compact XML without pretty printing') parser.add_argument('--metadata', action='store_true', help='Extract and display metadata summary only (no conversion)') args = parser.parse_args() # Check input file exists if not os.path.exists(args.input): print(f"Error: Input file '{args.input}' not found.") sys.exit(1) # Metadata only mode if args.metadata: extract_metadata(args.input) sys.exit(0) # Perform conversion converter = FCPXMLConverter( input_file=args.input, output_file=args.output, pretty=not args.compact, strip_namespace=not args.keep_namespace ) if converter.convert(): print("\nConversion completed successfully.") else: print("\nConversion failed.") sys.exit(1)

Fcpxml To Xml Converter -

import xml.etree.ElementTree as ET import sys import os import argparse from datetime import datetime

def load_fcpxml(self): """Load and parse FCPXML file.""" try: # Register namespaces to avoid ns0, ns1 prefixes ET.register_namespace('', 'http://ns.apple.com/fcpxml/1.0') ET.register_namespace('xsi', 'http://www.w3.org/2001/XMLSchema-instance') self.tree = ET.parse(self.input_file) self.root = self.tree.getroot() return True except ET.ParseError as e: print(f"Error parsing FCPXML: {e}") return False except FileNotFoundError: print(f"File not found: {self.input_file}") return False Fcpxml To Xml Converter

def convert(self): """Main conversion process.""" if not self.load_fcpxml(): return False # Optionally strip namespaces if self.strip_namespace: self.strip_namespaces(self.root) # Convert to string if self.pretty: # Pretty print XML xml_str = ET.tostring(self.root, encoding='unicode', method='xml') # Add XML declaration output = '<?xml version="1.0" encoding="UTF-8"?>\n' # Simple pretty formatting from xml.dom import minidom try: dom = minidom.parseString(xml_str) output += dom.toprettyxml(indent=" ")[23:] # Skip the first line with its own declaration except: output += xml_str else: output = ET.tostring(self.root, encoding='unicode', method='xml') # Write or print output if self.output_file: with open(self.output_file, 'w', encoding='utf-8') as f: f.write(output) print(f"Converted FCPXML saved to: {self.output_file}") else: print(output) return True import xml

class FCPXMLConverter: def __init__(self, input_file, output_file=None, pretty=True, strip_namespace=True): self.input_file = input_file self.output_file = output_file self.pretty = pretty self.strip_namespace = strip_namespace self.tree = None self.root = None ns1 prefixes ET.register_namespace(''

def main(): parser = argparse.ArgumentParser( description='Convert FCPXML (Final Cut Pro XML) to standard XML format', epilog='Example: python fcpxml_converter.py input.fcpxml -o output.xml --metadata' ) parser.add_argument('input', help='Input FCPXML file path') parser.add_argument('-o', '--output', help='Output XML file path (optional, prints to console if not provided)') parser.add_argument('--keep-namespace', action='store_true', help='Keep original namespace prefixes (default: strip them)') parser.add_argument('--compact', action='store_true', help='Output compact XML without pretty printing') parser.add_argument('--metadata', action='store_true', help='Extract and display metadata summary only (no conversion)') args = parser.parse_args() # Check input file exists if not os.path.exists(args.input): print(f"Error: Input file '{args.input}' not found.") sys.exit(1) # Metadata only mode if args.metadata: extract_metadata(args.input) sys.exit(0) # Perform conversion converter = FCPXMLConverter( input_file=args.input, output_file=args.output, pretty=not args.compact, strip_namespace=not args.keep_namespace ) if converter.convert(): print("\nConversion completed successfully.") else: print("\nConversion failed.") sys.exit(1)