1
0
Fork 0

Add autoplay parameter in embed

This commit is contained in:
Chocobozzz 2018-03-27 10:34:40 +02:00
parent 73c0809326
commit da99ccf268
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -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: {