diff options
Diffstat (limited to 'client/src/standalone/videos/embed.ts')
-rw-r--r-- | client/src/standalone/videos/embed.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts index 32bf42e12..28c10c75c 100644 --- a/client/src/standalone/videos/embed.ts +++ b/client/src/standalone/videos/embed.ts | |||
@@ -168,6 +168,7 @@ class PeerTubeEmbed { | |||
168 | subtitle: string | 168 | subtitle: string |
169 | enableApi = false | 169 | enableApi = false |
170 | startTime: number | string = 0 | 170 | startTime: number | string = 0 |
171 | stopTime: number | string | ||
171 | mode: PlayerMode | 172 | mode: PlayerMode |
172 | scope = 'peertube' | 173 | scope = 'peertube' |
173 | 174 | ||
@@ -262,6 +263,7 @@ class PeerTubeEmbed { | |||
262 | this.scope = this.getParamString(params, 'scope', this.scope) | 263 | this.scope = this.getParamString(params, 'scope', this.scope) |
263 | this.subtitle = this.getParamString(params, 'subtitle') | 264 | this.subtitle = this.getParamString(params, 'subtitle') |
264 | this.startTime = this.getParamString(params, 'start') | 265 | this.startTime = this.getParamString(params, 'start') |
266 | this.stopTime = this.getParamString(params, 'stop') | ||
265 | 267 | ||
266 | this.mode = this.getParamString(params, 'mode') === 'p2p-media-loader' ? 'p2p-media-loader' : 'webtorrent' | 268 | this.mode = this.getParamString(params, 'mode') === 'p2p-media-loader' ? 'p2p-media-loader' : 'webtorrent' |
267 | } catch (err) { | 269 | } catch (err) { |
@@ -306,6 +308,7 @@ class PeerTubeEmbed { | |||
306 | loop: this.loop, | 308 | loop: this.loop, |
307 | captions: videoCaptions.length !== 0, | 309 | captions: videoCaptions.length !== 0, |
308 | startTime: this.startTime, | 310 | startTime: this.startTime, |
311 | stopTime: this.stopTime, | ||
309 | subtitle: this.subtitle, | 312 | subtitle: this.subtitle, |
310 | 313 | ||
311 | videoCaptions, | 314 | videoCaptions, |