Replies: 1 comment 4 replies
-
# write srt to the current directory
# writer will use the same base name as the audio file with '.srt' suffix
writer = get_writer("srt", ".")
writer(result, audio_file_path, {"max_line_width":55, "max_line_count":2, "highlight_words":False} ) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all. Basically I am trying to make this python script instead of console.logging I would like it to save the segmented results into a .srt file. But currently when I console log it its just in pure text, non segmented format
Which I call using this python interpreter
Beta Was this translation helpful? Give feedback.
All reactions