eeuuia commited on
Commit
f877bbb
·
verified ·
1 Parent(s): e13ea4b

Upload app (1).py

Browse files
Files changed (1) hide show
  1. api/ltx/app (1).py +203 -0
api/ltx/app (1).py ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FILE: app.py
2
+ # DESCRIPTION: Final Gradio web interface for the ADUC-SDR Video Suite.
3
+ # This version is refactored to use the central LtxAducOrchestrator, simplifying the UI logic
4
+ # and making it a pure client of the backend services.
5
+
6
+ import gradio as gr
7
+ import traceback
8
+ import sys
9
+ import os
10
+ import logging
11
+ from PIL import Image
12
+
13
+ # ==============================================================================
14
+ # --- IMPORTAÇÃO DOS SERVIÇOS DE BACKEND E UTILS ---
15
+ # ==============================================================================
16
+
17
+ #try:
18
+ # --- MUDANÇA PRINCIPAL: Importamos apenas o ORQUESTRADOR ---
19
+ # O orquestrador é agora nosso único ponto de entrada para a geração de vídeo.
20
+ from api.ltx.ltx_aduc_orchestrator import ltx_aduc_orchestrator
21
+
22
+ # O SeedVR (upscaler de resolução) ainda é um serviço separado que pode ser chamado após a geração.
23
+ from api.seedvr.seedvr_aduc_pipeline import seed_aduc_pipeline
24
+
25
+ # Nosso decorador de logging para depuração
26
+ from utils.debug_utils import log_function_io
27
+
28
+ logging.info("All backend services (Orchestrator, SeedVR) and debug utils imported successfully.")
29
+
30
+
31
+
32
+ # ==============================================================================
33
+ # --- FUNÇÕES WRAPPER (PONTE ENTRE UI E BACKEND) ---
34
+ # ==============================================================================
35
+
36
+ @log_function_io
37
+ def run_orchestrated_generation(
38
+ prompt: str, start_img_path: str,
39
+ height: int, width: int, duration: float,
40
+ fp_guidance_preset: str, fp_guidance_scale_list: str, fp_stg_scale_list: str,
41
+ fp_num_inference_steps: int,
42
+ progress=gr.Progress(track_tqdm=True)
43
+ ) -> tuple:
44
+ """
45
+ Função wrapper simplificada que coleta dados da UI e chama o orquestrador principal.
46
+ """
47
+ try:
48
+ logging.info("[UI] Request received. Submitting job to the main orchestrator...")
49
+
50
+ # Monta o dicionário de configurações avançadas LTX a partir da UI
51
+ ltx_configs = {
52
+ "guidance_preset": fp_guidance_preset,
53
+ "guidance_scale_list": fp_guidance_scale_list,
54
+ "stg_scale_list": fp_stg_scale_list,
55
+ "num_inference_steps": fp_num_inference_steps
56
+ }
57
+
58
+ # Carrega a imagem inicial para um objeto PIL, que é o que o orquestrador espera.
59
+ initial_image_pil = Image.open(start_img_path).convert("RGB") if start_img_path else None
60
+
61
+ # --- CHAMADA ÚNICA E LIMPA PARA O ORQUESTRADOR ---
62
+ video_path = ltx_aduc_orchestrator(
63
+ prompt=prompt,
64
+ initial_image=initial_image_pil,
65
+ height=height,
66
+ width=width,
67
+ duration_in_seconds=duration,
68
+ ltx_configs=ltx_configs
69
+ )
70
+
71
+ if not video_path:
72
+ raise RuntimeError("Orchestrator failed to return a valid video path. Check backend logs for details.")
73
+
74
+ logging.info(f"[UI] Orchestrator job successful. Video path: {video_path}")
75
+
76
+ # O estado agora pode ser mais simples, apenas guardando o caminho do vídeo gerado para o próximo passo (SeedVR).
77
+ new_state = {"low_res_video": video_path}
78
+ return video_path, new_state, gr.update(visible=True)
79
+
80
+ except Exception as e:
81
+ error_message = f"❌ An error occurred during the orchestrated generation:\n{e}"
82
+ logging.error(f"{error_message}\nDetails: {traceback.format_exc()}", exc_info=True)
83
+ raise gr.Error(error_message)
84
+
85
+
86
+ @log_function_io
87
+ def run_seedvr_upscaling(state: dict, seed: int, resolution: int, batch_size: int, fps: int, progress=gr.Progress(track_tqdm=True)) -> tuple:
88
+ """Wrapper para o upscale de resolução SeedVR. Esta função permanece a mesma."""
89
+ if not state or not state.get("low_res_video"):
90
+ raise gr.Error("Error: Please generate a base video in Step 1 before upscaling.")
91
+ if not seed_aduc_pipeline:
92
+ raise gr.Error("Error: The SeedVR upscaling server is not available.")
93
+
94
+ try:
95
+ logging.info(f"[UI] Requesting SeedVR upscaling for video: {state.get('low_res_video')}")
96
+ def progress_wrapper(p, desc=""): progress(p, desc=desc)
97
+
98
+ output_filepath = seed_aduc_pipeline.run_inference(
99
+ file_path=state["low_res_video"], seed=int(seed), resolution=int(resolution),
100
+ batch_size=int(batch_size), fps=float(fps), progress=progress_wrapper
101
+ )
102
+
103
+ status_message = f"✅ Upscaling complete!\nSaved to: {output_filepath}"
104
+ logging.info(f"[UI] SeedVR upscaling successful. Path: {output_filepath}")
105
+ return gr.update(value=output_filepath), gr.update(value=status_message)
106
+ except Exception as e:
107
+ error_message = f"❌ An error occurred during SeedVR Upscaling:\n{e}"
108
+ logging.error(f"{error_message}\nDetails: {traceback.format_exc()}", exc_info=True)
109
+ return None, gr.update(value=error_message)
110
+
111
+ # ==============================================================================
112
+ # --- CONSTRUÇÃO DA INTERFACE GRADIO ---
113
+ # ==============================================================================
114
+
115
+ def build_ui():
116
+ """Constrói a interface completa do Gradio."""
117
+ with gr.Blocks(theme=gr.themes.Soft(primary_hue="indigo")) as demo:
118
+ app_state = gr.State(value={"low_res_video": None})
119
+ ui_components = {}
120
+ gr.Markdown("# ADUC-SDR Video Suite - Orchestrated Workflow", elem_id="main-title")
121
+ with gr.Row():
122
+ with gr.Column(scale=1): _build_generation_controls(ui_components)
123
+ with gr.Column(scale=1):
124
+ gr.Markdown("### Etapa 1: Vídeo Base Gerado pelo Orquestrador")
125
+ ui_components['low_res_video_output'] = gr.Video(label="O resultado aparecerá aqui", interactive=False)
126
+ _build_postprod_controls(ui_components)
127
+ _register_event_handlers(app_state, ui_components)
128
+ return demo
129
+
130
+ def _build_generation_controls(ui: dict):
131
+ """Constrói os componentes da UI para a Etapa 1: Geração."""
132
+ gr.Markdown("### Configurações de Geração")
133
+ ui['prompt'] = gr.Textbox(label="Prompt(s) de Geração",
134
+ info="Escreva sua história. Cada nova linha será tratada como uma nova cena.",
135
+ value="Um leão majestoso caminha pela savana\nEle sobe em uma grande pedra e olha o horizonte",
136
+ lines=4)
137
+ ui['start_image'] = gr.Image(label="Imagem de Início (Opcional)", type="filepath", sources=["upload"])
138
+
139
+ with gr.Accordion("Parâmetros Principais", open=True):
140
+ ui['duration'] = gr.Slider(label="Duração Total (s)", value=4, step=1, minimum=1, maximum=30)
141
+ with gr.Row():
142
+ ui['height'] = gr.Slider(label="Altura", value=432, step=8, minimum=256, maximum=1024)
143
+ ui['width'] = gr.Slider(label="Largura", value=768, step=8, minimum=256, maximum=1024)
144
+
145
+ with gr.Accordion("Opções Avançadas LTX", open=False):
146
+ ui['fp_num_inference_steps'] = gr.Slider(label="Número de Passos", minimum=1, maximum=100, step=1, value=20)
147
+ ui['fp_guidance_preset'] = gr.Dropdown(label="Preset de Guiagem", choices=["Padrão (Recomendado)", "Customizado"], value="Padrão (Recomendado)")
148
+ with gr.Group(visible=False) as ui['custom_guidance_group']:
149
+ gr.Markdown("⚠️ Edite as listas em formato JSON. Ex: `[1.0, 2.5, 3.0]`")
150
+ ui['fp_guidance_scale_list'] = gr.Textbox(label="Lista de Guidance Scale", value="[1, 1, 6, 8, 6, 1, 1]")
151
+ ui['fp_stg_scale_list'] = gr.Textbox(label="Lista de STG Scale (Movimento)", value="[0, 0, 4, 4, 4, 2, 1]")
152
+
153
+ ui['generate_low_btn'] = gr.Button("1. Gerar Vídeo via Orquestrador", variant="primary")
154
+
155
+ def _build_postprod_controls(ui: dict):
156
+ """Constrói os componentes da UI para a Etapa 2: Pós-Produção (Upscaling)."""
157
+ with gr.Group(visible=False) as ui['post_prod_group']:
158
+ gr.Markdown("--- \n## Etapa 2: Pós-Produção")
159
+ with gr.Tabs():
160
+ with gr.TabItem("✨ Upscaler de Resolução (SeedVR)"):
161
+ is_seedvr_available = seed_aduc_pipeline is not None
162
+ if not is_seedvr_available:
163
+ gr.Markdown("🔴 **AVISO: O serviço SeedVR não está disponível.**")
164
+ with gr.Row():
165
+ with gr.Column(scale=1):
166
+ ui['seedvr_seed'] = gr.Slider(minimum=0, maximum=999999, value=42, step=1, label="Seed")
167
+ ui['seedvr_resolution'] = gr.Slider(minimum=720, maximum=2160, value=1080, step=8, label="Resolução Vertical Alvo")
168
+ ui['seedvr_batch_size'] = gr.Slider(minimum=1, maximum=16, value=4, step=1, label="Batch Size por GPU")
169
+ ui['seedvr_fps'] = gr.Number(label="FPS de Saída (0 = original)", value=0)
170
+ ui['run_seedvr_btn'] = gr.Button("2. Iniciar Upscaling SeedVR", variant="primary", interactive=is_seedvr_available)
171
+ with gr.Column(scale=1):
172
+ ui['seedvr_video_output'] = gr.Video(label="Vídeo com Upscale SeedVR", interactive=False)
173
+ ui['seedvr_status_box'] = gr.Textbox(label="Status do SeedVR", value="Aguardando...", lines=3, interactive=False)
174
+
175
+ def _register_event_handlers(app_state: gr.State, ui: dict):
176
+ """Registra todos os manipuladores de eventos do Gradio."""
177
+ def toggle_custom_guidance(preset_choice: str) -> gr.update:
178
+ return gr.update(visible=(preset_choice == "Customizado"))
179
+
180
+ ui['fp_guidance_preset'].change(fn=toggle_custom_guidance, inputs=ui['fp_guidance_preset'], outputs=ui['custom_guidance_group'])
181
+
182
+ gen_inputs = [
183
+ ui['prompt'], ui['start_image'],
184
+ ui['height'], ui['width'], ui['duration'],
185
+ ui['fp_guidance_preset'], ui['fp_guidance_scale_list'], ui['fp_stg_scale_list'],
186
+ ui['fp_num_inference_steps'],
187
+ ]
188
+ gen_outputs = [ui['low_res_video_output'], app_state, ui['post_prod_group']]
189
+
190
+ ui['generate_low_btn'].click(fn=run_orchestrated_generation, inputs=gen_inputs, outputs=gen_outputs)
191
+
192
+ if 'run_seedvr_btn' in ui and ui['run_seedvr_btn'].interactive:
193
+ seedvr_inputs = [app_state, ui['seedvr_seed'], ui['seedvr_resolution'], ui['seedvr_batch_size'], ui['seedvr_fps']]
194
+ seedvr_outputs = [ui['seedvr_video_output'], ui['seedvr_status_box']]
195
+ ui['run_seedvr_btn'].click(fn=run_seedvr_upscaling, inputs=seedvr_inputs, outputs=seedvr_outputs)
196
+
197
+ # ==============================================================================
198
+ # --- PONTO DE ENTRADA DA APLICAÇÃO ---
199
+ # ==============================================================================
200
+
201
+ if __name__ == "__main__":
202
+ demo = build_ui()
203
+ demo.queue().launch(server_name="0.0.0.0", server_port=7860, debug=True, show_error=True)