File size: 1,027 Bytes
d170240 |
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 |
import whisper
# Cargar el modelo de Whisper
model = whisper.load_model("base")
# Transcribir el archivo WAV
result = model.transcribe("entrada.wav")
# Función para formatear los tiempos en el estilo SRT
def format_timestamp(seconds):
hours = int(seconds // 3600)
minutes = int((seconds % 3600) // 60)
seconds = int(seconds % 60)
milliseconds = int((seconds % 1) * 1000)
return f"{hours:02}:{minutes:02}:{seconds:02},{milliseconds:03}"
# Guardar la transcripción en formato SRT
with open("transcripcion.srt", "w", encoding="utf-8") as srt_file:
for i, segment in enumerate(result["segments"]):
# Escribe el número del segmento
srt_file.write(f"{i + 1}\n")
# Escribe el tiempo de inicio y fin
start_time = format_timestamp(segment["start"])
end_time = format_timestamp(segment["end"])
srt_file.write(f"{start_time} --> {end_time}\n")
# Escribe el texto
srt_file.write(f"{segment['text'].strip()}\n\n")
|