You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related to #22, out of curiosity I poked around at the clipboard content Final Cut Pro uses when copying markers from the application.
It may be possible to add methods to DAWFileKit to read/write FCP clipboard contents.
FCP uses the following UTI type:
extensionNSPasteboard.PasteboardType{/// Final Cut Pro's pasteboard UTI type. The content is a binary plist.staticletfinalCutPro=Self("com.apple.flexo.proFFPasteboardUTI")}
The content of the data is a binary plist. Converted to XML, this is what it looks like:
The ffpasteboardobject data blob contains a binary plist payload encoded by NSKeyedArchiver.
The root object is NSDictionary so it should be possible to deserialize the archive into a dictionary. It's not immediately apparent if the dictionary structure is similar to FCP XML.
It definitely contains the selected markers from Final Cut Pro marker list and their details (start, duration, name).
However, attempting to directly unarchive the data will produce errors because proprietary FCP classes are included in the archived data.
tryNSKeyedUnarchiver.unarchivedObject(
ofClasses:[NSDictionary.self,NSMutableArray.self],
from: data
)
Error Domain=NSCocoaErrorDomain Code=4864 "*** -[NSKeyedUnarchiver decodeObjectForKey:]: cannot decode object of class (FFAnchoredCollection) for key (NS.objects) because no class named "FFAnchoredCollection" was found; the class needs to be defined in source code or linked in from a library (ensure the class is part of the correct target).
I'm not sure if Apple's ProExtension framework (which contains some FCP objects) has these classes. Worth checking out.
This means it may be necessary to manually parse the archived data, or at least selectively unarchive its children instead of attempting to unarchive the entire root dictionary. (It does not seem practical to try to model all known proprietary class types for the unarchiver to use.)
The text was updated successfully, but these errors were encountered:
Related to #22, out of curiosity I poked around at the clipboard content Final Cut Pro uses when copying markers from the application.
It may be possible to add methods to DAWFileKit to read/write FCP clipboard contents.
FCP uses the following UTI type:
The content of the data is a binary plist. Converted to XML, this is what it looks like:
The
ffpasteboardobject
data blob contains a binary plist payload encoded byNSKeyedArchiver
.The root object is
NSDictionary
so it should be possible to deserialize the archive into a dictionary. It's not immediately apparent if the dictionary structure is similar to FCP XML.It definitely contains the selected markers from Final Cut Pro marker list and their details (start, duration, name).
However, attempting to directly unarchive the data will produce errors because proprietary FCP classes are included in the archived data.
I'm not sure if Apple's
ProExtension
framework (which contains some FCP objects) has these classes. Worth checking out.This means it may be necessary to manually parse the archived data, or at least selectively unarchive its children instead of attempting to unarchive the entire root dictionary. (It does not seem practical to try to model all known proprietary class types for the unarchiver to use.)
The text was updated successfully, but these errors were encountered: