Files

14 lines
1.4 KiB
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_105 = VersionInfo.of({
version: '0.2.105:0',
releaseNotes: {
en_US:
"Bug fix — hardware backend's transcribeAudio hung forever on short audio (anything fitting in a single transcribe chunk, i.e. ≤ 5 minutes at the default settings). Two symptoms: (1) the SSE transcript_complete event arrived with transcript:\"\" because the single-shot code path emitted segments but never stitched them into bracketed [mm:ss]-prefixed text; (2) when pipelined-analyze was in use (Internal Meetings, and YouTube videos shorter than the chunk threshold), the analyze worker waited forever on chunkBuffer.waitForTime(audioSec) because the single-shot path never fired the onChunkComplete callback that advances the buffer's covered-time cursor. Diarization was also silently skipped for short audio for the same reason — the short-circuit bypassed the diarize+cluster code paths entirely. Fix: short-audio runs now flow through the same worker loop as multi-chunk runs by synthesizing a single chunk descriptor that points at the original audio file (no ffmpeg cut needed). Diarization, onChunkComplete, cross-chunk clustering, and bracketed-text stitching all run uniformly regardless of chunk count. Benefits Internal Meetings (Path 2A) AND short YouTube videos that take the hardware backend.",
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})