Skip to content
Open
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
5 changes: 5 additions & 0 deletions apps/web/lib/transcribe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ export async function transcribeVideo(
`[transcribeVideo] Triggering transcription workflow for video ${videoId}`,
);

await db()
.update(videos)
.set({ transcriptionStatus: "PROCESSING" })
.where(eq(videos.id, videoId));

Comment on lines +118 to +122
await start(transcribeVideoWorkflow, [
{
videoId,
Expand Down
Loading