mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.7 KiB
JavaScript
103 lines
3.7 KiB
JavaScript
let player = null;
|
|
|
|
function setupPlayer(isEditor, source, startTrim, endTrim) {
|
|
document.getElementById("my-player").style.display = "";
|
|
//Make poster of DB logo in correct aspect ratio, to control initial size of fluid container.
|
|
const options = {
|
|
sources: [{src: source}],
|
|
liveui: true,
|
|
controls: true,
|
|
autoplay: false,
|
|
width: 1280,
|
|
height: 420,
|
|
playbackRates: [0.5, 1, 1.25, 1.5, 2],
|
|
inactivityTimeout: 0,
|
|
controlBar: {
|
|
fullscreenToggle: true,
|
|
volumePanel: {
|
|
inline: false,
|
|
},
|
|
},
|
|
};
|
|
if (player) {
|
|
//Destroy and recreate the player if it already exists.
|
|
player.dispose();
|
|
document.getElementById("EditorContainer").innerHTML = `
|
|
<video id="my-player" class="video-js" controls disablePictureInPicture preload="auto">
|
|
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
|
|
</video>
|
|
`;
|
|
}
|
|
player = videojs("my-player", options, function onPlayerReady() {
|
|
videojs.log("Video player is ready");
|
|
|
|
// Set player volume to 50% by default
|
|
const defaultVolume = 0.5;
|
|
this.volume(defaultVolume);
|
|
|
|
this.vhs.playlists.on("loadedmetadata", function () {
|
|
player.hasStarted(true); //So it displays all the controls.
|
|
if (isEditor) {
|
|
const stream_start = player.vhs.playlists.master.playlists.filter(
|
|
playlist => typeof playlist.discontinuityStarts !== "undefined"
|
|
)[0].dateTimeObject;
|
|
startTrim = startTrim ? (new Date(startTrim + "Z") - stream_start) / 1000 : 0;
|
|
endTrim = endTrim ? (new Date(endTrim + "Z") - stream_start) / 1000 : player.duration();
|
|
const trimmingControls = player.trimmingControls({startTrim: startTrim, endTrim: endTrim});
|
|
}
|
|
});
|
|
|
|
this.on("error", function () {
|
|
videojs.log("Could not load video stream");
|
|
alert("No video available for stream.");
|
|
});
|
|
});
|
|
const hlsQS = player.hlsQualitySelector();
|
|
}
|
|
|
|
function mapDiscontinuities() {
|
|
const playlist = player.vhs.playlists.master.playlists.filter(
|
|
playlist => typeof playlist.discontinuityStarts !== "undefined"
|
|
)[0]; //Only one of the playlists will have the discontinuity or stream start objects, and it's not necessarily the first one or the source one.
|
|
const discontinuities = playlist.discontinuityStarts.map(segmentIndex => {
|
|
return {
|
|
segmentIndex: segmentIndex,
|
|
segmentTimestamp: playlist.segments[segmentIndex].dateTimeObject,
|
|
playbackIndex: null,
|
|
};
|
|
});
|
|
const lastDiscontinuity = playlist.discontinuityStarts.slice(-1).pop(); //Assumes discontinuities are sorted in ascending order.
|
|
|
|
let durationMarker = 0;
|
|
for (let index = 0; index <= lastDiscontinuity; index++) {
|
|
const segment = playlist.segments[index];
|
|
if (segment.discontinuity) {
|
|
discontinuities.find(discontinuity => discontinuity.segmentIndex == index).playbackIndex =
|
|
durationMarker;
|
|
}
|
|
durationMarker += segment.duration;
|
|
}
|
|
|
|
return discontinuities;
|
|
}
|
|
|
|
function getRealTimeForPlayerTime(discontinuities, playbackIndex) {
|
|
let streamStart = player.vhs.playlists.master.playlists.filter(
|
|
playlist => typeof playlist.dateTimeObject !== "undefined"
|
|
)[0].dateTimeObject; //Only one of the playlists will have the discontinuity or stream start objects, and it's not necessarily the first one or the source one.
|
|
|
|
//Find last discontinuity before playbackIndex
|
|
const lastDiscontinuity = discontinuities
|
|
.filter(discontinuity => discontinuity.playbackIndex < playbackIndex)
|
|
.slice(-1)
|
|
.pop();
|
|
if (lastDiscontinuity) {
|
|
streamStart = lastDiscontinuity.segmentTimestamp;
|
|
playbackIndex -= lastDiscontinuity.playbackIndex;
|
|
}
|
|
|
|
const realTime = streamStart.getTime() + playbackIndex * 1000;
|
|
|
|
return isFinite(realTime) ? new Date(realTime).toISOString() : null;
|
|
}
|