-
Apologies for a basic question: what does I was hoping that
However, when running the below command with Whisper…
…the console output is sentence-segmented:
…and the resulting
Presuming Whisper is working as intended and I am not configuring the command incorrectly, are we to understand that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The console output is there to indicate transcription progress and is unaffected by this option. The the Also, if you truly want SRT (i.e. subtitles), there is a variation on this known as Karaoke subtitles, which is possible when enabling both the |
Beta Was this translation helpful? Give feedback.
The console output is there to indicate transcription progress and is unaffected by this option.
The
srt
format is also unaffected by this because SRT is intended as a format for displaying subtitles, represented by whole lines of text (of an appropriate size that makes them easily readable when displayed below the media).the
--word_timestamps
option asks Whisper to internally infer timestamps for each word, but if you want to see them outputted, then you also need to select an output format suitable for words. For example,--output_format json
will include a"words"
key in each segment containing a list of the individual words and their timestamps for that segment.Also, if you truly wa…