补充分镜视频相关文档说明
This commit is contained in:
@@ -21,6 +21,10 @@ comfyui:
|
||||
default_workflow: "runninghub/image_flux.json"
|
||||
prompt_prefix: "Minimalist illustration style"
|
||||
|
||||
video:
|
||||
default_workflow: "runninghub/video_wan2.1_fusionx.json"
|
||||
prompt_prefix: "Minimalist illustration style"
|
||||
|
||||
tts:
|
||||
default_workflow: "selfhost/tts_edge.json"
|
||||
```
|
||||
@@ -48,6 +52,13 @@ comfyui:
|
||||
- `default_workflow`: Default image generation workflow
|
||||
- `prompt_prefix`: Prompt prefix
|
||||
|
||||
### Video Configuration
|
||||
|
||||
- `default_workflow`: Default video generation workflow
|
||||
- `runninghub/video_wan2.1_fusionx.json`: Cloud workflow (recommended, no local setup required)
|
||||
- `selfhost/video_wan2.1_fusionx.json`: Local workflow (requires local ComfyUI support)
|
||||
- `prompt_prefix`: Video prompt prefix (controls video generation style)
|
||||
|
||||
### TTS Configuration
|
||||
|
||||
- `default_workflow`: Default TTS workflow
|
||||
|
||||
@@ -154,15 +154,39 @@ Suitable for Instagram, WeChat Moments, and other platforms.
|
||||
|
||||
---
|
||||
|
||||
## Template Naming Convention
|
||||
|
||||
Templates follow a unified naming convention to distinguish different types:
|
||||
|
||||
- **`static_*.html`**: Static templates
|
||||
- No AI-generated media content required
|
||||
- Pure text style rendering
|
||||
- Suitable for quick generation and low-cost scenarios
|
||||
|
||||
- **`image_*.html`**: Image templates
|
||||
- Uses AI-generated images as background
|
||||
- Invokes ComfyUI image generation workflows
|
||||
- Suitable for content requiring visual illustrations
|
||||
|
||||
- **`video_*.html`**: Video templates
|
||||
- Uses AI-generated videos as background
|
||||
- Invokes ComfyUI video generation workflows
|
||||
- Creates dynamic video content with enhanced expressiveness
|
||||
|
||||
## Template Structure
|
||||
|
||||
Templates are located in the `templates/` directory, grouped by size:
|
||||
|
||||
```
|
||||
templates/
|
||||
├── 1080x1920/ # Portrait (11 templates)
|
||||
├── 1920x1080/ # Landscape (2 templates)
|
||||
└── 1080x1080/ # Square (1 template)
|
||||
├── 1080x1920/ # Portrait
|
||||
│ ├── static_*.html # Static templates
|
||||
│ ├── image_*.html # Image templates
|
||||
│ └── video_*.html # Video templates
|
||||
├── 1920x1080/ # Landscape
|
||||
│ └── image_*.html # Image templates
|
||||
└── 1080x1080/ # Square
|
||||
└── image_*.html # Image templates
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
@@ -16,10 +16,42 @@ Pixelle-Video is built on the ComfyUI architecture and supports custom workflows
|
||||
|
||||
Located in `workflows/selfhost/` or `workflows/runninghub/`
|
||||
|
||||
Used for Text-to-Speech, supporting various TTS engines:
|
||||
- Edge-TTS
|
||||
- Index-TTS (supports voice cloning)
|
||||
- Other ComfyUI-compatible TTS nodes
|
||||
|
||||
### Image Generation Workflows
|
||||
|
||||
Located in `workflows/selfhost/` or `workflows/runninghub/`
|
||||
|
||||
Used for generating static images as video backgrounds:
|
||||
- FLUX series models
|
||||
- Stable Diffusion series models
|
||||
- Other image generation models
|
||||
|
||||
### Video Generation Workflows
|
||||
|
||||
Located in `workflows/selfhost/` or `workflows/runninghub/`
|
||||
|
||||
**New Feature**: Supports AI video generation to create dynamic video content.
|
||||
|
||||
**Preset Workflows**:
|
||||
- `runninghub/video_wan2.1_fusionx.json`: Cloud workflow (recommended)
|
||||
- Based on WAN 2.1 model
|
||||
- No local setup required, accessed via RunningHub API
|
||||
- Supports Text-to-Video generation
|
||||
|
||||
- `selfhost/video_wan2.1_fusionx.json`: Local workflow
|
||||
- Requires local ComfyUI environment
|
||||
- Requires installation of corresponding video generation nodes
|
||||
- Suitable for users with local GPU
|
||||
|
||||
**Use Cases**:
|
||||
- Works with `video_*.html` templates
|
||||
- Automatically generates dynamic video backgrounds based on scripts
|
||||
- Enhances visual expressiveness and viewing experience
|
||||
|
||||
---
|
||||
|
||||
## Custom Workflows
|
||||
|
||||
@@ -21,6 +21,10 @@ comfyui:
|
||||
default_workflow: "runninghub/image_flux.json"
|
||||
prompt_prefix: "Minimalist illustration style"
|
||||
|
||||
video:
|
||||
default_workflow: "runninghub/video_wan2.1_fusionx.json"
|
||||
prompt_prefix: "Minimalist illustration style"
|
||||
|
||||
tts:
|
||||
default_workflow: "selfhost/tts_edge.json"
|
||||
```
|
||||
@@ -48,6 +52,13 @@ comfyui:
|
||||
- `default_workflow`: 默认图像生成工作流
|
||||
- `prompt_prefix`: 提示词前缀
|
||||
|
||||
### 视频配置
|
||||
|
||||
- `default_workflow`: 默认视频生成工作流
|
||||
- `runninghub/video_wan2.1_fusionx.json`: 云端工作流(推荐,无需本地环境)
|
||||
- `selfhost/video_wan2.1_fusionx.json`: 本地工作流(需要本地 ComfyUI 支持)
|
||||
- `prompt_prefix`: 视频提示词前缀(用于控制视频生成风格)
|
||||
|
||||
### TTS 配置
|
||||
|
||||
- `default_workflow`: 默认 TTS 工作流
|
||||
|
||||
@@ -154,15 +154,39 @@
|
||||
|
||||
---
|
||||
|
||||
## 模板命名规范
|
||||
|
||||
模板采用统一的命名规范来区分不同类型:
|
||||
|
||||
- **`static_*.html`**: 静态模板
|
||||
- 无需 AI 生成任何媒体内容
|
||||
- 纯文字样式渲染
|
||||
- 适合快速生成、低成本场景
|
||||
|
||||
- **`image_*.html`**: 图片模板
|
||||
- 使用 AI 生成的图片作为背景
|
||||
- 调用 ComfyUI 的图像生成工作流
|
||||
- 适合需要视觉配图的内容
|
||||
|
||||
- **`video_*.html`**: 视频模板
|
||||
- 使用 AI 生成的视频作为背景
|
||||
- 调用 ComfyUI 的视频生成工作流
|
||||
- 创建动态视频内容,增强表现力
|
||||
|
||||
## 模板结构
|
||||
|
||||
模板位于 `templates/` 目录,按尺寸分组:
|
||||
|
||||
```
|
||||
templates/
|
||||
├── 1080x1920/ # 竖屏(11个模板)
|
||||
├── 1920x1080/ # 横屏(2个模板)
|
||||
└── 1080x1080/ # 方形(1个模板)
|
||||
├── 1080x1920/ # 竖屏
|
||||
│ ├── static_*.html # 静态模板
|
||||
│ ├── image_*.html # 图片模板
|
||||
│ └── video_*.html # 视频模板
|
||||
├── 1920x1080/ # 横屏
|
||||
│ └── image_*.html # 图片模板
|
||||
└── 1080x1080/ # 方形
|
||||
└── image_*.html # 图片模板
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
@@ -16,10 +16,42 @@ Pixelle-Video 基于 ComfyUI 架构,支持自定义工作流。
|
||||
|
||||
位于 `workflows/selfhost/` 或 `workflows/runninghub/`
|
||||
|
||||
用于文本转语音(Text-to-Speech),支持多种 TTS 引擎:
|
||||
- Edge-TTS
|
||||
- Index-TTS(支持声音克隆)
|
||||
- 其他 ComfyUI 兼容的 TTS 节点
|
||||
|
||||
### 图像生成工作流
|
||||
|
||||
位于 `workflows/selfhost/` 或 `workflows/runninghub/`
|
||||
|
||||
用于生成静态图像作为视频背景:
|
||||
- FLUX 系列模型
|
||||
- Stable Diffusion 系列模型
|
||||
- 其他图像生成模型
|
||||
|
||||
### 视频生成工作流
|
||||
|
||||
位于 `workflows/selfhost/` 或 `workflows/runninghub/`
|
||||
|
||||
**新功能**:支持 AI 视频生成,创建动态视频内容。
|
||||
|
||||
**预置工作流**:
|
||||
- `runninghub/video_wan2.1_fusionx.json`: 云端工作流(推荐)
|
||||
- 基于 WAN 2.1 模型
|
||||
- 无需本地环境,通过 RunningHub API 调用
|
||||
- 支持文本到视频(Text-to-Video)
|
||||
|
||||
- `selfhost/video_wan2.1_fusionx.json`: 本地工作流
|
||||
- 需要本地 ComfyUI 环境
|
||||
- 需要安装相应的视频生成节点
|
||||
- 适合有本地 GPU 的用户
|
||||
|
||||
**使用场景**:
|
||||
- 配合 `video_*.html` 模板使用
|
||||
- 自动根据文案生成动态视频背景
|
||||
- 增强视频的视觉表现力和观看体验
|
||||
|
||||
---
|
||||
|
||||
## 自定义工作流
|
||||
|
||||
Reference in New Issue
Block a user