mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-20 19:42:05 +00:00
fix: more specific audio exclusions for android
Some checks failed
Check / check (push) Has been cancelled
Some checks failed
Check / check (push) Has been cancelled
This commit is contained in:
parent
2a4dcb0f24
commit
3e94d66b29
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.4.103",
|
||||
"version": "6.4.104",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.15.5",
|
||||
|
|
|
|||
|
|
@ -26,8 +26,8 @@ if (!dev && !video.canPlayType('audio/mp4; codecs="ac-3"')) {
|
|||
exclusions.push('AC3', 'AC-3')
|
||||
}
|
||||
if (!('audioTracks' in HTMLVideoElement.prototype)) {
|
||||
exclusions.push('DUAL')
|
||||
exclusions.push('MULTI')
|
||||
exclusions.push('DUAL AUDIO', 'Dual Audio')
|
||||
exclusions.push('MULTI AUDIO', 'Multi Audio')
|
||||
}
|
||||
video.remove()
|
||||
const debug = Debug('ui:extensions')
|
||||
|
|
|
|||
Loading…
Reference in a new issue