1
0
Fork 0
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:
Luke Pulverenti 2013-04-06 10:49:48 -04:00
parent dd0e5c0cbe
commit e597354990

View file

@ -261,10 +261,11 @@
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/mp2t; codecs='h264, aac'", src: tsVideoUrl },
{ type: "application/x-mpegURL", src: hlsVideoUrl },
{ type: "video/ogg", src: ogvVideoUrl }]
).volume(volume);