An AI powered video maker that creates videos from a single word.
Create a file named config on the project's root.
SD_ADDR=127.0.0.1 # Or whatever address your SD server's using
SD_PORT=7860 # Or whatever port your SD server's listening on.# For bash/zsh users
py wikipedia_extractor.py <subject> | py resumer.py
cat output.txt | py make_video.py [option1=value1 option2=value2 ...]# For fish users
fish pipeline.fish <subject> [option1=value1 option2=value2 ...]The video should be named output.mp4.
You need a server running Stable Diffusion WebUI.
- Clone the repository
git clone https://github.com/MrFish1604/video_maker.git- Create a new virtual environnemnt
# For bash/zsh users
python -m venv video_maker
source env/bin/activate# For fish users (install virtualfish first)
vf new video_maker- Install dependencies
sudo apt update
sudo apt install imagemagick
pip install -r requirements.txtThis project uses :