Hi everyone
In my previous post I described about how things working out in video editor special page. From this post I will talk about how videos getting viewed synchronized with other content.
As I previously mentioned, I am using a JavaScript library called Popcorn. By using it, we can capture the time events from HTML5 videos.
In the special page for video viewing, I will read data saved in MySQL database and generate a JavaScript to play content data. Following is a sample generated JavaScript for a particular video.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener("DOMContentLoaded", function () { | |
var popcorn = Popcorn("#ourvideo"); | |
popcorn.footnote({ | |
start: 1, | |
end: 6, | |
target: "footnote", | |
text: "Sample 1 content here" | |
}); | |
popcorn.footnote({ | |
start: 6, | |
end: 7, | |
target: "footnote", | |
text: "Sample 2 content here" | |
}); | |
popcorn.footnote({ | |
start: 11, | |
end: 19, | |
target: "footnote", | |
text: "Sample 3 content here" | |
}); | |
popcorn.footnote({ | |
start: 19, | |
end: 5000, | |
target: "footnote", | |
text: "Sample 4 content here" | |
}); | |
}, false); |
You can download my source code for the complete extension form here.