├── .env.example ├── .gitignore ├── README.md ├── app.py ├── config.py ├── requirements.txt ├── run.bat ├── run.sh ├── static ├── audio │ └── README.txt ├── css │ └── style.css ├── images │ ├── favicon.svg │ ├── logo.svg │ ├── style-anime.svg │ ├── style-default.svg │ ├── style-realistic.svg │ ├── style-sketch.svg │ └── style-watercolor.svg └── js │ └── main.js ├── templates └── index.html └── utils ├── __init__.py ├── audio_generation.py ├── image_generation.py ├── text_processing.py └── video_creation.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/run.sh -------------------------------------------------------------------------------- /static/audio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/audio/README.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/favicon.svg -------------------------------------------------------------------------------- /static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/logo.svg -------------------------------------------------------------------------------- /static/images/style-anime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/style-anime.svg -------------------------------------------------------------------------------- /static/images/style-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/style-default.svg -------------------------------------------------------------------------------- /static/images/style-realistic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/style-realistic.svg -------------------------------------------------------------------------------- /static/images/style-sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/style-sketch.svg -------------------------------------------------------------------------------- /static/images/style-watercolor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/images/style-watercolor.svg -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/templates/index.html -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/audio_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/utils/audio_generation.py -------------------------------------------------------------------------------- /utils/image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/utils/image_generation.py -------------------------------------------------------------------------------- /utils/text_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/utils/text_processing.py -------------------------------------------------------------------------------- /utils/video_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shen158598/novel-to-comic-video/HEAD/utils/video_creation.py --------------------------------------------------------------------------------