Mark Reid

Results 145 comments of Mark Reid

OTIO should be able to read th AAF file, it uses pyaaf2 to read AAFs.

I've identified the `avb2aaf.py` incompatibility issue with Resolve, it should be fixed in 16ba0ef22e2140ab8bc7d8ce3ebfd28976483e56

can you verify you are using the latest github version of pyav? BINF has been Implemented and the files work for me.

sorry for the delay, but did you end up resolving this? (and sorry for the resolve pun :p)

I'm just doing some house keeping. If you don't have the time I can close the issue

this looks like its failing because urllib changed in python3 which I assume your using

fixed in 48b05a84ff9752703a9218d5ca157ee672b020ab

sorry for the long delay, did you end up resolving this?

Yes this would be nice. Its a little involved because a mob references other mobs and objects. Those need to get copied as well for avid to to complain or...

Currently some tests use `unittest.TestCase` `setUp` and `tearDown` methods ```python def setUp(self): self.tmpDir = tempfile.mkdtemp() def tearDown(self): shutil.rmtree(self.tmpDir) ``` Some tests are using `tempfile.TemporaryDirectory` ```python with tempfile.TemporaryDirectory() as temp_dir: temp_file...