phantasma/app/static/js/film.js

74 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-10-22 09:56:05 +00:00
var videoExtension
var continueTimecode
2021-10-22 09:56:05 +00:00
2021-10-22 08:21:43 +00:00
function setVideoSrc(video, src) {
var ext
if (!videoExtension) {
[
['video/mp4; codecs="avc1.42E01E, mp4a.40.2"', '.mp4'],
['video/webm; codecs="vp8, vorbis"', '.webm'],
].forEach(opt => {
if (videoExtension) { return }
if (video.canPlayType(opt[0]).replace('no', '')) {
videoExtension = opt[1]
}
})
}
video.src = src.replace('.webm', videoExtension)
}
2021-10-25 08:23:06 +00:00
var video
2021-10-22 08:21:43 +00:00
2021-10-11 14:38:22 +00:00
document.querySelector('a#play-fullscreen').addEventListener('click', event => {
2021-10-22 09:56:05 +00:00
event.preventDefault()
event.stopPropagation()
2021-10-25 08:23:06 +00:00
if (!video) {
video = document.createElement('video')
video.classList.add('player')
2021-10-25 08:29:40 +00:00
video.classList.add('fullscreen')
2021-10-25 08:23:06 +00:00
setVideoSrc(video, 'https://pad.ma/' + film.id + '/480p.webm')
video.controls = true
document.querySelector('main').appendChild(video)
video.style.display = 'none'
if (continueTimecode) {
video.currentTime = continueTimecode
2021-10-25 07:53:39 +00:00
}
2021-10-25 08:23:06 +00:00
function enterFullscreen(event) {
video.removeEventListener('play', enterFullscreen);
if (video.webkitRequestFullscreen) {
video.requestFullscreen();
} else {
video.requestFullscreen().catch(err => {
console.log(`Error attempting to enable full-screen mode: ${err.message} (${err.name})`);
video.remove()
video = null
});
}
setTimeout(() => {
video.style.display = 'block'
}, 150)
}
video.addEventListener('play', enterFullscreen);
video.addEventListener('fullscreenchange', event => {
if (document.fullscreenElement === null) {
continueTimecode = video.currentTime
video.remove()
if (document.fullscreenElement) {
document.exitFullscreen();
}
video = null
}
});
video.addEventListener('pause', event => {
})
video.addEventListener('ended', event => {
continueTimecode = 0
2021-10-11 14:38:22 +00:00
video.remove()
if (document.fullscreenElement) {
document.exitFullscreen();
}
2021-10-25 08:23:06 +00:00
video = null
});
video.play()
}
2021-10-11 14:38:22 +00:00
})