Go to: Synopsis. Return value. Keywords. Flags. Python examples.

Synopsis

aaf2fcp([deleteFile=boolean], [dstPath=string], [getFileName=int], [progress=int], [srcFile=string], [terminate=int], [waitCompletion=int])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

aaf2fcp is NOT undoable, NOT queryable, and NOT editable.

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

Return value

string

Keywords

utility, aaf, fcp

Flags

deleteFile, dstPath, getFileName, progress, srcFile, terminate, waitCompletion
Long name (short name) Argument types Properties
srcFile(src) string create
Specifiy a source file
dstPath(dst) string create
Specifiy a destination path
progress(pr) int create
Request progress report
waitCompletion(wc) int create
Wait for the conversion process to complete
getFileName(gfn) int create
Query output file name
deleteFile(df) boolean create
Delete terporary file. Can only be used with the terminate option
terminate(t) int create
Complete the task

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

handle = cmds.aaf2fcp(srcFile='c:/tmp/test.aaf', dstPath='c:/tmp')
destinationFile = cmds.aff2fcp(getFileName=handle)
cmds.aaf2fcp(waitCompletion=handle)
cmds.aaf2fcp(terminate=handle,deleteFile=False)