mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
#115 - prioritize hls ahead of mp4
This commit is contained in:
parent
dd0e5c0cbe
commit
e597354990
1 changed files with 3 additions and 2 deletions
|
@ -261,10 +261,11 @@
|
||||||
audioCodec: 'Vorbis'
|
audioCodec: 'Vorbis'
|
||||||
}));
|
}));
|
||||||
|
|
||||||
(this).src([{ type: "video/webm", src: webmVideoUrl },
|
(this).src([
|
||||||
|
{ type: "application/x-mpegURL", src: hlsVideoUrl },
|
||||||
|
{ type: "video/webm", src: webmVideoUrl },
|
||||||
{ type: "video/mp4", src: mp4VideoUrl },
|
{ type: "video/mp4", src: mp4VideoUrl },
|
||||||
{ type: "video/mp2t; codecs='h264, aac'", src: tsVideoUrl },
|
{ type: "video/mp2t; codecs='h264, aac'", src: tsVideoUrl },
|
||||||
{ type: "application/x-mpegURL", src: hlsVideoUrl },
|
|
||||||
{ type: "video/ogg", src: ogvVideoUrl }]
|
{ type: "video/ogg", src: ogvVideoUrl }]
|
||||||
).volume(volume);
|
).volume(volume);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue