Update app.py
Browse files
app.py
CHANGED
|
@@ -144,11 +144,10 @@ with gr.Blocks() as demo:
|
|
| 144 |
|
| 145 |
with gr.Column(scale=1):
|
| 146 |
gr.Markdown("### Vídeo Base Gerado")
|
| 147 |
-
low_res_video_output = gr.Video(
|
| 148 |
|
| 149 |
# --- ETAPA 2: Pós-Produção (no rodapé, em abas) ---
|
| 150 |
with gr.Group(visible=False) as post_prod_group:
|
| 151 |
-
gr.Markdown("<hr style='margin-top: 20px; margin-bottom: 20px;'>")
|
| 152 |
gr.Markdown("## Etapa 2: Pós-Produção")
|
| 153 |
gr.Markdown("Use o vídeo gerado acima como entrada para as ferramentas abaixo. **O prompt e a CFG da Etapa 1 serão reutilizados.**")
|
| 154 |
|
|
@@ -175,7 +174,7 @@ with gr.Blocks() as demo:
|
|
| 175 |
seedvr_fps_output = gr.Number(label="FPS de Saída (0 = original)", value=0)
|
| 176 |
run_seedvr_button = gr.Button("Iniciar Upscaling SeedVR", variant="primary", interactive=(seedvr_inference_server is not None))
|
| 177 |
if not seedvr_inference_server:
|
| 178 |
-
gr.Markdown("
|
| 179 |
with gr.Column(scale=1):
|
| 180 |
gr.Markdown("### Resultado do Upscaling")
|
| 181 |
seedvr_video_output = gr.Video(label="Vídeo com Upscale SeedVR", interactive=False)
|
|
|
|
| 144 |
|
| 145 |
with gr.Column(scale=1):
|
| 146 |
gr.Markdown("### Vídeo Base Gerado")
|
| 147 |
+
low_res_video_output = gr.Video(interactive=False)
|
| 148 |
|
| 149 |
# --- ETAPA 2: Pós-Produção (no rodapé, em abas) ---
|
| 150 |
with gr.Group(visible=False) as post_prod_group:
|
|
|
|
| 151 |
gr.Markdown("## Etapa 2: Pós-Produção")
|
| 152 |
gr.Markdown("Use o vídeo gerado acima como entrada para as ferramentas abaixo. **O prompt e a CFG da Etapa 1 serão reutilizados.**")
|
| 153 |
|
|
|
|
| 174 |
seedvr_fps_output = gr.Number(label="FPS de Saída (0 = original)", value=0)
|
| 175 |
run_seedvr_button = gr.Button("Iniciar Upscaling SeedVR", variant="primary", interactive=(seedvr_inference_server is not None))
|
| 176 |
if not seedvr_inference_server:
|
| 177 |
+
gr.Markdown("Serviço SeedVR não disponível.")
|
| 178 |
with gr.Column(scale=1):
|
| 179 |
gr.Markdown("### Resultado do Upscaling")
|
| 180 |
seedvr_video_output = gr.Video(label="Vídeo com Upscale SeedVR", interactive=False)
|