Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the num of segments into TranscriptionInfo #1053

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions faster_whisper/transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class TranscriptionInfo(NamedTuple):
all_language_probs: Optional[List[Tuple[str, float]]]
transcription_options: TranscriptionOptions
vad_options: VadOptions
num_of_segments: int


# The code below is originally from HF pipeline and is used in whisper-x
Expand Down Expand Up @@ -1016,6 +1017,8 @@ def transcribe(
if speech_chunks:
segments = restore_speech_timestamps(segments, speech_chunks, sampling_rate)

num_of_segments = len(list(segments))

info = TranscriptionInfo(
language=language,
language_probability=language_probability,
Expand All @@ -1024,6 +1027,7 @@ def transcribe(
transcription_options=options,
vad_options=vad_parameters,
all_language_probs=all_language_probs,
num_of_segments=num_of_segments,
)
return segments, info

Expand Down
Loading