dchatel
dchatel
> I will review if there is a better way to manage this. Maybe a good way would be to clear the image embeds when ImagePaths is cleared?... Or reflect...
The extension is pretty simple. It extracts the faces of the video and align them (so it even works great with upside down faces). It put the extracted faces in...
Which version of moviepy have you installed ? Also, ffmpeg needs to be installed and accessible by moviepy. One good way to do it is add the folder where ffmpeg.exe...
I'm using moviepy 1.0.3 and for ffmpeg: ``` ffmpeg version 4.4-full_build-www.gyan.dev Copyright (c) 2000-2021 the FFmpeg developers built with gcc 10.2.0 (Rev6, Built by MSYS2 project) ```
Could you try to run a very small script which does the following ? ``` from moviepy.editor import VideoFileClip with VideoFileClip('path/to/video-file') as clip: frames = list(clip.iter_frames()) ```
It could be related to the wrong version of insightface. You should use 0.7.3 and not 0.2.1. You can fix that by running `pip install -U insightface` in the stable...
Which version of moviepy are you using ? I think you can try to update your version with this: ``` pip install --upgrade git+git://github.com/Zulko/moviepy ```
Do you have controlnet extension installed and updated?
Any plans on building a custom text area that doesn't use the html one? In order to avoid that ugly thing where the textareas' z-index takes precedence over anything else...
looks similar to https://github.com/oobabooga/text-generation-webui/issues/3502