优化webui文案和README
This commit is contained in:
@@ -331,9 +331,10 @@
|
||||
"batch.task": "Task",
|
||||
"batch.error": "Error",
|
||||
"batch.error_detail": "View detailed error stack",
|
||||
"pipeline.standard.name": "Standard Video",
|
||||
"pipeline.asset_based.name": "Asset-Based Video",
|
||||
"pipeline.asset_based.description": "Generate videos from user-provided assets",
|
||||
"pipeline.quick_create.name": "Quick Create",
|
||||
"pipeline.quick_create.description": "Input an idea, AI completes the entire video for you",
|
||||
"pipeline.custom_media.name": "Custom Media",
|
||||
"pipeline.custom_media.description": "Use your own photos/videos, AI adds narration and voiceover",
|
||||
"asset_based.section.assets": "📦 Asset Upload",
|
||||
"asset_based.section.video_info": "📝 Video Information",
|
||||
"asset_based.section.source": "⚙️ Service Configuration",
|
||||
|
||||
@@ -331,9 +331,10 @@
|
||||
"batch.task": "任务",
|
||||
"batch.error": "错误信息",
|
||||
"batch.error_detail": "查看详细错误堆栈",
|
||||
"pipeline.standard.name": "标准视频",
|
||||
"pipeline.asset_based.name": "素材视频",
|
||||
"pipeline.asset_based.description": "基于用户上传的素材生成视频",
|
||||
"pipeline.quick_create.name": "快速创作",
|
||||
"pipeline.quick_create.description": "输入一个想法,AI帮你完成整条视频",
|
||||
"pipeline.custom_media.name": "自定义素材",
|
||||
"pipeline.custom_media.description": "用你自己的照片/视频,AI帮你配文案和配音",
|
||||
"asset_based.section.assets": "📦 素材上传",
|
||||
"asset_based.section.video_info": "📝 视频信息",
|
||||
"asset_based.section.source": "⚙️ 服务配置",
|
||||
|
||||
@@ -37,16 +37,16 @@ class AssetBasedPipelineUI(PipelineUI):
|
||||
UI for the Asset-Based Video Generation Pipeline.
|
||||
Generates videos from user-provided assets (images/videos).
|
||||
"""
|
||||
name = "asset_based"
|
||||
icon = "📦"
|
||||
name = "custom_media"
|
||||
icon = "🎨"
|
||||
|
||||
@property
|
||||
def display_name(self):
|
||||
return tr("pipeline.asset_based.name")
|
||||
return tr("pipeline.custom_media.name")
|
||||
|
||||
@property
|
||||
def description(self):
|
||||
return tr("pipeline.asset_based.description")
|
||||
return tr("pipeline.custom_media.description")
|
||||
|
||||
def render(self, pixelle_video: Any):
|
||||
# Three-column layout
|
||||
|
||||
@@ -33,12 +33,16 @@ class StandardPipelineUI(PipelineUI):
|
||||
UI for the Standard Video Generation Pipeline.
|
||||
Implements the classic 3-column layout.
|
||||
"""
|
||||
name = "standard"
|
||||
icon = "🎬"
|
||||
name = "quick_create"
|
||||
icon = "⚡"
|
||||
|
||||
@property
|
||||
def display_name(self):
|
||||
return tr("pipeline.standard.name")
|
||||
return tr("pipeline.quick_create.name")
|
||||
|
||||
@property
|
||||
def description(self):
|
||||
return tr("pipeline.quick_create.description")
|
||||
|
||||
def render(self, pixelle_video: Any):
|
||||
# Three-column layout
|
||||
|
||||
Reference in New Issue
Block a user