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

Synopsis

aaf2fcp [-deleteFile boolean] [-dstPath string] [-getFileName int] [-progress int] [-srcFile string] [-terminate int] [-waitCompletion int]

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 be used more than once in a command.

MEL examples

int $handle = `aaf2fcp -src "c:/tmp/test.aaf" -dst "c:/tmp"`;
string $destinationFile = `aff2fcp -getFileName $handle`;
aaf2fcp -waitCompletion $handle;
aaf2fcp -terminate $handle -df false ;