Spaces:
Runtime error
Runtime error
linebreak
Browse files
src/runners/transcription_zipper.py
CHANGED
@@ -22,6 +22,8 @@ class TranscriptionZipper(bentoml.Runnable):
|
|
22 |
orig_filename = orig_filename.removesuffix(".mp3")
|
23 |
else:
|
24 |
orig_filename = orig_filename.removesuffix(".wav")
|
|
|
|
|
25 |
new_content = create_word_content(orig_filename, t_list[1], t_list[2])
|
26 |
new_content.save(orig_filename + '.docx')
|
27 |
# new_content = create_content(t_list[1], t_list[2]) # html string
|
@@ -42,6 +44,7 @@ def create_word_content(filename, old_content, new_content):
|
|
42 |
document.add_heading(filename, 1)
|
43 |
|
44 |
p = document.add_paragraph()
|
|
|
45 |
|
46 |
old_content = old_content.split(" ")
|
47 |
changed_content = new_content.split(" ")
|
|
|
22 |
orig_filename = orig_filename.removesuffix(".mp3")
|
23 |
else:
|
24 |
orig_filename = orig_filename.removesuffix(".wav")
|
25 |
+
|
26 |
+
print(orig_filename)
|
27 |
new_content = create_word_content(orig_filename, t_list[1], t_list[2])
|
28 |
new_content.save(orig_filename + '.docx')
|
29 |
# new_content = create_content(t_list[1], t_list[2]) # html string
|
|
|
44 |
document.add_heading(filename, 1)
|
45 |
|
46 |
p = document.add_paragraph()
|
47 |
+
p.add_breaks()
|
48 |
|
49 |
old_content = old_content.split(" ")
|
50 |
changed_content = new_content.split(" ")
|