mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-14 04:08:21 +00:00
Disable internal DASH manifest rewriting due to issues with shaka.
Closes #1805
This commit is contained in:
parent
38759150f6
commit
905ad6676a
@ -273,7 +273,11 @@ export default {
|
|||||||
).generate_dash_file_from_formats(streams, this.video.duration);
|
).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 {
|
||||||
|
const url = new URL(this.video.dash);
|
||||||
|
url.searchParams.set("rewrite", false);
|
||||||
|
uri = url.toString();
|
||||||
|
}
|
||||||
mime = "application/dash+xml";
|
mime = "application/dash+xml";
|
||||||
} else if (lbry) {
|
} else if (lbry) {
|
||||||
uri = lbry.url;
|
uri = lbry.url;
|
||||||
|
Loading…
Reference in New Issue
Block a user