(videoId: string)
| 159 | } |
| 160 | |
| 161 | async function markNoAudio(videoId: string): Promise<void> { |
| 162 | "use step"; |
| 163 | |
| 164 | await db() |
| 165 | .update(videos) |
| 166 | .set({ transcriptionStatus: "NO_AUDIO" }) |
| 167 | .where(eq(videos.id, videoId as Video.VideoId)); |
| 168 | } |
| 169 | |
| 170 | async function markError(videoId: string): Promise<void> { |
| 171 | "use step"; |
no test coverage detected