aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/caption
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-08-14 14:59:53 +0200
committerChocobozzz <me@florianbigard.com>2018-08-14 15:00:01 +0200
commit59c76ffa8f503e962d517c78f033f1beccb1de1a (patch)
treed567991b10cffd59322dd679d5188e7d1ec7ddce /shared/models/videos/caption
parent13b6dc1f3437560c55a5dfc3a94a2b162654e5c9 (diff)
downloadPeerTube-59c76ffa8f503e962d517c78f033f1beccb1de1a.tar.gz
PeerTube-59c76ffa8f503e962d517c78f033f1beccb1de1a.tar.zst
PeerTube-59c76ffa8f503e962d517c78f033f1beccb1de1a.zip
Flat shared module directory
Diffstat (limited to 'shared/models/videos/caption')
-rw-r--r--shared/models/videos/caption/video-caption-update.model.ts4
-rw-r--r--shared/models/videos/caption/video-caption.model.ts6
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 @@
1export 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 @@
1import { VideoConstant } from '../video-constant.model'
2
3export interface VideoCaption {
4 language: VideoConstant<string>
5 captionPath: string
6}