diff options
Diffstat (limited to 'shared/models/videos/caption')
-rw-r--r-- | shared/models/videos/caption/video-caption-update.model.ts | 4 | ||||
-rw-r--r-- | shared/models/videos/caption/video-caption.model.ts | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/shared/models/videos/caption/video-caption-update.model.ts b/shared/models/videos/caption/video-caption-update.model.ts new file mode 100644 index 000000000..ff5728715 --- /dev/null +++ b/shared/models/videos/caption/video-caption-update.model.ts | |||
@@ -0,0 +1,4 @@ | |||
1 | export interface VideoCaptionUpdate { | ||
2 | language: string | ||
3 | captionfile: Blob | ||
4 | } | ||
diff --git a/shared/models/videos/caption/video-caption.model.ts b/shared/models/videos/caption/video-caption.model.ts new file mode 100644 index 000000000..d3c73e1a6 --- /dev/null +++ b/shared/models/videos/caption/video-caption.model.ts | |||
@@ -0,0 +1,6 @@ | |||
1 | import { VideoConstant } from '../video-constant.model' | ||
2 | |||
3 | export interface VideoCaption { | ||
4 | language: VideoConstant<string> | ||
5 | captionPath: string | ||
6 | } | ||