LocalAI/backend/python/faster-whisper
Arkadiusz Tymiński 503904d311
fix(faster-whisper): cast segment timestamps to int after multiplication (#9674)
`int(x) * 1e9` returns a float because `1e9` is a float literal, but
TranscriptSegment.start/end are integer protobuf fields. This caused
every transcription request to fail with:

  TypeError: 'float' object cannot be interpreted as an integer

Multiply first, then cast — `int(x * 1e9)` — to get an int as required.
2026-05-05 23:46:39 +02:00
..
backend.py fix(faster-whisper): cast segment timestamps to int after multiplication (#9674) 2026-05-05 23:46:39 +02:00
install.sh fix: try to add whisperx and faster-whisper for more variants (#9278) 2026-04-08 21:23:38 +02:00
Makefile feat(mlx): add mlx backend (#6049) 2025-08-22 08:42:29 +02:00
protogen.sh feat: Add backend gallery (#5607) 2025-06-15 14:56:52 +02:00
requirements-cpu.txt feat(faster-whisper): add backend (#4666) 2025-01-23 08:06:18 +01:00
requirements-cublas12.txt feat(faster-whisper): add backend (#4666) 2025-01-23 08:06:18 +01:00
requirements-cublas13.txt feat: add cuda13 images (#7404) 2025-12-02 14:24:35 +01:00
requirements-hipblas.txt feat(rocm): bump to 7.x (#9323) 2026-04-12 08:51:30 +02:00
requirements-intel.txt feat(qwen-tts): add Qwen-tts backend (#8163) 2026-01-23 15:18:41 +01:00
requirements-l4t12.txt fix: try to add whisperx and faster-whisper for more variants (#9278) 2026-04-08 21:23:38 +02:00
requirements-l4t13.txt fix: try to add whisperx and faster-whisper for more variants (#9278) 2026-04-08 21:23:38 +02:00
requirements-mps.txt feat(metal): try to extend support to remaining backends (#8374) 2026-02-03 21:57:50 +01:00
requirements.txt fix(deps): pin grpcio (#5621) 2025-06-10 14:21:51 +02:00
run.sh feat: Add backend gallery (#5607) 2025-06-15 14:56:52 +02:00
test.sh feat: Add backend gallery (#5607) 2025-06-15 14:56:52 +02:00