Add earing Impaired suptitle flag support (#754)

This commit is contained in:
Felipe Marinho
2025-01-03 21:26:51 -03:00
committed by GitHub
parent cd89e757c1
commit 2ee313d5f6
12 changed files with 101 additions and 26 deletions
@@ -95,6 +95,10 @@ export const SubtitleP = TrackP.extend({
* Is this an external subtitle (as in stored in a different file)
*/
isExternal: z.boolean(),
/**
* Is this a hearing impaired subtitle?
*/
isHearingImpaired: z.boolean(),
});
export type Subtitle = z.infer<typeof SubtitleP>;