MCPcopy
hub / github.com/CapSoftware/Cap / markSkipped

Function markSkipped

apps/web/workflows/transcribe.ts:152–159  ·  view source on GitHub ↗
(videoId: string)

Source from the content-addressed store, hash-verified

150}
151
152async function markSkipped(videoId: string): Promise<void> {
153 "use step";
154
155 await db()
156 .update(videos)
157 .set({ transcriptionStatus: "SKIPPED" })
158 .where(eq(videos.id, videoId as Video.VideoId));
159}
160
161async function markNoAudio(videoId: string): Promise<void> {
162 "use step";

Callers 1

transcribeVideoWorkflowFunction · 0.70

Calls 2

dbFunction · 0.90
updateMethod · 0.80

Tested by

no test coverage detected