-
Notifications
You must be signed in to change notification settings - Fork 2
/
sbv.py
59 lines (46 loc) · 1.47 KB
/
sbv.py
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
""" Procesar archivos SBV
Los archivos SBV son generados por YouTube como transcripción automática de los textos.
La idea es poder pasarlos a texto reutilizables en otros contextos.
"""
import sys
import re
print("sbv.py file.sbv -> genera file.txt")
print("Pensado para entrevistas")
sbv_file = sys.argv[1]
base_name = sbv_file.replace('.sbv', '')
f = open(sbv_file, 'r')
sbv_txt = f.read()
f.close()
registros = []
for linea in sbv_txt.split('\n'):
if re.match('[0-9]:[0-9]', linea):
ts = linea.split(',')
tiempo = {'ini': ts[0], 'fin': ts[1]}
ultimo_registro = {'tiempo': tiempo, 'texto': ''}
registros.append(ultimo_registro)
else:
if linea.strip() != '':
ultimo_registro['texto'] = linea
print('Registros: {}'.format(len(registros)))
# imprimir un srt
srt_file = '{}.srt'.format(base_name)
f = open(srt_file, 'w')
c = 1
for registro in registros:
f.write('{}\n'.format(c))
f.write('{} --> {}\n'.format(registro['tiempo']['ini'].replace('.', ','), registro['tiempo']['fin'].replace('.', ',')))
f.write('{}\n'.format(registro['texto']))
f.write('\n')
c += 1
f.close()
# limpiar un poco para escribir un txt
txt_file = '{}.txt'.format(base_name)
textos = [linea['texto'] for linea in registros]
txt = ' '.join(textos)
txt = txt.replace(' ', ' ')
txt = txt.replace('. ', '.\n') # dos espacios como markdown
f = open(txt_file, 'w')
f.write(txt)
f.close()
print('FINAL ********************')
print(txt)