Dan
Dan
Also tried using using `Path` from `pathlib` and passed that to each of the methods I tried above and it still failed.
huh! Since the images I've been testing with are part of a film scanning archival project, and I wasn't sure if I could share the images due to copyright. I...
Thanks! That's some really great info and suggestions. I'll continue to work/test with it and check back in if I find anything useful. Thanks again! Let me know if you...
Interestingly, `pyav` doesn't seem to like reading the mkv file. Doing this: ```py import imageio.v3 as iio mkv_file = Path('E:/test_dpx.mkv') for frame in iio.imiter(mkv_file, plugin='pyav'): print(type(frame)) break ``` Produces the...
Gothca. That all makes sense. Thanks!
Also keep in mind that on Windows there is the "Command Prompt" (which is cmd.exe) and the newer/better "Windows Terminal" On Windows 10 (not sure about Win11), this isn't installed...
My primary system is Windows though I've never done any sort of "official" testing, are there any guides or instructions on the types of things this entails? Happy to help...
Gotcha. @davep Thanks! I actually started doing some of that just to learn, I totally missed that was actually part of the testing. I'll spend some time and actually make...
Before I get too far down the path of testing the other examples, wanted to see if this is the sort of things we're after? Windows 10 (64bit) Python Env:...
Hi @JeromeMartinez Thanks so much for the reply. Perhaps I'm calling MediaInfo incorrectly, but when I try to use the `--details` option on an .mkv file (created by rawcooked), it...