mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Use best stream when playing muxed video.
This commit is contained in:
parent
3d3b587a9c
commit
13c005d67b
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ export default {
|
|||
|
||||
uri = "data:application/dash+xml;charset=utf-8;base64," + btoa(dash);
|
||||
} else {
|
||||
uri = this.video.videoStreams.filter(stream => stream.codec == null)[0].url;
|
||||
uri = this.video.videoStreams.filter(stream => stream.codec == null).slice(-1)[0].url;
|
||||
}
|
||||
|
||||
if (noPrevPlayer)
|
||||
|
|
Loading…
Reference in a new issue