We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0319f12 commit 651d84bCopy full SHA for 651d84b
src/content/stream/example-video/index.yaml
@@ -5,6 +5,7 @@ description: A Super cool video
5
products:
6
- workers
7
- workers-ai
8
+transcript: ./transcript.vtt
9
chapters:
10
00:01: Chapter 1
11
00:02: Chapter 2
src/schemas/stream.ts
@@ -7,6 +7,7 @@ export const streamSchema = z.object({
title: z.string(),
description: z.string(),
products: z.array(reference("products")),
+ transcript: z.string().optional(),
chapters: z.record(z.string(), z.string()).optional(),
12
tags: z.array(z.string()).optional(),
13
thumbnail: z
0 commit comments