Has something happened recently to QuickTime API support for Quartz Composer files in macOS High Sierra?
I have a QTZ
composition that opens fine in macOS 10.12, but fails to open in macOS 10.13. At the same time, it seems that QuickTime Player doesn't suffer from the same issue my code does, and can still open the QTZ
files.
I have replicated this using the Objective-C API:
NSStrnig *path = @"/path/to/file.qtz";
NSError *error = nil;
id movie = [QTMovie movieWithFile:path error:&error];
… as well as (what we actually use in production) …
OSStatus status = NewMovieFromProperties(propertyCount, properties, 0, NULL, movie);
and in both cases I obtain an error code -2048 : "noMovieFound"
Any ideas?