Copy link to clipboard
Copied
I want to write a record plug-in for MXF,
how to write fileType and classID for MXF,
what's the fileType and classID of ImporterMXF.prm
Please help me
the avi fileType and classID as below in sdk example, I can't found any information about fileType and classID for MXF
// fileType and classID are same as SDK_File_Compiler and SDK_File_Importer
// For example, if you were writing a recorder that captured AVI files, fileType would be 'AVIV'
info8->fileType = 'AVIV';
info8->classID = 'DTEK';
Hi there,
For MXF, you'd use:
fileType = 'MXFF';
I don't believe classID is important. Feel free to provide your own unique four character code.
Copy link to clipboard
Copied
Hi there,
For MXF, you'd use:
fileType = 'MXFF';
I don't believe classID is important. Feel free to provide your own unique four character code.
Copy link to clipboard
Copied
thank you very much