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 ../../../_images/create.gif
 
Delete terporary file. Can only be used with the terminate option
dstPath (dst) unicode ../../../_images/create.gif
 
Specifiy a destination path
getFileName (gfn) int ../../../_images/create.gif
 
Query output file name
progress (pr) int ../../../_images/create.gif
 
Request progress report
srcFile (src) unicode ../../../_images/create.gif
 
Specifiy a source file
terminate (t) int ../../../_images/create.gif
 
Complete the taskFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list.
waitCompletion (wc) int ../../../_images/create.gif
 
Wait for the conversion process to complete

Derived from mel command maya.cmds.aaf2fcp

Example:

import pymel.core as pm

import maya.cmds as cmds

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)

Previous topic

pymel.core.system.pathClass

Next topic

pymel.core.system.allNodeTypes

Core

Core Modules

Other Modules

This Page