Merge pull request #716 from jellyfin/ac3

Safari supports AC-3
This commit is contained in:
dkanada 2020-01-21 23:22:12 +09:00 committed by GitHub
commit 519c3ada79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,10 +77,6 @@ define(['browser'], function (browser) {
return true; return true;
} }
if (browser.osx || browser.iOS) {
return false;
}
return videoTestElement.canPlayType('audio/mp4; codecs="ac-3"').replace(/no/, ''); return videoTestElement.canPlayType('audio/mp4; codecs="ac-3"').replace(/no/, '');
} }