From 9ad12286ae2ba60ad0ca85de4fa46f3b5779d81d Mon Sep 17 00:00:00 2001 From: mrjvs Date: Fri, 29 Dec 2023 17:41:29 +0100 Subject: [PATCH] Update .docs/content/2.essentials/4.using-streams.md Co-authored-by: Jip Frijlink --- .docs/content/2.essentials/4.using-streams.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docs/content/2.essentials/4.using-streams.md b/.docs/content/2.essentials/4.using-streams.md index eafbb94..8441dfb 100644 --- a/.docs/content/2.essentials/4.using-streams.md +++ b/.docs/content/2.essentials/4.using-streams.md @@ -75,7 +75,7 @@ If your target is set to `BROWSER`. There will never be required headers, as it' All streams have a list of captions at `Stream.captions`. The structure looks like this: ```ts type Caption = { - type: CaptionType; // language type, either 'srt' or 'vtt' + type: CaptionType; // file type, either 'srt' or 'vtt' id: string; // only unique per stream url: string; // the url pointing to the subtitle file hasCorsRestrictions: boolean; // If true, you will need to proxy it if you're running in a browser