rationalmatter / Juno-Issue-Tracker

Defect Tracker for Juno
79 stars 1 forks source link

Add ffmpeg / imageio_ffmpeg #363

Open JuliosSur opened 1 year ago

JuliosSur commented 1 year ago

I tried to install moviepy for video editing and also required packages but when i import moviepyeditor it bugs and sais

49 # 3. Try binary from conda package 50 # (installed e.g. via conda install ffmpeg -c conda-forge) ---> 51 if plat.startswith("win"): 52 exe = os.path.join(sys.prefix, "Library", "bin", "ffmpeg.exe") 53 else:

AttributeError: 'NoneType' object has no attribute 'startswith'

JuliosSur commented 1 year ago

I tried using Pyto but it spits the same error

alexstaravoitau commented 1 year ago

Thanks for reporting @JuliosSur — looks like the missing package is actually imageio_ffmpeg, which is a Python wrapper for the ffmpeg library. I'll update the issue to reference imageio_ffmpeg instead.

JuliosSur commented 1 year ago

Is it? The juno package manager tells me this package is installed but anyhow I cant use ffmpeg as well. Thanks for considering.