mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-22 13:37:23 +00:00
Add limited support for devices without MSE extensions. (#251)
This commit is contained in:
parent
b0d9145e75
commit
d77ab806e5
@ -55,11 +55,13 @@ export default {
|
||||
streams.push(...this.video.audioStreams);
|
||||
streams.push(...this.video.videoStreams);
|
||||
|
||||
const MseSupport = window.MediaSource !== undefined;
|
||||
|
||||
var uri;
|
||||
|
||||
if (this.video.livestream) {
|
||||
uri = this.video.hls;
|
||||
} else if (this.video.audioStreams.length > 0) {
|
||||
} else if (this.video.audioStreams.length > 0 && MseSupport) {
|
||||
const dash = require("@/utils/DashUtils.js").default.generate_dash_file_from_formats(
|
||||
streams,
|
||||
this.video.duration,
|
||||
@ -67,7 +69,7 @@ export default {
|
||||
|
||||
uri = "data:application/dash+xml;charset=utf-8;base64," + btoa(dash);
|
||||
} else {
|
||||
uri = this.video.videoStreams[0].url;
|
||||
uri = this.video.videoStreams.filter(stream => stream.codec == null)[0].url;
|
||||
}
|
||||
|
||||
if (noPrevPlayer)
|
||||
|
Loading…
Reference in New Issue
Block a user