MCPcopy
hub / github.com/collabora/WhisperLive / get_segment_start

Method get_segment_start

whisper_live/backend/base.py:330–331  ·  view source on GitHub ↗
(self, segment)

Source from the content-addressed store, hash-verified

328 return getattr(segment, "no_speech_prob", 0)
329
330 def get_segment_start(self, segment):
331 return getattr(segment, "start", getattr(segment, "start_ts", 0))
332
333 def get_segment_end(self, segment):
334 return getattr(segment, "end", getattr(segment, "end_ts", 0))

Calls

no outgoing calls