Hi, I submit the code to run. Using the pre-install imageio
, there is an error occurs. It seems very easy to solve (In fact, I solve it on my local machine).
The error is
File "/code_execution/main.py", line 33, in videos_to_images
vid = imageio.get_reader(QRY_VIDEOS_DIRECTORY + ls[i], 'ffmpeg')
File "/srv/conda/envs/condaenv/lib/python3.9/site-packages/imageio/v2.py", line 159, in get_reader
image_file = imopen(uri, "r" + mode, **imopen_args)
File "/srv/conda/envs/condaenv/lib/python3.9/site-packages/imageio/core/imopen.py", line 160, in imopen
raise err_type(err_msg) from err_from
ImportError: The `FFMPEG` plugin is not installed. Use `pip install imageio[ffmpeg]` to install it.
It can be easily solved by pip install imageio[ffmpeg]
. Could you help me to make the pre-install imageio
complete? Thanks