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
| Long name (short name) | Argument Types | Properties | |
|---|---|---|---|
| deleteFile (df) | bool |
|
|
|
|||
| dstPath (dst) | unicode |
|
|
|
|||
| getFileName (gfn) | int |
|
|
|
|||
| progress (pr) | int |
|
|
|
|||
| srcFile (src) | unicode |
|
|
|
|||
| terminate (t) | int |
|
|
|
|||
| waitCompletion (wc) | int |
|
|
|
|||
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)