Disable internal DASH manifest rewriting due to issues with shaka.

Closes #1805
This commit is contained in:
Kavin 2022-12-02 21:11:22 +00:00
parent 38759150f6
commit 905ad6676a
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD

View file

@ -273,7 +273,11 @@ export default {
).generate_dash_file_from_formats(streams, this.video.duration);
uri = "data:application/dash+xml;charset=utf-8;base64," + btoa(dash);
} else uri = this.video.dash;
} else {
const url = new URL(this.video.dash);
url.searchParams.set("rewrite", false);
uri = url.toString();
}
mime = "application/dash+xml";
} else if (lbry) {
uri = lbry.url;