Spaces:
Configuration error
Configuration error
File size: 9,842 Bytes
313814b dc4f25f 2a79f48 313814b 39ee116 313814b 2a79f48 313814b 2a79f48 313814b 2a79f48 23ca7f9 2a79f48 313814b 2a79f48 313814b 2a79f48 313814b 2a79f48 313814b dc4f25f 313814b dc4f25f 313814b dc4f25f 313814b dc4f25f 313814b 2a79f48 313814b 2a79f48 313814b 2a79f48 313814b dc4f25f 2a79f48 313814b 2a79f48 313814b 2a79f48 313814b 2a79f48 313814b 323aa51 313814b dc4f25f 313814b 2a79f48 313814b dc4f25f 313814b 2a79f48 313814b dc4f25f 313814b 2a79f48 313814b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
from __future__ import annotations
import re
from typing import TYPE_CHECKING
from pydantic import BaseModel
from faster_whisper_server.config import config
if TYPE_CHECKING:
from collections.abc import Iterable
import faster_whisper.transcribe
class Word(BaseModel):
start: float
end: float
word: str
probability: float
@classmethod
def from_segments(cls, segments: Iterable[Segment]) -> list[Word]:
words: list[Word] = []
for segment in segments:
# NOTE: a temporary "fix" for https://github.com/fedirz/faster-whisper-server/issues/58.
# TODO: properly address the issue
assert (
segment.words is not None
), "Segment must have words. If you are using an API ensure `timestamp_granularities[]=word` is set"
words.extend(segment.words)
return words
def offset(self, seconds: float) -> None:
self.start += seconds
self.end += seconds
@classmethod
def common_prefix(cls, a: list[Word], b: list[Word]) -> list[Word]:
i = 0
while i < len(a) and i < len(b) and canonicalize_word(a[i].word) == canonicalize_word(b[i].word):
i += 1
return a[:i]
class Segment(BaseModel):
id: int
seek: int
start: float
end: float
text: str
tokens: list[int]
temperature: float
avg_logprob: float
compression_ratio: float
no_speech_prob: float
words: list[Word] | None
@classmethod
def from_faster_whisper_segments(cls, segments: Iterable[faster_whisper.transcribe.Segment]) -> Iterable[Segment]:
for segment in segments:
yield cls(
id=segment.id,
seek=segment.seek,
start=segment.start,
end=segment.end,
text=segment.text,
tokens=segment.tokens,
temperature=segment.temperature,
avg_logprob=segment.avg_logprob,
compression_ratio=segment.compression_ratio,
no_speech_prob=segment.no_speech_prob,
words=[
Word(
start=word.start,
end=word.end,
word=word.word,
probability=word.probability,
)
for word in segment.words
]
if segment.words is not None
else None,
)
class Transcription:
def __init__(self, words: list[Word] = []) -> None:
self.words: list[Word] = []
self.extend(words)
@property
def text(self) -> str:
return " ".join(word.word for word in self.words).strip()
@property
def start(self) -> float:
return self.words[0].start if len(self.words) > 0 else 0.0
@property
def end(self) -> float:
return self.words[-1].end if len(self.words) > 0 else 0.0
@property
def duration(self) -> float:
return self.end - self.start
def after(self, seconds: float) -> Transcription:
return Transcription(words=[word for word in self.words if word.start > seconds])
def extend(self, words: list[Word]) -> None:
self._ensure_no_word_overlap(words)
self.words.extend(words)
def _ensure_no_word_overlap(self, words: list[Word]) -> None:
if len(self.words) > 0 and len(words) > 0:
if words[0].start + config.word_timestamp_error_margin <= self.words[-1].end:
raise ValueError(
f"Words overlap: {self.words[-1]} and {words[0]}. Error margin: {config.word_timestamp_error_margin}" # noqa: E501
)
for i in range(1, len(words)):
if words[i].start + config.word_timestamp_error_margin <= words[i - 1].end:
raise ValueError(f"Words overlap: {words[i - 1]} and {words[i]}. All words: {words}")
def is_eos(text: str) -> bool:
if text.endswith("..."):
return False
return any(text.endswith(punctuation_symbol) for punctuation_symbol in ".?!")
def test_is_eos() -> None:
assert not is_eos("Hello")
assert not is_eos("Hello...")
assert is_eos("Hello.")
assert is_eos("Hello!")
assert is_eos("Hello?")
assert not is_eos("Hello. Yo")
assert not is_eos("Hello. Yo...")
assert is_eos("Hello. Yo.")
def to_full_sentences(words: list[Word]) -> list[list[Word]]:
sentences: list[list[Word]] = [[]]
for word in words:
sentences[-1].append(word)
if is_eos(word.word):
sentences.append([])
if len(sentences[-1]) == 0 or not is_eos(sentences[-1][-1].word):
sentences.pop()
return sentences
def tests_to_full_sentences() -> None:
def word(text: str) -> Word:
return Word(word=text, start=0.0, end=0.0, probability=0.0)
assert to_full_sentences([]) == []
assert to_full_sentences([word(text="Hello")]) == []
assert to_full_sentences([word(text="Hello..."), word(" world")]) == []
assert to_full_sentences([word(text="Hello..."), word(" world.")]) == [[word("Hello..."), word(" world.")]]
assert to_full_sentences([word(text="Hello..."), word(" world."), word(" How")]) == [
[word("Hello..."), word(" world.")],
]
def word_to_text(words: list[Word]) -> str:
return "".join(word.word for word in words)
def words_to_text_w_ts(words: list[Word]) -> str:
return "".join(f"{word.word}({word.start:.2f}-{word.end:.2f})" for word in words)
def segments_to_text(segments: Iterable[Segment]) -> str:
return "".join(segment.text for segment in segments).strip()
def srt_format_timestamp(ts: float) -> str:
hours = ts // 3600
minutes = (ts % 3600) // 60
seconds = ts % 60
milliseconds = (ts * 1000) % 1000
return f"{int(hours):02d}:{int(minutes):02d}:{int(seconds):02d},{int(milliseconds):03d}"
def test_srt_format_timestamp() -> None:
assert srt_format_timestamp(0.0) == "00:00:00,000"
assert srt_format_timestamp(1.0) == "00:00:01,000"
assert srt_format_timestamp(1.234) == "00:00:01,234"
assert srt_format_timestamp(60.0) == "00:01:00,000"
assert srt_format_timestamp(61.0) == "00:01:01,000"
assert srt_format_timestamp(61.234) == "00:01:01,234"
assert srt_format_timestamp(3600.0) == "01:00:00,000"
assert srt_format_timestamp(3601.0) == "01:00:01,000"
assert srt_format_timestamp(3601.234) == "01:00:01,234"
assert srt_format_timestamp(23423.4234) == "06:30:23,423"
def vtt_format_timestamp(ts: float) -> str:
hours = ts // 3600
minutes = (ts % 3600) // 60
seconds = ts % 60
milliseconds = (ts * 1000) % 1000
return f"{int(hours):02d}:{int(minutes):02d}:{int(seconds):02d}.{int(milliseconds):03d}"
def test_vtt_format_timestamp() -> None:
assert vtt_format_timestamp(0.0) == "00:00:00.000"
assert vtt_format_timestamp(1.0) == "00:00:01.000"
assert vtt_format_timestamp(1.234) == "00:00:01.234"
assert vtt_format_timestamp(60.0) == "00:01:00.000"
assert vtt_format_timestamp(61.0) == "00:01:01.000"
assert vtt_format_timestamp(61.234) == "00:01:01.234"
assert vtt_format_timestamp(3600.0) == "01:00:00.000"
assert vtt_format_timestamp(3601.0) == "01:00:01.000"
assert vtt_format_timestamp(3601.234) == "01:00:01.234"
assert vtt_format_timestamp(23423.4234) == "06:30:23.423"
def segments_to_vtt(segment: Segment, i: int) -> str:
start = segment.start if i > 0 else 0.0
result = f"{vtt_format_timestamp(start)} --> {vtt_format_timestamp(segment.end)}\n{segment.text}\n\n"
if i == 0:
return f"WEBVTT\n\n{result}"
else:
return result
def segments_to_srt(segment: Segment, i: int) -> str:
return f"{i + 1}\n{srt_format_timestamp(segment.start)} --> {srt_format_timestamp(segment.end)}\n{segment.text}\n\n"
def canonicalize_word(text: str) -> str:
text = text.lower()
# Remove non-alphabetic characters using regular expression
text = re.sub(r"[^a-z]", "", text)
return text.lower().strip().strip(".,?!")
def test_canonicalize_word() -> None:
assert canonicalize_word("ABC") == "abc"
assert canonicalize_word("...ABC?") == "abc"
assert canonicalize_word("... AbC ...") == "abc"
def common_prefix(a: list[Word], b: list[Word]) -> list[Word]:
i = 0
while i < len(a) and i < len(b) and canonicalize_word(a[i].word) == canonicalize_word(b[i].word):
i += 1
return a[:i]
def test_common_prefix() -> None:
def word(text: str) -> Word:
return Word(word=text, start=0.0, end=0.0, probability=0.0)
a = [word("a"), word("b"), word("c")]
b = [word("a"), word("b"), word("c")]
assert common_prefix(a, b) == [word("a"), word("b"), word("c")]
a = [word("a"), word("b"), word("c")]
b = [word("a"), word("b"), word("d")]
assert common_prefix(a, b) == [word("a"), word("b")]
a = [word("a"), word("b"), word("c")]
b = [word("a")]
assert common_prefix(a, b) == [word("a")]
a = [word("a")]
b = [word("a"), word("b"), word("c")]
assert common_prefix(a, b) == [word("a")]
a = [word("a")]
b = []
assert common_prefix(a, b) == []
a = []
b = [word("a")]
assert common_prefix(a, b) == []
a = [word("a"), word("b"), word("c")]
b = [word("b"), word("c")]
assert common_prefix(a, b) == []
def test_common_prefix_and_canonicalization() -> None:
def word(text: str) -> Word:
return Word(word=text, start=0.0, end=0.0, probability=0.0)
a = [word("A...")]
b = [word("a?"), word("b"), word("c")]
assert common_prefix(a, b) == [word("A...")]
a = [word("A..."), word("B?"), word("C,")]
b = [word("a??"), word(" b"), word(" ,c")]
assert common_prefix(a, b) == [word("A..."), word("B?"), word("C,")]
|