summaryrefslogtreecommitdiffstats
path: root/templates/page.tmpl
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2021-11-24 01:55:22 -0500
committerSacha Chua <sacha@sachachua.com>2021-11-24 01:55:22 -0500
commit935af5dc7c5864d752bf92e5a0d0383578e4c139 (patch)
tree77f7aa4b04856b0bd549a3c7115348cc7a21d9bd /templates/page.tmpl
parent61a3836775202bd04de3abb9842dcfec08c213b0 (diff)
downloademacsconf-wiki-935af5dc7c5864d752bf92e5a0d0383578e4c139.tar.xz
emacsconf-wiki-935af5dc7c5864d752bf92e5a0d0383578e4c139.zip
Chapters
Diffstat (limited to '')
-rw-r--r--templates/page.tmpl44
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl
index d6cd9e3e..f93afdfc 100644
--- a/templates/page.tmpl
+++ b/templates/page.tmpl
@@ -309,5 +309,49 @@ transcriptDiv.appendChild(transcriptLink)
}
// @license-end
</script>
+<script>
+ // @license magnet:?xt=urn:btih:90dc5c0be029de84e523b9b3922520e79e0e6f08&dn=cc0.txt txt CC0-1.0
+ // Copyright (c) 2021 Sacha Chua
+ // Based on http://thenewcode.com/977/Create-Interactive-HTML5-Video-with-WebVTT-Chapters
+ function displayChapters(trackElement){
+ console.log(trackElement);
+ if ((trackElement) && (textTrack = trackElement.track)){
+ if (textTrack.kind === "chapters"){
+ textTrack.mode = 'hidden';
+ var video = trackElement.closest('video');
+ var chapterList = trackElement.closest('.video-card').querySelector('ol');
+ for (var i = 0; i < textTrack.cues.length; ++i) {
+ cue = textTrack.cues[i],
+ chapterName = cue.text,
+ start = cue.startTime,
+ chapter = document.createElement("li");
+ chapter.setAttribute('data-start', start);
+ date = new Date(0);
+ date.setSeconds(cue.startTime);
+ var chapterDescription = document.createTextNode(date.toISOString().substr(14, 5) + ' ' + cue.text);
+ chapter.appendChild(chapterDescription);
+ //locationList.insertBefore(newLocale);
+ chapter.addEventListener("click",
+ function() {
+ video.currentTime = this.getAttribute('data-start');
+ },false);
+ chapterList.append(chapter);
+ }
+ textTrack.addEventListener("cuechange",
+ function() {
+ var currentLocation = this.activeCues[0].startTime;
+ if (chapter = chapterList.querySelector('data-start=[' + currentLocation + ']')) {
+ var locations = [].slice.call(chapterList.querySelectorAll("li"));
+ for (var i = 0; i < locations.length; ++i) {
+ locations[i].classList.remove("current");
+ }
+ chapter.classList.add("current");
+ }
+ },false);
+ }
+ }
+ }
+ // @license-end
+</script>
</body>
</html>