(videoId: string)
| 150 | } |
| 151 | |
| 152 | async 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 | |
| 161 | async function markNoAudio(videoId: string): Promise<void> { |
| 162 | "use step"; |
no test coverage detected