支持历史生成结果的呈现逻辑

This commit is contained in:
puke
2025-11-18 15:52:27 +08:00
parent 9c01c3a9a5
commit dfa2f76c5b
11 changed files with 1198 additions and 64 deletions

View File

@@ -13,14 +13,14 @@
"""
Pixelle-Video Web UI - Main Entry Point
A modular web interface for generating short videos from content.
This is the entry point for the Streamlit multi-page application.
Uses st.navigation to define pages and set the default page to Home.
"""
import sys
from pathlib import Path
# Add project root to sys.path for module imports
# This ensures imports work correctly in both development and packaged environments
_script_dir = Path(__file__).resolve().parent
_project_root = _script_dir.parent
if str(_project_root) not in sys.path:
@@ -28,16 +28,6 @@ if str(_project_root) not in sys.path:
import streamlit as st
# Import state management
from web.state.session import init_session_state, init_i18n, get_pixelle_video
# Import components
from web.components.header import render_header
from web.components.settings import render_advanced_settings
from web.components.content_input import render_content_input, render_bgm_section, render_version_info
from web.components.style_config import render_style_config
from web.components.output_preview import render_output_preview
# Setup page config (must be first Streamlit command)
st.set_page_config(
page_title="Pixelle-Video - AI Video Generator",
@@ -48,56 +38,24 @@ st.set_page_config(
def main():
"""Main UI entry point"""
# Initialize session state and i18n
init_session_state()
init_i18n()
"""Main entry point with navigation"""
# Define pages using st.Page
home_page = st.Page(
"pages/1_🎬_Home.py",
title="Home",
icon="🎬",
default=True
)
# Render header (title + language selector)
render_header()
history_page = st.Page(
"pages/2_📚_History.py",
title="History",
icon="📚"
)
# Initialize Pixelle-Video
pixelle_video = get_pixelle_video()
# Render system configuration (LLM + ComfyUI)
render_advanced_settings()
# Three-column layout
left_col, middle_col, right_col = st.columns([1, 1, 1])
# ========================================================================
# Left Column: Content Input & BGM
# ========================================================================
with left_col:
# Content input (mode, text, title, n_scenes)
content_params = render_content_input()
# BGM selection (bgm_path, bgm_volume)
bgm_params = render_bgm_section()
# Version info & GitHub link
render_version_info()
# ========================================================================
# Middle Column: Style Configuration
# ========================================================================
with middle_col:
# Style configuration (TTS, template, workflow, etc.)
style_params = render_style_config(pixelle_video)
# ========================================================================
# Right Column: Output Preview
# ========================================================================
with right_col:
# Combine all parameters
video_params = {
**content_params,
**bgm_params,
**style_params
}
# Render output preview (generate button, progress, video preview)
render_output_preview(pixelle_video, video_params)
# Set up navigation and run
pg = st.navigation([home_page, history_page])
pg.run()
if __name__ == "__main__":