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 temporary 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 task
waitCompletion / wc int ../../../_images/create.gif
  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)