├── .env ├── .gitignore ├── README.md ├── api.py ├── bgm.mp3 ├── config └── model.yaml ├── main.py ├── requirements.txt ├── screenshots ├── example_one.png ├── example_three.png ├── example_two.png └── example_video.mp4 ├── service ├── __init__.py ├── auth.py ├── baidu_translate.py ├── bgm.mp3 ├── database.py ├── datamodels.py ├── deepseek_service.py ├── diffusion_service.py ├── ip_adapter │ ├── __init__.py │ ├── attention_processor.py │ ├── attention_processor_faceid.py │ ├── custom_pipelines.py │ ├── ip_adapter.py │ ├── ip_adapter_faceid.py │ ├── ip_adapter_faceid_separate.py │ ├── resampler.py │ ├── sd3_attention_processor.py │ ├── test_resampler.py │ └── utils.py ├── schemas.py ├── sound_service.py └── video_service.py ├── static ├── ThePromisedLand.png └── generated │ └── img2img_90e20428101c4eadaaa06959ea855432.png └── templates ├── img2img.html ├── index.html ├── js └── character_management.js ├── login.html ├── pic.html └── video.html /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/api.py -------------------------------------------------------------------------------- /bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/bgm.mp3 -------------------------------------------------------------------------------- /config/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/config/model.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/example_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/screenshots/example_one.png -------------------------------------------------------------------------------- /screenshots/example_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/screenshots/example_three.png -------------------------------------------------------------------------------- /screenshots/example_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/screenshots/example_two.png -------------------------------------------------------------------------------- /screenshots/example_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/screenshots/example_video.mp4 -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- 1 | # service package -------------------------------------------------------------------------------- /service/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/auth.py -------------------------------------------------------------------------------- /service/baidu_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/baidu_translate.py -------------------------------------------------------------------------------- /service/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/bgm.mp3 -------------------------------------------------------------------------------- /service/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/database.py -------------------------------------------------------------------------------- /service/datamodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/datamodels.py -------------------------------------------------------------------------------- /service/deepseek_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/deepseek_service.py -------------------------------------------------------------------------------- /service/diffusion_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/diffusion_service.py -------------------------------------------------------------------------------- /service/ip_adapter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/__init__.py -------------------------------------------------------------------------------- /service/ip_adapter/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/attention_processor.py -------------------------------------------------------------------------------- /service/ip_adapter/attention_processor_faceid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/attention_processor_faceid.py -------------------------------------------------------------------------------- /service/ip_adapter/custom_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/custom_pipelines.py -------------------------------------------------------------------------------- /service/ip_adapter/ip_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/ip_adapter.py -------------------------------------------------------------------------------- /service/ip_adapter/ip_adapter_faceid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/ip_adapter_faceid.py -------------------------------------------------------------------------------- /service/ip_adapter/ip_adapter_faceid_separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/ip_adapter_faceid_separate.py -------------------------------------------------------------------------------- /service/ip_adapter/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/resampler.py -------------------------------------------------------------------------------- /service/ip_adapter/sd3_attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/sd3_attention_processor.py -------------------------------------------------------------------------------- /service/ip_adapter/test_resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/test_resampler.py -------------------------------------------------------------------------------- /service/ip_adapter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/ip_adapter/utils.py -------------------------------------------------------------------------------- /service/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/schemas.py -------------------------------------------------------------------------------- /service/sound_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/sound_service.py -------------------------------------------------------------------------------- /service/video_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/service/video_service.py -------------------------------------------------------------------------------- /static/ThePromisedLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/static/ThePromisedLand.png -------------------------------------------------------------------------------- /static/generated/img2img_90e20428101c4eadaaa06959ea855432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/static/generated/img2img_90e20428101c4eadaaa06959ea855432.png -------------------------------------------------------------------------------- /templates/img2img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/templates/img2img.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/js/character_management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/templates/js/character_management.js -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/pic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/templates/pic.html -------------------------------------------------------------------------------- /templates/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryPotter0546/Fantastic_Storyboard/HEAD/templates/video.html --------------------------------------------------------------------------------