mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add new chapter provider feature
This commit is contained in:
parent
ce1763c192
commit
c98448df25
10 changed files with 260 additions and 30 deletions
|
@ -257,12 +257,13 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
if (videoStream && videoStream.Profile == 'High') {
|
||||
var extension = (mediaSource.Container || '').toLowerCase();
|
||||
|
||||
// m4v's with high profile failing in chrome
|
||||
if (videoStream && videoStream.Profile == 'High' && extension == 'm4v') {
|
||||
return false;
|
||||
}
|
||||
|
||||
var extension = (mediaSource.Container || '').toLowerCase();
|
||||
|
||||
if (extension == 'm4v') {
|
||||
return $.browser.chrome;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue