File size: 11,173 Bytes
5fa5566 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
import gradio as gr
import os
from pathlib import Path
import subprocess
import asyncio
import threading
import signal
import sys
import re
from typing import Optional, List
from i18n.i18n import I18nAuto
from header import badges, description
i18n = I18nAuto()
# Variável global para armazenar o processo atual
current_process: Optional[subprocess.Popen] = None
# Força o uso de UTF-8 para o Python
os.environ["PYTHONIOENCODING"] = "utf-8"
# Para garantir que a codificação esteja correta no terminal
if sys.platform == "win32":
os.system('chcp 65001')
# Redefine a configuração de codificação da saída padrão
sys.stdout.reconfigure(encoding='utf-8')
sys.stderr.reconfigure(encoding='utf-8')
def clean_ansi(text: str) -> str:
"""Remove códigos ANSI e limpa o texto para exibição"""
ansi_escape = re.compile(r'\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])')
return ansi_escape.sub('', text)
def process_output(line: str, progress: gr.Progress) -> str:
"""Processa uma linha de saída e atualiza o progresso"""
clean_line = clean_ansi(line.strip())
# Procura por padrões de progresso
if "%" in clean_line:
try:
# Extrai o número do progresso
progress_match = re.search(r'(\d+\.?\d*)%', clean_line)
if progress_match:
progress_value = float(progress_match.group(1)) / 100
progress(progress_value, desc=clean_line)
except ValueError:
pass
return clean_line
def stop_process():
global current_process
if current_process:
try:
if os.name == 'nt':
current_process.terminate()
else:
os.killpg(os.getpgid(current_process.pid), signal.SIGTERM)
current_process.wait(timeout=5) # Espera até 5 segundos pelo término
except subprocess.TimeoutExpired:
if os.name == 'nt':
current_process.kill()
else:
os.killpg(os.getpgid(current_process.pid), signal.SIGKILL)
current_process = None
return "Process stopped by user"
return "No process running"
def run_legen(
input_path,
transcription_engine,
transcription_model,
compute_type,
device,
batch_size,
input_lang,
translate_lang,
video_codec,
audio_codec,
output_softsubs_path,
output_hardsubs_path,
normalize,
overwrite,
copy_files,
disable_srt,
disable_softsubs,
disable_hardsubs,
progress=gr.Progress()
):
global current_process
if not input_path:
return "Please provide an input path"
if not os.path.exists(input_path):
return "Input path does not exist"
if not os.path.exists("legen.py"):
return "legen.py not found in current directory"
cmd = ["python", "legen.py", "-i", input_path]
# Adiciona as flags baseadas nos checkboxes
if normalize: cmd.append("--norm")
if overwrite: cmd.append("--overwrite")
if copy_files: cmd.append("--copy_files")
if disable_srt: cmd.append("--disable_srt")
if disable_softsubs: cmd.append("--disable_softsubs")
if disable_hardsubs: cmd.append("--disable_hardsubs")
# Adiciona configurações de transcrição
cmd.extend(["-ts:e", transcription_engine])
cmd.extend(["-ts:m", transcription_model])
cmd.extend(["-ts:d", device])
cmd.extend(["-ts:c", compute_type])
cmd.extend(["-ts:b", str(batch_size)])
if translate_lang != "none":
cmd.extend(["--translate", translate_lang])
if input_lang != "auto":
cmd.extend(["--input_lang", input_lang])
# Adiciona configurações de codec
cmd.extend(["-c:v", video_codec])
cmd.extend(["-c:a", audio_codec])
# Adiciona caminhos de saída
if output_softsubs_path:
cmd.extend(["-o:s", output_softsubs_path])
if output_hardsubs_path:
cmd.extend(["-o:h", output_hardsubs_path])
try:
startupinfo = None
if os.name == 'nt':
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
current_process = subprocess.Popen(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, # Combina stderr com stdout
text=True,
bufsize=1,
universal_newlines=True,
startupinfo=startupinfo,
encoding='utf-8',
errors='replace',
preexec_fn=None if os.name == 'nt' else os.setsid
)
output_lines: List[str] = []
last_progress_update = 0
while True:
line = current_process.stdout.readline()
if not line and current_process.poll() is not None:
break
if line:
try:
clean_line = process_output(line, progress)
output_lines.append(clean_line)
# Atualiza a saída periodicamente
if len(output_lines) - last_progress_update >= 5:
yield "\n".join(output_lines)
last_progress_update = len(output_lines)
except Exception as e:
output_lines.append(f"Error processing output: {str(e)}")
if current_process.poll() == 0:
final_output = "Processing completed successfully!\n\n" + "\n".join(output_lines)
else:
final_output = f"Process ended with error code {current_process.poll()}\n\n" + "\n".join(output_lines)
current_process = None
return final_output
except Exception as e:
current_process = None
return f"Error: {str(e)}"
with gr.Blocks(theme=gr.themes.Soft()) as demo:
gr.Markdown(badges)
gr.Markdown(description)
title="LeGen"
with gr.Row():
with gr.Column():
# Input Section
with gr.Group():
input_path = gr.Textbox(label=i18n("Input Path"), placeholder=i18n("Enter path to file or folder"))
# Transcription Settings
with gr.Group():
transcription_engine = gr.Dropdown(
choices=["whisperx", "whisper"],
value="whisperx",
label=i18n("Transcription Engine")
)
with gr.Row():
transcription_model = gr.Dropdown(
choices=["tiny", "base", "small", "medium", "large", "large-v1", "large-v2", "large-v3", "large-v3-turbo",],
value="large-v3",
label=i18n("Model")
)
compute_type = gr.Dropdown(
choices=["auto", "int8", "float16", "float32"],
value="auto",
label=i18n("Compute Type")
)
with gr.Row():
device = gr.Dropdown(
choices=["auto", "cpu", "cuda"],
value="auto",
label=i18n("Device")
)
batch_size = gr.Number(
value=4,
label=i18n("Batch Size"),
precision=0
)
with gr.Row():
input_lang = gr.Dropdown(
choices=["auto", "en", "es", "pt", "fr", "de", "it", "ja", "ko", "zh"],
value="auto",
label=i18n("Input Language")
)
translate_lang = gr.Dropdown(
choices=["none", "en", "es", "pt", "fr", "de", "it", "ja", "ko", "zh"],
value="none",
label=i18n("Translate to")
)
with gr.Column():
# Output Settings
with gr.Group():
with gr.Row():
video_codec = gr.Dropdown(
choices=["h264", "libx264", "h264_vaapi", "h264_nvenc", "hevc", "libx265", "hevc_vaapi"],
value="h264",
label=i18n("Video Codec")
)
audio_codec = gr.Dropdown(
choices=["aac", "libopus", "mp3", "vorbis"],
value="aac",
label=i18n("Audio Codec")
)
output_softsubs_path = gr.Textbox(
value="softsubs_output",
label=i18n("Softsubs Output Path")
)
output_hardsubs_path = gr.Textbox(
value="hardsubs_output",
label=i18n("Hardsubs Output Path")
)
# Options
with gr.Group():
with gr.Row():
normalize = gr.Checkbox(label=i18n("Normalize folder times"), value=False)
overwrite = gr.Checkbox(label=i18n("Overwrite existing files"), value=False)
copy_files = gr.Checkbox(label=i18n("Copy non-video files"), value=False)
with gr.Row():
disable_srt = gr.Checkbox(label=i18n("Disable SRT generation"), value=False)
disable_softsubs = gr.Checkbox(label=i18n("Disable softsubs"), value=False)
disable_hardsubs = gr.Checkbox(label=i18n("Disable hardsubs"), value=False)
# Run Button, Stop Button and Output
with gr.Row():
with gr.Column():
run_btn = gr.Button(i18n("Run LeGen"), variant="primary")
stop_btn = gr.Button(i18n("Stop"), variant="stop")
output = gr.Textbox(label=i18n("Output"), lines=5)
# Connect the run button to the processing function
run_btn.click(
fn=run_legen,
inputs=[
input_path,
transcription_engine,
transcription_model,
compute_type,
device,
batch_size,
input_lang,
translate_lang,
video_codec,
audio_codec,
output_softsubs_path,
output_hardsubs_path,
normalize,
overwrite,
copy_files,
disable_srt,
disable_softsubs,
disable_hardsubs
],
outputs=output
)
stop_btn.click(
fn=stop_process,
inputs=[],
outputs=output
)
gr.Markdown("""
<center>WebUI Desenvolvida por Rafa.Godoy</center>
<center>Agradecimentos ao MatheusBach por desenvolver o LeGen</center>
""")
if __name__ == "__main__":
demo.launch() |