2021-11-21 10:16:22 +00:00
|
|
|
var layer = 'keywords'
|
2021-09-30 17:09:42 +00:00
|
|
|
var imageResolution = 480
|
2021-10-22 08:21:43 +00:00
|
|
|
var videoExtension
|
2021-09-30 17:09:42 +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]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-10-25 15:04:44 +00:00
|
|
|
src = src.replace('.webm', videoExtension)
|
|
|
|
if (src != video.src) {
|
|
|
|
video.src = src
|
|
|
|
}
|
2021-10-22 08:21:43 +00:00
|
|
|
}
|
|
|
|
|
2021-10-28 10:00:52 +00:00
|
|
|
function resize() {
|
|
|
|
var video = document.querySelector('video')
|
|
|
|
if (video && video._frame) {
|
|
|
|
var rect = video._frame.getBoundingClientRect();
|
|
|
|
video.style.top = (rect.top + window.scrollY) + 'px'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-10 15:46:19 +00:00
|
|
|
function updatePlayer(video, frame, currentTime, out, src) {
|
2021-09-30 17:09:42 +00:00
|
|
|
var rect = frame.getBoundingClientRect();
|
|
|
|
video.style.opacity = 0
|
|
|
|
video.style.top = (rect.top + window.scrollY) + 'px'
|
|
|
|
video.style.display = 'block';
|
2021-10-10 15:06:43 +00:00
|
|
|
if (src) {
|
2021-10-22 08:21:43 +00:00
|
|
|
setVideoSrc(video, src)
|
2021-10-10 15:06:43 +00:00
|
|
|
}
|
2021-09-30 17:09:42 +00:00
|
|
|
//video.poster = frame.querySelector('img').src
|
2021-10-11 18:43:44 +00:00
|
|
|
var muted = video.muted
|
2021-10-28 17:05:59 +00:00
|
|
|
// video.muted = true
|
2021-09-30 17:09:42 +00:00
|
|
|
video.currentTime = currentTime
|
2021-10-10 15:46:19 +00:00
|
|
|
video.dataset.in = currentTime
|
|
|
|
video.dataset.out = out
|
2021-10-11 09:28:51 +00:00
|
|
|
video._frame = frame
|
2021-10-11 18:43:44 +00:00
|
|
|
const show = event => {
|
|
|
|
video.style.opacity = 1
|
|
|
|
video.muted = muted
|
|
|
|
video.removeEventListener('seeked', show)
|
|
|
|
}
|
|
|
|
video.addEventListener('seeked', show)
|
2021-09-30 17:09:42 +00:00
|
|
|
video.play()
|
|
|
|
}
|
|
|
|
|
|
|
|
function isElementInViewport (el) {
|
|
|
|
var rect = el.getBoundingClientRect();
|
|
|
|
return (
|
|
|
|
rect.top >= 0 &&
|
|
|
|
rect.left >= 0 &&
|
|
|
|
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /* or $(window).height() */
|
2021-10-29 09:33:15 +00:00
|
|
|
Math.floor(rect.right) <= (window.innerWidth || document.documentElement.clientWidth) /* or $(window).width() */
|
2021-09-30 17:09:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onVisibilityChange(el, callback) {
|
|
|
|
var old_visible;
|
|
|
|
return function () {
|
|
|
|
var visible = isElementInViewport(el);
|
|
|
|
if (visible != old_visible) {
|
|
|
|
old_visible = visible;
|
2021-10-12 09:38:25 +00:00
|
|
|
if (visible) {
|
|
|
|
el.classList.add('visible')
|
|
|
|
} else {
|
|
|
|
el.classList.remove('visible')
|
|
|
|
}
|
2021-09-30 17:09:42 +00:00
|
|
|
if (typeof callback == 'function') {
|
|
|
|
callback(visible);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 09:28:51 +00:00
|
|
|
function scrollTo(element) {
|
|
|
|
var delta = element.offsetTop - document.scrollingElement.scrollTop,
|
|
|
|
duration = 1000, t = 40, n = duration / t,
|
|
|
|
step = delta / n;
|
|
|
|
|
|
|
|
function scroll() {
|
|
|
|
if (document.scrollingElement.scrollTop + step > element.offsetTop) {
|
|
|
|
document.scrollingElement.scrollTop = element.offsetTop
|
|
|
|
n = 0
|
|
|
|
} else {
|
|
|
|
document.scrollingElement.scrollTop += step
|
|
|
|
}
|
|
|
|
n--
|
|
|
|
if (n) setTimeout(scroll, t)
|
|
|
|
}
|
|
|
|
scroll()
|
|
|
|
}
|
|
|
|
|
2021-10-10 15:46:19 +00:00
|
|
|
function timeupdate(event) {
|
|
|
|
if (event.target.dataset.out && event.target.dataset.in) {
|
|
|
|
var in_= parseFloat(event.target.dataset.in)
|
|
|
|
var out_= parseFloat(event.target.dataset.out)
|
|
|
|
if (event.target.currentTime >= out_) {
|
2021-10-11 09:28:51 +00:00
|
|
|
/*
|
|
|
|
var next
|
|
|
|
if (event.target._frame) {
|
|
|
|
next = event.target._frame.parentElement.nextSibling
|
|
|
|
if (next) {
|
|
|
|
next = next.querySelector('.frame')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (next) {
|
|
|
|
scrollTo(next)
|
|
|
|
} else {
|
|
|
|
event.target.pause()
|
|
|
|
}
|
|
|
|
*/
|
2021-10-13 16:12:16 +00:00
|
|
|
if (config.pause) {
|
|
|
|
event.target.pause()
|
|
|
|
} else {
|
|
|
|
event.target.currentTime = in_
|
|
|
|
}
|
2021-10-10 15:46:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 13:50:19 +00:00
|
|
|
function formatInfo(config, ascroll) {
|
2021-10-21 15:24:26 +00:00
|
|
|
var info = document.createElement('div')
|
2021-10-11 13:50:19 +00:00
|
|
|
var h1 = document.createElement('h1')
|
|
|
|
h1.innerHTML = config.title
|
2021-10-21 15:24:26 +00:00
|
|
|
info.appendChild(h1)
|
2021-10-11 13:50:19 +00:00
|
|
|
var h2 = document.createElement('h2')
|
|
|
|
h2.innerHTML = config.byline
|
2021-10-21 15:24:26 +00:00
|
|
|
info.appendChild(h2)
|
2021-10-11 13:50:19 +00:00
|
|
|
var div = document.createElement('div')
|
|
|
|
div.classList.add('intro')
|
|
|
|
div.innerHTML = config.body
|
2021-10-21 15:24:26 +00:00
|
|
|
info.appendChild(div)
|
|
|
|
ascroll.appendChild(info)
|
|
|
|
return info
|
2021-10-11 13:50:19 +00:00
|
|
|
}
|
|
|
|
|
2021-10-11 18:43:44 +00:00
|
|
|
function showOverlay(event) {
|
2021-10-11 18:54:13 +00:00
|
|
|
event.stopPropagation()
|
|
|
|
event.preventDefault()
|
2021-10-11 18:43:44 +00:00
|
|
|
document.querySelectorAll('#video-overlay').forEach(element => element.remove())
|
|
|
|
var video = event.target
|
|
|
|
var rect = video.getBoundingClientRect();
|
|
|
|
var overlay = document.createElement('div')
|
|
|
|
overlay.id = 'video-overlay'
|
|
|
|
overlay.style.top = video.style.top
|
|
|
|
overlay.style.width = rect.width + 'px'
|
2021-10-13 15:35:28 +00:00
|
|
|
overlay.style.height = rect.height + 'px'
|
2021-10-11 18:43:44 +00:00
|
|
|
overlay.style.position = 'absolute'
|
|
|
|
overlay.style.display = 'flex'
|
|
|
|
overlay.style.alignItems = 'center'
|
|
|
|
overlay.style.justifyContent = 'center'
|
2021-10-26 10:26:07 +00:00
|
|
|
//overlay.style.fontSize = '45px'
|
2021-10-13 15:35:28 +00:00
|
|
|
video.controls = false
|
|
|
|
|
2021-10-26 10:26:07 +00:00
|
|
|
var off = `<span class="annotation-icon-wrapper animated"><span class="text f-icon-volume_off annotation-icon"></span>`
|
|
|
|
var on = `<span class="annotation-icon-wrapper"><span class="f-icon-volume_down annotation-icon"></span></span>`
|
2021-10-11 18:43:44 +00:00
|
|
|
|
|
|
|
if (video.muted) {
|
2021-10-13 15:35:28 +00:00
|
|
|
overlay.innerHTML = off
|
2021-10-11 18:43:44 +00:00
|
|
|
} else {
|
2021-10-13 15:35:28 +00:00
|
|
|
overlay.innerHTML = on
|
2021-10-11 18:43:44 +00:00
|
|
|
}
|
|
|
|
overlay.addEventListener('click', event=> {
|
|
|
|
video.muted = !video.muted
|
|
|
|
if (video.muted) {
|
2021-10-13 15:35:28 +00:00
|
|
|
overlay.innerHTML = off
|
2021-10-11 18:43:44 +00:00
|
|
|
} else {
|
2021-10-13 15:35:28 +00:00
|
|
|
overlay.innerHTML = on
|
2021-10-11 18:43:44 +00:00
|
|
|
}
|
|
|
|
})
|
2021-10-11 18:52:29 +00:00
|
|
|
var timeout = setTimeout(() => {
|
|
|
|
video.controls = false
|
2021-10-11 18:43:44 +00:00
|
|
|
overlay.remove()
|
2021-10-11 18:55:54 +00:00
|
|
|
}, 3000)
|
2021-10-11 18:52:29 +00:00
|
|
|
overlay.addEventListener('mousemove', event=> {
|
|
|
|
clearTimeout(timeout)
|
|
|
|
timeout = setTimeout(() => {
|
|
|
|
video.controls = false
|
|
|
|
overlay.remove()
|
|
|
|
}, 500)
|
2021-10-11 18:43:44 +00:00
|
|
|
})
|
|
|
|
video.parentElement.appendChild(overlay)
|
2021-10-11 18:52:29 +00:00
|
|
|
|
2021-10-11 18:43:44 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 11:05:09 +00:00
|
|
|
function renderAnnotation(config, video, ascroll, clip) {
|
2021-10-22 11:25:32 +00:00
|
|
|
var div = document.createElement('div')
|
|
|
|
div.classList.add('annotation')
|
2021-11-24 11:20:27 +00:00
|
|
|
var annotation = clip.annotations[0]
|
|
|
|
var color1 = `hsl(${clip.color1.hue}, 60%, 15%)`
|
|
|
|
var color2 = `hsl(${clip.color2.hue}, 60%, 15%)`
|
2021-10-22 11:25:32 +00:00
|
|
|
if (!config.first) {
|
|
|
|
config.first = annotation
|
|
|
|
config.info.style.background = color1
|
|
|
|
}
|
|
|
|
div.style.background = `linear-gradient(to bottom, ${color1}, ${color2})`;
|
|
|
|
var figcaption = ''
|
|
|
|
if (annotation.title) {
|
2021-11-22 22:02:23 +00:00
|
|
|
var title = annotation.title
|
|
|
|
var txt = `${title}`
|
2021-11-21 09:09:26 +00:00
|
|
|
figcaption = `<figcaption><a href="${pandoraURL}/${annotation.id}" target="_blank">${txt}</a></figcaption>`
|
2021-10-22 11:25:32 +00:00
|
|
|
}
|
2021-11-24 11:05:09 +00:00
|
|
|
var values = []
|
2021-11-24 11:20:27 +00:00
|
|
|
clip.annotations.forEach(a => {
|
2021-11-24 11:45:15 +00:00
|
|
|
values.push(a.value.replace(/src="\//g, `src="${streamPrefix}/`).replace(/href="\//g, `href="${pandoraURL}/`))
|
2021-11-24 11:05:09 +00:00
|
|
|
})
|
|
|
|
values = values.join('<br><br>')
|
2021-10-22 11:25:32 +00:00
|
|
|
div.innerHTML = `
|
|
|
|
<div class="frame">
|
|
|
|
<figure>
|
2021-11-24 11:45:15 +00:00
|
|
|
<img src="${streamPrefix}/${annotation.id.split('/')[0]}/${imageResolution}p${annotation.in}.jpg">
|
2021-10-22 11:25:32 +00:00
|
|
|
${figcaption}
|
|
|
|
</figure>
|
|
|
|
</div>
|
2021-11-24 11:05:09 +00:00
|
|
|
<div class="text">${values}</div>
|
2021-10-22 11:25:32 +00:00
|
|
|
`
|
|
|
|
ascroll.appendChild(div)
|
|
|
|
var frame = div.querySelector('.frame')
|
|
|
|
document.addEventListener('scroll', onVisibilityChange(div.querySelector('.frame'), function(visible) {
|
|
|
|
var src
|
|
|
|
if (config.edit) {
|
2021-11-24 11:45:15 +00:00
|
|
|
src = `${streamPrefix}/${annotation.id.split('/')[0]}/480p.webm`
|
2021-10-22 11:25:32 +00:00
|
|
|
}
|
|
|
|
if (config.loaded && visible) {
|
|
|
|
updatePlayer(video, frame, annotation['in'], annotation['out'], src)
|
|
|
|
}
|
|
|
|
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderAnnotations(config) {
|
|
|
|
var ascroll = document.querySelector('#ascroll')
|
|
|
|
config.loaded = false
|
|
|
|
var video = document.createElement('video')
|
|
|
|
video.classList.add('player')
|
|
|
|
video.playsinline = true
|
2021-10-25 08:47:29 +00:00
|
|
|
video.setAttribute('playsinline', 'playsinline')
|
|
|
|
video.setAttribute('webkit-playsinline', 'webkit-playsinline')
|
|
|
|
video.WebKitPlaysInline = true
|
2021-10-22 11:25:32 +00:00
|
|
|
video.muted = true
|
|
|
|
if (config.item) {
|
2021-11-24 11:45:15 +00:00
|
|
|
setVideoSrc(video, `${streamPrefix}/${config.item}/480p.webm`)
|
2021-10-22 11:25:32 +00:00
|
|
|
}
|
|
|
|
video.addEventListener('timeupdate', timeupdate)
|
|
|
|
video.addEventListener('touchstart', showOverlay)
|
|
|
|
video.addEventListener('mouseover', showOverlay)
|
|
|
|
var box = document.createElement('div')
|
|
|
|
box.classList.add('vbox')
|
|
|
|
box.appendChild(video)
|
|
|
|
ascroll.appendChild(box)
|
|
|
|
|
|
|
|
config.info = formatInfo(config, ascroll)
|
|
|
|
config.annotations.forEach(annotation => {
|
|
|
|
renderAnnotation(config, video, ascroll, annotation)
|
|
|
|
})
|
|
|
|
config.loaded = true
|
|
|
|
if (config.first) {
|
|
|
|
let frame = ascroll.querySelector('.annotation .frame')
|
|
|
|
if (frame) {
|
|
|
|
var src
|
|
|
|
if (config.edit) {
|
2021-11-24 11:45:15 +00:00
|
|
|
src = `${streamPrefix}/${config.first.id.split('/')[0]}/480p.webm`
|
2021-10-22 11:25:32 +00:00
|
|
|
}
|
|
|
|
updatePlayer(video, frame, config.first['in'], config.first['out'], src)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 15:24:26 +00:00
|
|
|
async function loadClips(annotations) {
|
|
|
|
var items = annotations.map(annotation => annotation.id.split('/')[0])
|
|
|
|
items = [...new Set(items)]
|
|
|
|
return pandoraAPI('findClips', {itemsQuery: {
|
|
|
|
conditions: [{key: 'id', operator: '&', value: items}]
|
|
|
|
}, range: [0, 10000], keys: [
|
|
|
|
'id', 'hue', 'saturation', 'lightness'
|
|
|
|
]}).then(response => {
|
|
|
|
var colors = {}
|
2021-11-24 11:05:09 +00:00
|
|
|
var clips = {}
|
2021-10-21 15:24:26 +00:00
|
|
|
response.data.items.forEach(clip => {
|
|
|
|
colors[clip.id] = clip
|
|
|
|
})
|
|
|
|
var previous
|
2021-11-24 11:20:27 +00:00
|
|
|
|
2021-10-21 15:24:26 +00:00
|
|
|
annotations.forEach(annotation => {
|
|
|
|
var clipId = annotation.id.split('/')[0] + '/' + annotation.in.toFixed(3) + '-'+ annotation.out.toFixed(3)
|
2021-11-24 11:20:27 +00:00
|
|
|
clips[clipId] = clips[clipId] || {
|
|
|
|
id: clipId,
|
|
|
|
color1: colors[clipId],
|
|
|
|
annotations: []
|
|
|
|
}
|
|
|
|
clips[clipId].annotations.push(annotation)
|
2021-10-21 15:24:26 +00:00
|
|
|
annotation.color1 = colors[clipId]
|
2021-11-24 11:20:27 +00:00
|
|
|
if(previous && previous.id != clipId) {
|
|
|
|
previous.color2 = clips[clipId].color1
|
|
|
|
}
|
|
|
|
if (!previous || previous.id != clipId) {
|
|
|
|
previous = clips[clipId]
|
2021-10-21 15:24:26 +00:00
|
|
|
}
|
|
|
|
})
|
2021-11-24 11:20:27 +00:00
|
|
|
var clips = Object.values(clips)
|
|
|
|
if (clips.length) {
|
|
|
|
clips[clips.length - 1].color2 = clips[0].color1
|
2021-10-21 15:39:49 +00:00
|
|
|
}
|
2021-11-24 11:05:09 +00:00
|
|
|
//return annotations
|
2021-11-24 11:20:27 +00:00
|
|
|
return clips
|
2021-10-21 15:24:26 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-10-22 11:25:32 +00:00
|
|
|
function loadAnnotations(config) {
|
2021-11-24 10:53:13 +00:00
|
|
|
var layers = config.layer
|
|
|
|
if (!Array.isArray(layers)) {
|
|
|
|
layers = [layers]
|
|
|
|
}
|
2021-10-22 11:25:32 +00:00
|
|
|
if (config.item) {
|
2021-10-26 10:47:33 +00:00
|
|
|
pandoraAPI('get', {id: config.item, keys: [
|
|
|
|
'layers'
|
|
|
|
]}).then(response => {
|
2021-11-24 10:47:47 +00:00
|
|
|
var annotations = []
|
2021-11-24 10:53:13 +00:00
|
|
|
layers.forEach(layer => {
|
|
|
|
response.data.layers[layer].forEach(annotation => {
|
|
|
|
if (!(config.user && annotation.user != config.user)) {
|
|
|
|
annotations.push(annotation)
|
|
|
|
}
|
2021-11-24 10:47:47 +00:00
|
|
|
})
|
2021-11-24 10:53:13 +00:00
|
|
|
})
|
2021-10-22 11:25:32 +00:00
|
|
|
loadClips(annotations).then(annotations => {
|
2021-10-29 14:04:34 +00:00
|
|
|
config.annotations = annotations.filter(annotation => {
|
|
|
|
if (config.only_e) {
|
|
|
|
if (annotation.value.slice(0, 2) == 'E:') {
|
|
|
|
annotation.value = annotation.value.slice(2).trim()
|
|
|
|
return true
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
} else {
|
2021-11-24 11:05:09 +00:00
|
|
|
return annotation
|
2021-10-29 14:04:34 +00:00
|
|
|
}
|
|
|
|
})
|
2021-10-22 11:25:32 +00:00
|
|
|
renderAnnotations(config)
|
2021-10-21 15:24:26 +00:00
|
|
|
})
|
|
|
|
})
|
2021-10-22 11:25:32 +00:00
|
|
|
} else {
|
2021-11-01 10:44:09 +00:00
|
|
|
var cited = {}
|
2021-10-22 11:25:32 +00:00
|
|
|
pandoraAPI('getEdit', {id: config.edit, keys: []}).then(response => {
|
|
|
|
var annotations = []
|
|
|
|
response.data.clips.forEach(clip => {
|
2021-11-01 10:44:09 +00:00
|
|
|
cited[clip.item] = {
|
|
|
|
title: clip.title,
|
|
|
|
director: clip.director,
|
|
|
|
id: clip.item
|
|
|
|
}
|
2021-11-24 10:53:13 +00:00
|
|
|
layers.forEach(layer => {
|
|
|
|
clip.layers[layer].forEach(annotation => {
|
|
|
|
if (config.user && annotation.user != config.user) {
|
|
|
|
return
|
2021-10-29 13:45:21 +00:00
|
|
|
}
|
2021-11-24 10:53:13 +00:00
|
|
|
;['title', 'director', 'date'].forEach(key => {
|
|
|
|
annotation[key] = clip[key]
|
|
|
|
})
|
|
|
|
if (config.only_e) {
|
|
|
|
if (annotation.value.slice(0, 2) == 'E:') {
|
|
|
|
annotation.value = annotation.value.slice(2).trim()
|
|
|
|
annotations.push(annotation)
|
|
|
|
}
|
|
|
|
} else {
|
2021-11-24 11:06:18 +00:00
|
|
|
//if (annotation.value.slice(0, 2) != 'E:') {
|
2021-11-24 10:53:13 +00:00
|
|
|
annotations.push(annotation)
|
2021-11-24 11:06:18 +00:00
|
|
|
//}
|
2021-10-29 14:04:34 +00:00
|
|
|
}
|
2021-11-24 10:53:13 +00:00
|
|
|
})
|
2021-11-24 11:05:09 +00:00
|
|
|
})
|
2021-10-22 11:25:32 +00:00
|
|
|
})
|
|
|
|
loadClips(annotations).then(annotations => {
|
|
|
|
config.annotations = annotations
|
2021-11-01 10:44:09 +00:00
|
|
|
config.cited = Object.values(cited)
|
2021-10-22 11:25:32 +00:00
|
|
|
renderAnnotations(config)
|
2021-10-10 15:06:43 +00:00
|
|
|
})
|
|
|
|
})
|
2021-10-22 11:25:32 +00:00
|
|
|
}
|
2021-10-10 15:06:43 +00:00
|
|
|
}
|
|
|
|
|
2021-10-21 13:39:38 +00:00
|
|
|
config.layer = config.layer || layer
|
|
|
|
|
2021-11-24 11:05:09 +00:00
|
|
|
if (false && config.annotations) {
|
2021-10-22 11:25:32 +00:00
|
|
|
renderAnnotations(config)
|
|
|
|
} else {
|
2021-10-22 12:40:24 +00:00
|
|
|
loadAnnotations(config)
|
2021-10-10 15:06:43 +00:00
|
|
|
}
|
2021-10-28 10:00:52 +00:00
|
|
|
|
|
|
|
window.addEventListener('resize', resize, false);
|