├── .gitignore ├── Readme.md ├── images └── img1.jpg ├── install.py ├── scripts └── video_extras_tab.py └── video_extras_tab ├── process.py └── video_tools.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | .directory 4 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-video-extras-tab/HEAD/Readme.md -------------------------------------------------------------------------------- /images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-video-extras-tab/HEAD/images/img1.jpg -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-video-extras-tab/HEAD/install.py -------------------------------------------------------------------------------- /scripts/video_extras_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-video-extras-tab/HEAD/scripts/video_extras_tab.py -------------------------------------------------------------------------------- /video_extras_tab/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-video-extras-tab/HEAD/video_extras_tab/process.py -------------------------------------------------------------------------------- /video_extras_tab/video_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-video-extras-tab/HEAD/video_extras_tab/video_tools.py --------------------------------------------------------------------------------