Use pre-existing dash manifest wherever possible.

Useful for videos where only OTF streams are available.
This commit is contained in:
FireMasterK 2021-08-16 01:24:34 +05:30
parent e07ac8016a
commit 631c50ba33
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD

View file

@ -94,12 +94,14 @@ export default {
if (this.video.livestream) {
uri = this.video.hls;
} else if (this.video.audioStreams.length > 0 && !lbry && MseSupport) {
const dash = require("@/utils/DashUtils.js").default.generate_dash_file_from_formats(
streams,
this.video.duration,
);
if (!this.video.dash) {
const dash = require("@/utils/DashUtils.js").default.generate_dash_file_from_formats(
streams,
this.video.duration,
);
uri = "data:application/dash+xml;charset=utf-8;base64," + btoa(dash);
uri = "data:application/dash+xml;charset=utf-8;base64," + btoa(dash);
} else uri = this.video.dash;
} else if (lbry) {
uri = lbry.url;
} else {
@ -211,7 +213,7 @@ export default {
quality > 0 && (this.video.audioStreams.length > 0 || this.video.livestream) && !disableVideo;
if (qualityConds) this.player.configure("abr.enabled", false);
player.load(uri, 0, uri.indexOf("dash+xml") >= 0 ? "application/dash+xml" : "video/mp4").then(() => {
player.load(uri, 0, uri.indexOf("dash") >= 0 ? "application/dash+xml" : "video/mp4").then(() => {
if (qualityConds) {
var leastDiff = Number.MAX_VALUE;
var bestStream = null;