├── .gitignore ├── CogVideoX ├── inference.py └── pipeline_stg_cogvideox.py ├── HunyuanVideo ├── inference.py └── pipeline_stg_hunyuan_video.py ├── LTXVideo ├── inference.py ├── pipeline_stg_ltx.py └── pipeline_stg_ltx_image2video.py ├── Mochi ├── inference.py └── pipeline_stg_mochi.py ├── README.md ├── Wan2.1 ├── inference.py ├── inference_low_memory.py ├── multiple_inference.py ├── pipeline.py └── prompts.txt └── assets ├── hunyuan1.mp4 ├── hunyuan2.mp4 └── tmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/.gitignore -------------------------------------------------------------------------------- /CogVideoX/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/CogVideoX/inference.py -------------------------------------------------------------------------------- /CogVideoX/pipeline_stg_cogvideox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/CogVideoX/pipeline_stg_cogvideox.py -------------------------------------------------------------------------------- /HunyuanVideo/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/HunyuanVideo/inference.py -------------------------------------------------------------------------------- /HunyuanVideo/pipeline_stg_hunyuan_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/HunyuanVideo/pipeline_stg_hunyuan_video.py -------------------------------------------------------------------------------- /LTXVideo/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/LTXVideo/inference.py -------------------------------------------------------------------------------- /LTXVideo/pipeline_stg_ltx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/LTXVideo/pipeline_stg_ltx.py -------------------------------------------------------------------------------- /LTXVideo/pipeline_stg_ltx_image2video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/LTXVideo/pipeline_stg_ltx_image2video.py -------------------------------------------------------------------------------- /Mochi/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Mochi/inference.py -------------------------------------------------------------------------------- /Mochi/pipeline_stg_mochi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Mochi/pipeline_stg_mochi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/README.md -------------------------------------------------------------------------------- /Wan2.1/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Wan2.1/inference.py -------------------------------------------------------------------------------- /Wan2.1/inference_low_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Wan2.1/inference_low_memory.py -------------------------------------------------------------------------------- /Wan2.1/multiple_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Wan2.1/multiple_inference.py -------------------------------------------------------------------------------- /Wan2.1/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Wan2.1/pipeline.py -------------------------------------------------------------------------------- /Wan2.1/prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/Wan2.1/prompts.txt -------------------------------------------------------------------------------- /assets/hunyuan1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/assets/hunyuan1.mp4 -------------------------------------------------------------------------------- /assets/hunyuan2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junhahyung/STGuidance/HEAD/assets/hunyuan2.mp4 -------------------------------------------------------------------------------- /assets/tmp: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------