| 1 | # Workflow Customization |
| 2 | |
| 3 | How to customize ComfyUI workflows to achieve specific functionality. |
| 4 | |
| 5 | --- |
| 6 | |
| 7 | ## Workflow Introduction |
| 8 | |
| 9 | Pixelle-Video is built on the ComfyUI architecture and supports custom workflows. |
| 10 | |
| 11 | --- |
| 12 | |
| 13 | ## Workflow Types |
| 14 | |
| 15 | ### TTS Workflows |
| 16 | |
| 17 | Located in `workflows/selfhost/` or `workflows/runninghub/` |
| 18 | |
| 19 | Used for Text-to-Speech, supporting various TTS engines: |
| 20 | - Edge-TTS |
| 21 | - Index-TTS (supports voice cloning) |
| 22 | - Other ComfyUI-compatible TTS nodes |
| 23 | |
| 24 | ### Image Generation Workflows |
| 25 | |
| 26 | Located in `workflows/selfhost/` or `workflows/runninghub/` |
| 27 | |
| 28 | Used for generating static images as video backgrounds: |
| 29 | - FLUX series models |
| 30 | - Stable Diffusion series models |
| 31 | - Other image generation models |
| 32 | |
| 33 | ### Video Generation Workflows |
| 34 | |
| 35 | Located in `workflows/selfhost/` or `workflows/runninghub/` |
| 36 | |
| 37 | **New Feature**: Supports AI video generation to create dynamic video content. |
| 38 | |
| 39 | **Preset Workflows**: |
| 40 | - `runninghub/video_wan2.1_fusionx.json`: Cloud workflow (recommended) |
| 41 | - Based on WAN 2.1 model |
| 42 | - No local setup required, accessed via RunningHub API |
| 43 | - Supports Text-to-Video generation |
| 44 | |
| 45 | - `selfhost/video_wan2.1_fusionx.json`: Local workflow |
| 46 | - Requires local ComfyUI environment |
| 47 | - Requires installation of corresponding video generation nodes |
| 48 | - Suitable for users with local GPU |
| 49 | |
| 50 | **Use Cases**: |
| 51 | - Works with `video_*.html` templates |
| 52 | - Automatically generates dynamic video backgrounds based on scripts |
| 53 | - Enhances visual expressiveness and viewing experience |
| 54 | |
| 55 | --- |
| 56 | |
| 57 | ## Custom Workflows |
| 58 | |
| 59 | 1. Design your workflow in ComfyUI |
| 60 | 2. Export as JSON file |
| 61 | 3. Place in `workflows/` directory |
| 62 | 4. Select and use in Web interface |
| 63 | |
| 64 | --- |
| 65 | |
| 66 | ## More Information |
| 67 | |
| 68 | Detailed workflow customization guide coming soon. |
| 69 | |
| 70 |