Tony

Results 21 comments of Tony

> I did not use this app, wrote my own "cloner", but collected some experience, so maybe I can help. > > 1. Did you compile this console app to...

> How do you install Firebird ? It is expected to use the `instreg.exe` utility provided witrh Firebird to define the "RootDirectory" key in the system Registry. Installed it with...

Thank you for your time to look at the changes I made. The idea behind setting the ffmpeg binary to auto-detect by default and removing the test is because of...

@keikoro made the change you proposed **_Irrelevant_**: ~~this is irrelevant actually it is - without setting the binary to `auto-detect` (in code or in ENV) tests are not passing, at...

Same issue found on garuda linux ``` moviepy==1.0.3 ``` Seems issue is related to searching for `ffmpeg.exe` no matter the os As a workaround I changed ``` FFMPEG_BINARY = os.getenv('FFMPEG_BINARY',...

@keikoro if user doesn't set the `FFMPEG_BINARY` variable the default is `ffmpeg-imageio` `FFMPEG_BINARY = os.getenv("FFMPEG_BINARY", "ffmpeg-imageio")` but then ``` if FFMPEG_BINARY == "ffmpeg-imageio": from imageio.plugins.ffmpeg import get_exe FFMPEG_BINARY = get_exe()...

@keikoro good, I was confused by the naming of the function, I checked the code for them and yes - my mistake, I will close this PR.

Most of these fail with error like this ``` (141.0, 121.0, 177.0) is not in list ``` Do we need to have them like this in the default dict? ```...

ok after some debugging, seems the issue was that pillow was newest version, lowering it to 9.5.0 all tests are passing