diff options
author | Chocobozzz <me@florianbigard.com> | 2022-11-15 11:57:49 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-11-15 11:57:49 +0100 |
commit | 59a643aa5cf6775d27dfcc147b19c4537292d53c (patch) | |
tree | 74bc87e2f0f5581306c8ea9dd1f8acf05833a74a /client/src/standalone/videos/shared | |
parent | c2419476302b20e9fe3708d7a0a889ae18c95c1b (diff) | |
download | PeerTube-59a643aa5cf6775d27dfcc147b19c4537292d53c.tar.gz PeerTube-59a643aa5cf6775d27dfcc147b19c4537292d53c.tar.zst PeerTube-59a643aa5cf6775d27dfcc147b19c4537292d53c.zip |
Force autoplay when live starts
Using the mute
Diffstat (limited to 'client/src/standalone/videos/shared')
-rw-r--r-- | client/src/standalone/videos/shared/player-manager-options.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/standalone/videos/shared/player-manager-options.ts b/client/src/standalone/videos/shared/player-manager-options.ts index 87a84975b..9ec012369 100644 --- a/client/src/standalone/videos/shared/player-manager-options.ts +++ b/client/src/standalone/videos/shared/player-manager-options.ts | |||
@@ -155,6 +155,8 @@ export class PlayerManagerOptions { | |||
155 | captionsResponse: Response | 155 | captionsResponse: Response |
156 | live?: LiveVideo | 156 | live?: LiveVideo |
157 | 157 | ||
158 | forceAutoplay: boolean | ||
159 | |||
158 | authorizationHeader: () => string | 160 | authorizationHeader: () => string |
159 | videoFileToken: () => string | 161 | videoFileToken: () => string |
160 | 162 | ||
@@ -175,6 +177,7 @@ export class PlayerManagerOptions { | |||
175 | alreadyHadPlayer, | 177 | alreadyHadPlayer, |
176 | videoFileToken, | 178 | videoFileToken, |
177 | translations, | 179 | translations, |
180 | forceAutoplay, | ||
178 | playlistTracker, | 181 | playlistTracker, |
179 | live, | 182 | live, |
180 | authorizationHeader, | 183 | authorizationHeader, |
@@ -187,6 +190,7 @@ export class PlayerManagerOptions { | |||
187 | common: { | 190 | common: { |
188 | // Autoplay in playlist mode | 191 | // Autoplay in playlist mode |
189 | autoplay: alreadyHadPlayer ? true : this.autoplay, | 192 | autoplay: alreadyHadPlayer ? true : this.autoplay, |
193 | forceAutoplay, | ||
190 | 194 | ||
191 | controls: this.controls, | 195 | controls: this.controls, |
192 | controlBar: this.controlBar, | 196 | controlBar: this.controlBar, |