We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if i do something like : f = open('test.aaf', 'rw') .... masterMob.import_video_essence(dnxhdpath, frameRate) f.save()
if 'test.aaf' does not exist in the filesystem, then everything works fine; if, instead, i want to append to an existing aaf, the same call fails with
'Why: Exception: failed with [-2147483637]: Unknown Error'
Am i doing something wrong there? Ta, Stefano
The text was updated successfully, but these errors were encountered:
If you compiled the aaf SDK with libgsf, rw isn't supported.
Does this example work for you? https://github.com/markreidvfx/pyaaf/blob/master/example/import_media.py#L23
Sorry, something went wrong.
No branches or pull requests
if i do something like :
f = open('test.aaf', 'rw')
....
masterMob.import_video_essence(dnxhdpath, frameRate)
f.save()
if 'test.aaf' does not exist in the filesystem, then everything works fine;
if, instead, i want to append to an existing aaf, the same call fails with
'Why: Exception: failed with [-2147483637]: Unknown Error'
Am i doing something wrong there?
Ta,
Stefano
The text was updated successfully, but these errors were encountered: