pymel.core.system.aaf2fcp¶
- aaf2fcp(*args, **kwargs)¶
This command is used to convert an aff file to a Final Cut Pro (fcp) xml file The conversion process can take several seconds to complete and the command is meant to be run asynchronously
Flags:
Long Name / Short Name Argument Types Properties deleteFile / df bool Delete temporary file. Can only be used with the terminate option dstPath / dst unicode Specifiy a destination path getFileName / gfn int Query output file name progress / pr int Request progress report srcFile / src unicode Specifiy a source file terminate / t int Complete the task waitCompletion / wc int Wait for the conversion process to complete Flag can have multiple arguments, passed either as a tuple or a list. Derived from mel command maya.cmds.aaf2fcp
Example:
import pymel.core as pm handle = pm.aaf2fcp(srcFile='c:/tmp/test.aaf', dstPath='c:/tmp') destinationFile = pm.aff2fcp(getFileName=handle) pm.aaf2fcp(waitCompletion=handle) pm.aaf2fcp(terminate=handle,deleteFile=False)