Add autoplay parameter in embed
This commit is contained in:
parent
73c0809326
commit
da99ccf268
1 changed files with 10 additions and 1 deletions
|
@ -24,9 +24,18 @@ loadVideoInfo(videoId)
|
|||
const previewUrl = window.location.origin + videoInfo.previewPath
|
||||
videoElement.poster = previewUrl
|
||||
|
||||
let autoplay = false
|
||||
|
||||
try {
|
||||
let params = new URL(window.location.toString()).searchParams
|
||||
autoplay = params.has('autoplay') && (params.get('autoplay') === '1' || params.get('autoplay') === 'true')
|
||||
} catch (err) {
|
||||
console.error('Cannot get params from URL.', err)
|
||||
}
|
||||
|
||||
const videojsOptions = {
|
||||
controls: true,
|
||||
autoplay: false,
|
||||
autoplay,
|
||||
inactivityTimeout: 500,
|
||||
plugins: {
|
||||
peertube: {
|
||||
|
|
Loading…
Reference in a new issue