Animatica is my diploma project that generates videos from text and images using neural networks. It automates animation creation with image generation, image-to-video conversion, and post-processing.
python3 -m venv venv
source venv/bin/activatepython -m venv venv
source venv/Scripts/activatecd app
pip install -r requirements.txt# env/api.env
API_URL=http://localhost:8080
TERMS_OF_SERVICE_URL=https://example.com/termscd app
streamlit run src/main.pyBelow are the basic commands to manage docker.
docker build -f app/Dockerfile -t animatica-frontend .docker run -p 8501:8501 --name ui animatica-frontend