- fixes as a result of documentation, fixed secondaryVideo
- added muted option, changing tracks sets options.setTracks
- no positive values for startunix when live seeking
- dashjs tracks updated, videojs display tweaked
- fixes for track selection and live seeking
This commit is contained in:
Cat 2018-12-20 16:48:39 +01:00 committed by Thulinma
parent 0a1b00cb5e
commit 998d7c6d03
22 changed files with 283 additions and 119 deletions

View file

@ -88,8 +88,13 @@ svg.icon.timeout {
}
.mistvideo-secondaryVideo {
z-index: 1;
position: absolute;
right: 0;
top: 0;
width: 50%;
height: 50%;
max-width: fit-content;
max-height: fit-content;
}
.mistvideo-polling {
display: inline-block;

View file

@ -18,6 +18,7 @@
}
.mistvideo-video {
overflow: hidden;
outline: none;
}
svg.icon.loading {
z-index: -1; /* don't use display: none because of transition for [data-loading=stalled] */
@ -222,3 +223,6 @@ svg.icon.spin, svg.icon .spin {
animation: spin 1.5s infinite linear;
transform-origin: 50% 50%;
}
.vjs-text-track-display {
pointer-events: none;
}