@jant/core 0.6.16 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -11
- package/bin/commands/assets/upload.js +192 -15
- package/bin/commands/import-site.js +60 -4
- package/bin/commands/reset-password.js +21 -8
- package/bin/commands/site/snapshot/export.js +1 -1
- package/bin/commands/site/snapshot/import.js +1 -1
- package/bin/lib/d1-query.js +5 -16
- package/bin/lib/node-env.js +40 -4
- package/bin/lib/site-selection.js +85 -29
- package/bin/lib/wrangler-cli.js +28 -2
- package/bin/lib/wrangler-json.js +35 -0
- package/dist/{app-C7_4oab9.js → app-K_Aa1MMn.js} +52476 -13330
- package/dist/client/.vite/manifest.json +255 -90
- package/dist/client/_assets/chunks/confirm-D7GrwsCN.js +45 -0
- package/dist/client/_assets/chunks/create-editor-CD3FhrOB.js +257 -0
- package/dist/client/_assets/chunks/{native-DpcrFAPh.js → emoji-mart-C4RpRKcU.js} +716 -1
- package/dist/client/_assets/chunks/footnote-rail-CmeoVtnU.js +1 -0
- package/dist/client/_assets/chunks/heic-to-CuP2Qlsw.js +1 -0
- package/dist/client/_assets/chunks/jant-locale-picker-DL6mIOT5.js +69 -0
- package/dist/client/_assets/chunks/lit-DW8VmJAT.js +2 -0
- package/dist/client/_assets/chunks/mediabunny-DRaCQ1r-.js +31 -0
- package/dist/client/_assets/chunks/rolldown-runtime-hePW80VL.js +1 -0
- package/dist/client/_assets/chunks/settings-paths-BcdySNx6.js +84 -0
- package/dist/client/_assets/chunks/site-header-nav-DzXsFk05.js +1 -0
- package/dist/client/_assets/chunks/slug-format-CRXO1AL5.js +1 -0
- package/dist/client/_assets/chunks/slugify-373citbs.js +1 -0
- package/dist/client/_assets/chunks/sortable-list-CgaL2jCs.js +2 -0
- package/dist/client/_assets/chunks/types-D5iF3H1a.js +1 -0
- package/dist/client/_assets/chunks/unsafe-html-B5ZEXaxg.js +1 -0
- package/dist/client/_assets/chunks/unsafe-svg-0QCkP0vZ.js +2 -0
- package/dist/client/_assets/client-GiYENVw8.css +2 -0
- package/dist/client/_assets/client-VnFxJN7G.js +295 -0
- package/dist/client/_assets/client-auth-k8gJ6QJj.js +828 -0
- package/dist/client/_assets/client-author-DQ8R-8KR.css +2 -0
- package/dist/client/_assets/client-compose-B_kDtWkW.js +2004 -0
- package/dist/client/_assets/client-manage-M90aSTOk.js +2170 -0
- package/dist/client/_assets/client-settings-DfYs9n1F.js +1112 -0
- package/dist/{export-Dl5KCiEs.js → github-sync-BPAvT999.js} +2254 -107
- package/dist/index.js +2 -5
- package/dist/node.js +5 -7
- package/package.json +3 -3
- package/src/__tests__/auth-session-freshness.test.ts +57 -0
- package/src/__tests__/basecoat-variants.test.ts +121 -0
- package/src/__tests__/bin/assets-upload.test.ts +68 -0
- package/src/__tests__/export-hugo-build.test.ts +260 -0
- package/src/__tests__/export-service.test.ts +231 -0
- package/src/__tests__/helpers/component-css.ts +91 -0
- package/src/__tests__/helpers/db.ts +33 -0
- package/src/__tests__/helpers/export-fixtures.ts +3 -0
- package/src/__tests__/stylesheet-audience.test.ts +159 -0
- package/src/__tests__/stylesheet-breakpoints.test.ts +183 -0
- package/src/app.tsx +71 -16
- package/src/auth.ts +18 -1
- package/src/client/__tests__/collection-page-actions.test.ts +51 -2
- package/src/client/__tests__/compose-bridge-image-upload.test.ts +196 -0
- package/src/client/__tests__/compose-bridge-video-poster.test.ts +159 -0
- package/src/client/__tests__/compose-bridge.test.ts +272 -0
- package/src/client/__tests__/compose-launch.test.ts +62 -1
- package/src/client/__tests__/compose-shortcuts.test.ts +38 -9
- package/src/client/__tests__/compose-triggers.test.ts +90 -0
- package/src/client/__tests__/copy-field.test.ts +162 -0
- package/src/client/__tests__/custom-url-menu.test.ts +127 -6
- package/src/client/__tests__/image-processor.test.ts +324 -2
- package/src/client/__tests__/lazy-entries.test.ts +92 -0
- package/src/client/__tests__/media-scroll-hint.test.ts +155 -0
- package/src/client/__tests__/runtime-paths.test.ts +84 -0
- package/src/client/__tests__/smart-collection-page-actions.test.ts +158 -0
- package/src/client/__tests__/toast.test.ts +23 -0
- package/src/client/__tests__/video-processor-probe.test.ts +175 -0
- package/src/client/__tests__/video-processor.test.ts +181 -0
- package/src/client/audio-processor.ts +24 -15
- package/src/client/audio-waveform.ts +49 -0
- package/src/client/collection-dialog-host.ts +72 -0
- package/src/client/collection-navigation.ts +51 -16
- package/src/client/collection-page-actions.ts +26 -0
- package/src/client/components/__tests__/jant-collection-dialog.test.ts +329 -0
- package/src/client/components/__tests__/jant-collection-directory.test.ts +274 -10
- package/src/client/components/__tests__/jant-collection-form.test.ts +59 -178
- package/src/client/components/__tests__/jant-command-palette.test.ts +28 -0
- package/src/client/components/__tests__/jant-compose-dialog-draft-storage.test.ts +340 -0
- package/src/client/components/__tests__/jant-compose-dialog.test.ts +1250 -53
- package/src/client/components/__tests__/jant-compose-editor.test.ts +544 -40
- package/src/client/components/__tests__/jant-compose-fullscreen.test.ts +0 -1
- package/src/client/components/__tests__/jant-locale-picker.test.ts +207 -0
- package/src/client/components/__tests__/jant-nav-manager.test.ts +234 -15
- package/src/client/components/__tests__/jant-post-menu.test.ts +413 -2
- package/src/client/components/__tests__/jant-post-picker.test.ts +197 -0
- package/src/client/components/__tests__/jant-settings-avatar.test.ts +15 -12
- package/src/client/components/__tests__/jant-settings-general.test.ts +541 -172
- package/src/client/components/__tests__/jant-settings-language.test.ts +851 -0
- package/src/client/components/__tests__/jant-smart-collection-dialog.test.ts +665 -0
- package/src/client/components/collection-dialog-types.ts +49 -0
- package/src/client/components/collection-manager-types.ts +32 -1
- package/src/client/components/collection-types.ts +1 -15
- package/src/client/components/compose-types.ts +75 -1
- package/src/client/components/jant-collection-dialog.ts +722 -0
- package/src/client/components/jant-collection-directory.ts +567 -182
- package/src/client/components/jant-collection-form.ts +53 -232
- package/src/client/components/jant-command-palette.ts +100 -49
- package/src/client/components/jant-compose-dialog.ts +1486 -707
- package/src/client/components/jant-compose-editor.ts +673 -336
- package/src/client/components/jant-compose-fullscreen.ts +51 -43
- package/src/client/components/jant-config-editor.ts +65 -53
- package/src/client/components/jant-confirm-dialog.ts +13 -11
- package/src/client/components/jant-locale-picker.ts +418 -0
- package/src/client/components/jant-media-lightbox.ts +146 -136
- package/src/client/components/jant-nav-manager.ts +690 -366
- package/src/client/components/jant-post-menu.ts +1086 -282
- package/src/client/components/jant-post-picker.ts +324 -0
- package/src/client/components/jant-repo-picker.ts +138 -106
- package/src/client/components/jant-settings-avatar.ts +31 -27
- package/src/client/components/jant-settings-general.ts +617 -543
- package/src/client/components/jant-settings-language.ts +1087 -0
- package/src/client/components/jant-smart-collection-dialog.ts +1021 -0
- package/src/client/components/jant-text-preview.ts +94 -86
- package/src/client/components/nav-manager-types.ts +62 -1
- package/src/client/components/settings-types.ts +14 -29
- package/src/client/components/smart-collection-conditions.ts +285 -0
- package/src/client/components/smart-collection-dialog-types.ts +68 -0
- package/src/client/compose-bridge.ts +214 -141
- package/src/client/compose-launch.ts +76 -2
- package/src/client/compose-shortcuts.ts +6 -8
- package/src/client/compose-triggers.ts +50 -0
- package/src/client/copy-field.ts +108 -0
- package/src/client/custom-url-menu.ts +60 -4
- package/src/client/icons.ts +14 -0
- package/src/client/image-plan.ts +165 -0
- package/src/client/image-processor.ts +195 -117
- package/src/client/image-worker-client.ts +45 -0
- package/src/client/image-worker.ts +135 -0
- package/src/client/lazy-entries.ts +95 -0
- package/src/client/lazy-slugify.ts +2 -2
- package/src/client/media-scroll-hint.ts +43 -2
- package/src/client/mediabunny.ts +29 -0
- package/src/client/post-picker.ts +41 -0
- package/src/client/runtime-paths.ts +74 -1
- package/src/client/settings-bridge.ts +4 -10
- package/src/client/site-header-nav.js +18 -6
- package/src/client/smart-collection-dialog-host.ts +116 -0
- package/src/client/smart-collection-page-actions.ts +208 -0
- package/src/client/tiptap/__tests__/bubble-menu.test.ts +110 -0
- package/src/client/tiptap/__tests__/floating-position.test.ts +136 -1
- package/src/client/tiptap/__tests__/inline-image-upload.test.ts +37 -0
- package/src/client/tiptap/bubble-menu.ts +47 -16
- package/src/client/tiptap/floating-position.ts +216 -2
- package/src/client/tiptap/inline-image-upload.ts +7 -3
- package/src/client/tiptap/link-toolbar.ts +22 -9
- package/src/client/toast.ts +13 -0
- package/src/client/types/vite-worker.d.ts +12 -0
- package/src/client/upload-with-metadata.ts +3 -13
- package/src/client/video-processor.ts +351 -107
- package/src/client-auth.ts +14 -31
- package/src/client-compose.ts +19 -0
- package/src/client-manage.ts +13 -0
- package/src/client-settings.ts +14 -0
- package/src/client-site.ts +10 -3
- package/src/client.ts +4 -0
- package/src/db/__tests__/backfill-nav-label-mirrors.test.ts +149 -0
- package/src/db/__tests__/schema-enum-sources.test.ts +33 -0
- package/src/db/__tests__/smart-collection-placement.test.ts +402 -0
- package/src/db/backfills/0006_clear_mirrored_page_nav_labels.sql +31 -0
- package/src/db/migrations/0032_married_tomas.sql +3 -0
- package/src/db/migrations/0033_busy_johnny_storm.sql +198 -0
- package/src/db/migrations/0034_cheerful_rumiko_fujikawa.sql +35 -0
- package/src/db/migrations/meta/0032_snapshot.json +2582 -0
- package/src/db/migrations/meta/0033_snapshot.json +2816 -0
- package/src/db/migrations/meta/0034_snapshot.json +2816 -0
- package/src/db/migrations/meta/_journal.json +21 -0
- package/src/db/migrations/pg/0030_abandoned_nighthawk.sql +3 -0
- package/src/db/migrations/pg/0031_strong_ultimatum.sql +128 -0
- package/src/db/migrations/pg/0032_furry_multiple_man.sql +6 -0
- package/src/db/migrations/pg/meta/0030_snapshot.json +3329 -0
- package/src/db/migrations/pg/meta/0031_snapshot.json +3660 -0
- package/src/db/migrations/pg/meta/0032_snapshot.json +3660 -0
- package/src/db/migrations/pg/meta/_journal.json +21 -0
- package/src/db/pg/schema.ts +195 -27
- package/src/db/post-visibility.ts +117 -0
- package/src/db/schema.ts +222 -27
- package/src/i18n/__tests__/detect.test.ts +26 -81
- package/src/i18n/__tests__/supported-locales.test.ts +83 -0
- package/src/i18n/context.tsx +12 -2
- package/src/i18n/detect.ts +7 -66
- package/src/i18n/locales/glossary.zh-Hans.yml +44 -4
- package/src/i18n/locales/glossary.zh-Hant.yml +44 -4
- package/src/i18n/locales/public/en.po +490 -158
- package/src/i18n/locales/public/en.ts +1 -1
- package/src/i18n/locales/public/zh-Hans.po +487 -155
- package/src/i18n/locales/public/zh-Hans.ts +1 -1
- package/src/i18n/locales/public/zh-Hant.po +487 -155
- package/src/i18n/locales/public/zh-Hant.ts +1 -1
- package/src/i18n/locales/settings/en.po +551 -69
- package/src/i18n/locales/settings/en.ts +1 -1
- package/src/i18n/locales/settings/zh-Hans.po +597 -115
- package/src/i18n/locales/settings/zh-Hans.ts +1 -1
- package/src/i18n/locales/settings/zh-Hant.po +610 -128
- package/src/i18n/locales/settings/zh-Hant.ts +1 -1
- package/src/i18n/locales.ts +94 -0
- package/src/i18n/middleware.ts +12 -2
- package/src/i18n/supported-locales.ts +80 -0
- package/src/lib/__tests__/api-settings.test.ts +11 -2
- package/src/lib/__tests__/asset-path.test.ts +92 -0
- package/src/lib/__tests__/deferred.test.ts +90 -0
- package/src/lib/__tests__/discover-ping.test.ts +89 -0
- package/src/lib/__tests__/discover.test.ts +410 -0
- package/src/lib/__tests__/feed-policy.test.ts +26 -0
- package/src/lib/__tests__/feed.test.ts +1526 -15
- package/src/lib/__tests__/filter-dimensions.test.ts +341 -0
- package/src/lib/__tests__/hosted-signin.test.ts +1 -1
- package/src/lib/__tests__/http-cache.test.ts +162 -0
- package/src/lib/__tests__/jant-docs-dev.test.ts +21 -0
- package/src/lib/__tests__/jant-docs.test.ts +23 -0
- package/src/lib/__tests__/lang-detect.test.ts +231 -0
- package/src/lib/__tests__/media-helpers.test.ts +81 -0
- package/src/lib/__tests__/navigation.test.ts +135 -1
- package/src/lib/__tests__/resolve-config.test.ts +64 -3
- package/src/lib/__tests__/schemas.test.ts +42 -4
- package/src/lib/__tests__/site-unavailable-page.test.ts +25 -0
- package/src/lib/__tests__/slug.test.ts +70 -0
- package/src/lib/__tests__/slugify.test.ts +85 -0
- package/src/lib/__tests__/storage.test.ts +32 -0
- package/src/lib/__tests__/thread-fold.test.ts +113 -0
- package/src/lib/__tests__/upload-sideload.test.ts +14 -0
- package/src/lib/__tests__/url-fetch.test.ts +1 -2
- package/src/lib/__tests__/url.test.ts +78 -72
- package/src/lib/__tests__/view-language.test.ts +413 -0
- package/src/lib/__tests__/worker-response-cache.test.ts +90 -0
- package/src/lib/address.ts +57 -0
- package/src/lib/api-posts.ts +12 -0
- package/src/lib/asset-path.ts +98 -1
- package/src/lib/build-env.ts +16 -0
- package/src/lib/collection-groups.ts +5 -1
- package/src/lib/collection-paths.ts +3 -10
- package/src/lib/constants.ts +28 -3
- package/src/lib/copy-field.ts +36 -0
- package/src/lib/crypto.ts +40 -0
- package/src/lib/csp-builder.ts +2 -1
- package/src/lib/deferred.ts +79 -0
- package/src/lib/discover-ping.ts +141 -0
- package/src/lib/discover.ts +437 -0
- package/src/lib/env.ts +134 -0
- package/src/lib/errors.ts +33 -0
- package/src/lib/feed-policy.ts +236 -2
- package/src/lib/feed.ts +926 -73
- package/src/lib/filter-dimensions.ts +1349 -0
- package/src/lib/github-sync-site-config.ts +3 -0
- package/src/lib/hosted-signin.ts +1 -1
- package/src/lib/http-cache.ts +148 -0
- package/src/lib/hugo-markdown.ts +16 -0
- package/src/lib/icons.ts +9 -2
- package/src/lib/ids.ts +3 -0
- package/src/lib/jant-docs.ts +42 -0
- package/src/lib/lang-detect.ts +308 -0
- package/src/lib/media-helpers.ts +13 -1
- package/src/lib/navigation.ts +78 -11
- package/src/lib/pagination.ts +28 -24
- package/src/lib/per-language-surfaces.ts +67 -0
- package/src/lib/post-meta.ts +19 -0
- package/src/lib/render.tsx +55 -7
- package/src/lib/resolve-config.ts +53 -5
- package/src/lib/schemas.ts +201 -10
- package/src/lib/site-header-fragment.tsx +2 -1
- package/src/lib/site-unavailable-page.ts +47 -0
- package/src/lib/slug.ts +51 -7
- package/src/lib/slugify.ts +113 -0
- package/src/lib/startup-config.ts +4 -6
- package/src/lib/storage.ts +7 -0
- package/src/lib/summary.ts +50 -0
- package/src/lib/thread-fold.ts +161 -0
- package/src/lib/time.ts +32 -0
- package/src/lib/timeline.ts +42 -1
- package/src/lib/tiptap-render.ts +1 -2
- package/src/lib/upload.ts +16 -13
- package/src/lib/url.ts +139 -86
- package/src/lib/version.ts +10 -8
- package/src/lib/view-language.ts +436 -0
- package/src/lib/view.ts +51 -23
- package/src/lib/viewer-context.ts +62 -0
- package/src/middleware/__tests__/auth.test.ts +70 -2
- package/src/middleware/__tests__/cache-control.test.ts +71 -3
- package/src/middleware/__tests__/onboarding.test.ts +76 -5
- package/src/middleware/__tests__/secure-headers.test.ts +1 -1
- package/src/middleware/__tests__/session.test.ts +181 -33
- package/src/middleware/auth.ts +50 -31
- package/src/middleware/cache-control.ts +75 -10
- package/src/middleware/config.ts +6 -6
- package/src/middleware/error-handler.ts +12 -0
- package/src/middleware/onboarding.ts +32 -10
- package/src/middleware/secure-headers.ts +1 -1
- package/src/middleware/session.ts +96 -8
- package/src/node/__tests__/cli-migrate.test.ts +21 -19
- package/src/node/__tests__/cli-reset-password.test.ts +81 -8
- package/src/node/__tests__/cli-runtime-target.test.ts +48 -1
- package/src/node/__tests__/cli-site-selection.test.ts +128 -38
- package/src/node/__tests__/runtime.test.ts +37 -0
- package/src/node/index.ts +1 -0
- package/src/preset.css +76 -22
- package/src/routes/__tests__/feed-validator.test.ts +156 -0
- package/src/routes/api/__tests__/collections.test.ts +114 -0
- package/src/routes/api/__tests__/discover.test.ts +222 -0
- package/src/routes/api/__tests__/nav-items.test.ts +212 -2
- package/src/routes/api/__tests__/post-translations.test.ts +829 -0
- package/src/routes/api/__tests__/settings.test.ts +24 -3
- package/src/routes/api/__tests__/telegram.test.ts +6 -5
- package/src/routes/api/collections.ts +49 -6
- package/src/routes/api/custom-urls.ts +0 -1
- package/src/routes/api/discover.ts +95 -0
- package/src/routes/api/export.ts +3 -0
- package/src/routes/api/internal/__tests__/sites.test.ts +42 -2
- package/src/routes/api/nav-items.ts +55 -8
- package/src/routes/api/posts.ts +159 -0
- package/src/routes/api/public/__tests__/archive.test.ts +111 -0
- package/src/routes/api/public/archive.ts +77 -81
- package/src/routes/api/public/posts.ts +23 -6
- package/src/routes/api/smart-collections.ts +132 -0
- package/src/routes/api/telegram.ts +2 -40
- package/src/routes/api/uploads.ts +1 -2
- package/src/routes/auth/__tests__/setup-auth.test.ts +137 -0
- package/src/routes/auth/__tests__/setup-discover.test.ts +204 -0
- package/src/routes/auth/__tests__/setup-flow.test.ts +270 -0
- package/src/routes/auth/__tests__/setup-page.test.tsx +329 -0
- package/src/routes/auth/__tests__/setup-steps.test.ts +310 -0
- package/src/routes/auth/__tests__/setup.test.ts +278 -26
- package/src/routes/auth/__tests__/signin.test.ts +135 -0
- package/src/routes/auth/setup.tsx +934 -186
- package/src/routes/auth/signin.tsx +10 -8
- package/src/routes/compose.tsx +5 -0
- package/src/routes/dash/__tests__/custom-urls-archive.test.ts +44 -0
- package/src/routes/dash/__tests__/custom-urls-page.test.ts +49 -0
- package/src/routes/dash/__tests__/delete-account.test.ts +106 -0
- package/src/routes/dash/__tests__/settings-discover.test.ts +213 -0
- package/src/routes/dash/custom-urls.tsx +1 -37
- package/src/routes/dash/settings.tsx +502 -41
- package/src/routes/discover-announce.ts +96 -0
- package/src/routes/feed/__tests__/feed.test.ts +165 -2
- package/src/routes/feed/feed.ts +69 -40
- package/src/routes/feed/sitemap.ts +95 -11
- package/src/routes/pages/__tests__/archive-indexing.test.ts +200 -0
- package/src/routes/pages/__tests__/archive-params.test.ts +370 -6
- package/src/routes/pages/__tests__/collection-routing.test.ts +16 -0
- package/src/routes/pages/__tests__/collections-feed-links.test.ts +72 -0
- package/src/routes/pages/__tests__/collections.test.ts +9 -3
- package/src/routes/pages/__tests__/custom-archive-url.test.ts +119 -0
- package/src/routes/pages/__tests__/feed-autodiscovery.test.ts +148 -0
- package/src/routes/pages/__tests__/language-routing.test.ts +679 -0
- package/src/routes/pages/__tests__/post-preview-partial.test.ts +96 -0
- package/src/routes/pages/__tests__/smart-collection.test.ts +298 -0
- package/src/routes/pages/__tests__/subscribe.test.ts +248 -0
- package/src/routes/pages/archive.tsx +471 -369
- package/src/routes/pages/collection.tsx +94 -96
- package/src/routes/pages/collections.tsx +38 -50
- package/src/routes/pages/featured.tsx +32 -13
- package/src/routes/pages/home.tsx +25 -6
- package/src/routes/pages/language.tsx +113 -0
- package/src/routes/pages/latest.tsx +26 -16
- package/src/routes/pages/new.tsx +3 -0
- package/src/routes/pages/page.tsx +178 -17
- package/src/routes/pages/partials.tsx +41 -0
- package/src/routes/pages/search.tsx +18 -3
- package/src/routes/pages/smart-collection.tsx +340 -0
- package/src/routes/pages/subscribe.tsx +182 -0
- package/src/runtime/__tests__/index.test.ts +19 -0
- package/src/runtime/__tests__/node.test.ts +129 -4
- package/src/runtime/cloudflare.ts +21 -2
- package/src/runtime/index.ts +27 -1
- package/src/runtime/node.ts +18 -1
- package/src/runtime/site.ts +95 -24
- package/src/services/__tests__/auth.test.ts +116 -7
- package/src/services/__tests__/collection.test.ts +108 -4
- package/src/services/__tests__/language.test.ts +495 -0
- package/src/services/__tests__/navigation.test.ts +213 -10
- package/src/services/__tests__/path.test.ts +180 -0
- package/src/services/__tests__/post-language.test.ts +830 -0
- package/src/services/__tests__/post.test.ts +46 -9
- package/src/services/__tests__/settings.test.ts +228 -17
- package/src/services/__tests__/site-admin.test.ts +5 -5
- package/src/services/__tests__/smart-collection.test.ts +651 -0
- package/src/services/about-page.ts +22 -1
- package/src/services/auth.ts +51 -49
- package/src/services/bootstrap.ts +188 -38
- package/src/services/collection-directory-position.ts +76 -0
- package/src/services/collection.ts +331 -46
- package/src/services/custom-url.ts +27 -22
- package/src/services/export-theme/assets/client-site.css +1 -1
- package/src/services/export-theme/assets/client-site.js +123 -123
- package/src/services/export-theme/layouts/_default/rss.xml +77 -1
- package/src/services/export-theme/layouts/partials/feed-post-content.xml +105 -2
- package/src/services/export-theme/layouts/partials/media-gallery.html +35 -21
- package/src/services/export-theme/layouts/partials/pagination.html +14 -13
- package/src/services/export-theme/layouts/partials/post-card.html +8 -4
- package/src/services/export-theme/layouts/partials/reply.html +2 -1
- package/src/services/export-theme/layouts/partials/thread-preview.html +40 -30
- package/src/services/export-theme/styles/main.css +13 -1
- package/src/services/export.ts +278 -19
- package/src/services/index.ts +34 -3
- package/src/services/language.ts +412 -0
- package/src/services/mcp.ts +3 -1
- package/src/services/media.ts +14 -6
- package/src/services/navigation.ts +429 -67
- package/src/services/path.ts +221 -6
- package/src/services/post.ts +1021 -152
- package/src/services/search.ts +39 -2
- package/src/services/settings.ts +238 -43
- package/src/services/site-admin.ts +24 -7
- package/src/services/site.ts +77 -1
- package/src/services/smart-collection.ts +636 -0
- package/src/services/telegram.ts +20 -22
- package/src/services/upload-session.ts +1 -3
- package/src/style-author.css +27 -0
- package/src/styles/components-author.css +1622 -0
- package/src/styles/components.css +24 -1571
- package/src/styles/site-media.css +16 -2
- package/src/styles/tokens.css +82 -12
- package/src/styles/ui-author.css +7602 -0
- package/src/styles/ui.css +1087 -7219
- package/src/types/app-context.ts +7 -0
- package/src/types/bindings.ts +3 -0
- package/src/types/config.ts +94 -15
- package/src/types/constants.ts +188 -16
- package/src/types/entities.ts +87 -1
- package/src/types/operations.ts +64 -2
- package/src/types/props.ts +157 -31
- package/src/types/views.ts +55 -1
- package/src/ui/__tests__/font-themes.test.ts +52 -12
- package/src/ui/compose/ComposeDialog.tsx +201 -7
- package/src/ui/compose/ComposePrompt.tsx +1 -5
- package/src/ui/compose/__tests__/ComposeDialog.test.tsx +125 -0
- package/src/ui/dash/appearance/AdvancedContent.tsx +2 -2
- package/src/ui/dash/appearance/CodeInjectionContent.tsx +12 -16
- package/src/ui/dash/appearance/NavigationContent.tsx +117 -16
- package/src/ui/dash/appearance/__tests__/NavigationContent.test.tsx +33 -11
- package/src/ui/dash/appearance/__tests__/system-nav-descriptions.test.ts +44 -0
- package/src/ui/dash/appearance/system-nav-descriptions.ts +75 -0
- package/src/ui/dash/settings/AccountMenuContent.tsx +2 -2
- package/src/ui/dash/settings/ApiTokensContent.tsx +2 -1
- package/src/ui/dash/settings/ConfigEditorContent.tsx +35 -16
- package/src/ui/dash/settings/GeneralContent.tsx +275 -113
- package/src/ui/dash/settings/LanguageContent.tsx +409 -0
- package/src/ui/dash/settings/SettingsRootContent.tsx +19 -1
- package/src/ui/dash/settings/__tests__/GeneralContent.test.tsx +324 -4
- package/src/ui/dash/settings/__tests__/LanguageContent.test.tsx +144 -0
- package/src/ui/dash/settings/__tests__/discover-copy.test.ts +66 -0
- package/src/ui/dash/settings/discover-copy.ts +116 -0
- package/src/ui/feed/LinkCard.tsx +55 -45
- package/src/ui/feed/NoteCard.tsx +9 -4
- package/src/ui/feed/PostStatusBadges.tsx +90 -43
- package/src/ui/feed/QuoteCard.tsx +55 -30
- package/src/ui/feed/ThreadPreview.tsx +6 -2
- package/src/ui/feed/__tests__/thread-preview.test.ts +13 -16
- package/src/ui/feed/__tests__/timeline-cards.test.ts +314 -49
- package/src/ui/feed/thread-preview-state.ts +20 -6
- package/src/ui/font-themes.ts +39 -29
- package/src/ui/layouts/BaseLayout.tsx +155 -10
- package/src/ui/layouts/SiteLayout.tsx +192 -34
- package/src/ui/layouts/__tests__/BaseLayout.test.tsx +196 -17
- package/src/ui/layouts/__tests__/SiteLayout.test.tsx +109 -85
- package/src/ui/pages/ArchivePage.tsx +282 -289
- package/src/ui/pages/CollectionPage.tsx +86 -76
- package/src/ui/pages/CollectionsPage.tsx +5 -0
- package/src/ui/pages/ComposePage.tsx +8 -0
- package/src/ui/pages/PostPage.tsx +47 -0
- package/src/ui/pages/SearchPage.tsx +3 -3
- package/src/ui/pages/SmartCollectionPage.tsx +434 -0
- package/src/ui/pages/SubscribePage.tsx +236 -0
- package/src/ui/pages/__tests__/ArchivePage.test.tsx +65 -9
- package/src/ui/pages/__tests__/collections-directory-rows.test.tsx +92 -0
- package/src/ui/pages/__tests__/collections-view-links.test.tsx +81 -0
- package/src/ui/shared/CollectionDirectory.tsx +178 -3
- package/src/ui/shared/CollectionsManager.tsx +70 -17
- package/src/ui/shared/CopyField.tsx +127 -0
- package/src/ui/shared/EmptyPostContent.tsx +23 -0
- package/src/ui/shared/MediaGallery.tsx +125 -46
- package/src/ui/shared/Pagination.tsx +20 -5
- package/src/ui/shared/PostFooter.tsx +20 -11
- package/src/ui/shared/__tests__/archive-labels.test.ts +100 -0
- package/src/ui/shared/__tests__/media-gallery.test.ts +210 -2
- package/src/ui/shared/__tests__/navigation-labels.test.ts +16 -22
- package/src/ui/shared/__tests__/pagination.test.ts +38 -24
- package/src/ui/shared/__tests__/post-footer.test.ts +32 -0
- package/src/ui/shared/archive-labels.ts +98 -0
- package/src/ui/shared/collection-management-labels.ts +94 -16
- package/src/ui/shared/navigation-labels.ts +45 -71
- package/src/ui/shared/post-article-attributes.ts +2 -0
- package/src/ui/shared/smart-collection-labels.ts +343 -0
- package/dist/app-C75Zc8dD.js +0 -6
- package/dist/client/_assets/chunks/heic-to-DUUaO23q.js +0 -1
- package/dist/client/_assets/chunks/module-DcsAZQZ_.js +0 -716
- package/dist/client/_assets/chunks/url-CU9pEbk5.js +0 -1
- package/dist/client/_assets/client-Bq0vre8Y.js +0 -296
- package/dist/client/_assets/client-D3VZyG4L.css +0 -2
- package/dist/client/_assets/client-auth-F2rb9WfF.js +0 -5571
- package/dist/env-BPYViDJJ.js +0 -281
- package/dist/github-api-BNF35Lkx.js +0 -176
- package/dist/github-app-DdiD-bC4.js +0 -275
- package/dist/github-sync-Bqg62IvV.js +0 -4
- package/dist/github-sync-HdK2EgvJ.js +0 -431
- package/dist/url-CbLAtlZe.js +0 -900
- package/src/client/__tests__/collection-created-notice.test.ts +0 -36
- package/src/client/__tests__/collection-form-bridge.test.ts +0 -216
- package/src/client/__tests__/post-form-bridge.test.ts +0 -82
- package/src/client/collection-created-notice.ts +0 -66
- package/src/client/collection-form-bridge.ts +0 -191
- package/src/client/components/__tests__/jant-post-form.test.ts +0 -193
- package/src/client/components/jant-post-form.ts +0 -422
- package/src/client/components/post-form-template.ts +0 -352
- package/src/client/components/post-form-types.ts +0 -96
- package/src/client/media-metadata.ts +0 -247
- package/src/client/post-form-bridge.ts +0 -193
- package/src/ui/pages/CollectionEditorPage.tsx +0 -175
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import{n as e,r as t,t as n}from"./rolldown-runtime-hePW80VL.js";function r(e){if(!e)throw Error(`Assertion failed.`)}var i=e=>{let t=(e%360+360)%360;if(t===0||t===90||t===180||t===270)return t;throw Error(`Invalid rotation ${e}.`)},a=e=>e&&e[e.length-1],o=e=>e>=0&&e<2**32,s=e=>{let t=0;for(;e.readBits(1)===0&&t<32;)t++;if(t>=32)throw Error(`Invalid exponential-Golomb code.`);return(1<<t)-1+e.readBits(t)},c=e=>{let t=s(e);return t&1?t+1>>1:-(t>>1)},l=(e,t,n,r)=>{for(let i=t;i<n;i++){let t=Math.floor(i/8),a=e[t],o=7-(i&7);a&=~(1<<o),a|=(r&1<<n-i-1)>>n-i-1<<o,e[t]=a}},u=e=>e.constructor===Uint8Array?e:ArrayBuffer.isView(e)?new Uint8Array(e.buffer,e.byteOffset,e.byteLength):new Uint8Array(e),d=e=>e.constructor===DataView?e:ArrayBuffer.isView(e)?new DataView(e.buffer,e.byteOffset,e.byteLength):new DataView(e),f=new TextDecoder,p=new TextEncoder,m=e=>{for(let t=0;t<e.length;t++)if(e.charCodeAt(t)>255)return!1;return!0},h=e=>Object.fromEntries(Object.entries(e).map(([e,t])=>[t,e])),g={bt709:1,bt470bg:5,smpte170m:6,bt2020:9,smpte432:12},_=h(g),v={bt709:1,smpte170m:6,linear:8,"iec61966-2-1":13,pq:16,hlg:18},y=h(v),b={rgb:0,bt709:1,bt470bg:5,smpte170m:6,"bt2020-ncl":9},x=h(b),S=e=>!!e&&!!e.primaries&&!!e.transfer&&!!e.matrix&&e.fullRange!==void 0,C=e=>!e||e.primaries==null&&e.transfer==null&&e.matrix==null&&e.fullRange==null,ee={primaries:void 0,transfer:void 0,matrix:void 0,fullRange:void 0},te=e=>e instanceof ArrayBuffer||typeof SharedArrayBuffer<`u`&&e instanceof SharedArrayBuffer||ArrayBuffer.isView(e),ne=class{constructor(){this.currentPromise=Promise.resolve(),this.pending=0}async acquire(){let e,t=new Promise(t=>{let n=!1;e=()=>{n||=(t(),this.pending--,!0)}}),n=this.currentPromise;return this.currentPromise=t,this.pending++,await n,e}},re=/^[0-9a-fA-F]+$/,ie=e=>[...e].map(e=>e.toString(16).padStart(2,`0`)).join(``),ae=e=>{r(e.length%2==0);let t=new Uint8Array(e.length/2);for(let n=0;n<e.length;n+=2)t[n/2]=parseInt(e.slice(n,n+2),16);return t},oe=e=>(e=e>>1&1431655765|(e&1431655765)<<1,e=e>>2&858993459|(e&858993459)<<2,e=e>>4&252645135|(e&252645135)<<4,e=e>>8&16711935|(e&16711935)<<8,e=e>>16&65535|(e&65535)<<16,e>>>0),se=(e,t,n)=>{let r=0,i=e.length-1,a=-1;for(;r<=i;){let o=r+i>>1,s=n(e[o]);s===t?(a=o,i=o-1):s<t?r=o+1:i=o-1}return a},w=(e,t,n)=>{let r=0,i=e.length-1,a=-1;for(;r<=i;){let o=r+(i-r+1)/2|0;n(e[o])<=t?(a=o,r=o+1):i=o-1}return a},ce=(e,t,n)=>{let r=w(e,n(t),n);e.splice(r+1,0,t)},T=()=>{let e,t;return{promise:new Promise((n,r)=>{e=n,t=r}),resolve:e,reject:t}},le=(e,t)=>{let n=e.indexOf(t);n!==-1&&e.splice(n,1)},ue=(e,t)=>{for(let n=e.length-1;n>=0;n--)if(t(e[n]))return e[n]},de=(e,t)=>{for(let n=e.length-1;n>=0;n--)if(t(e[n]))return n;return-1},fe=async function*(e){Symbol.iterator in e?yield*e[Symbol.iterator]():yield*e[Symbol.asyncIterator]()},pe=e=>{if(!(Symbol.iterator in e)&&!(Symbol.asyncIterator in e))throw TypeError(`Argument must be an iterable or async iterable.`)},E=e=>{throw Error(`Unexpected value: ${e}`)},me=(e,t,n)=>{let r=e.getUint8(t),i=e.getUint8(t+1),a=e.getUint8(t+2);return n?r|i<<8|a<<16:r<<16|i<<8|a},he=(e,t,n)=>me(e,t,n)<<8>>8,ge=(e,t,n,r)=>{n>>>=0,n&=16777215,r?(e.setUint8(t,n&255),e.setUint8(t+1,n>>>8&255),e.setUint8(t+2,n>>>16&255)):(e.setUint8(t,n>>>16&255),e.setUint8(t+1,n>>>8&255),e.setUint8(t+2,n&255))},_e=(e,t,n,r)=>{n=D(n,-8388608,8388607),n<0&&(n=n+16777216&16777215),ge(e,t,n,r)},ve=(e,t,n,r)=>{r?(e.setUint32(t+0,n,!0),e.setInt32(t+4,Math.floor(n/2**32),!0)):(e.setInt32(t+0,Math.floor(n/2**32),!0),e.setUint32(t+4,n,!0))},ye=(e,t)=>({async next(){let n=await e.next();return n.done?{value:void 0,done:!0}:{value:t(n.value),done:!1}},return(){return e.return()},throw(t){return e.throw(t)},[Symbol.asyncIterator](){return this}}),D=(e,t,n)=>Math.max(t,Math.min(n,e)),be=(e,t,n)=>e+(t-e)*n,xe=e=>{let t=Math.round(e);return Math.abs(e/t-1)<10*2**-52?t:e},Se=(e,t)=>Math.round(e/t)*t,Ce=(e,t)=>Math.round(e*t)/t,we=(e,t)=>Math.floor(e/t)*t,Te=(e,t)=>Math.floor(e*t)/t,Ee=e=>{let t=0;for(;e;)t++,e>>=1;return t},De=e=>{let t=0;for(;e!==0;)e&=e-1,t++;return t},Oe=/^[a-z]{3}$/,ke=e=>Oe.test(e),Ae=1e6*(1+2**-52),je=(e,t)=>{let n={...e,...t};if(e.headers||t.headers){let r=e.headers?Me(e.headers):{},i=t.headers?Me(t.headers):{},a={...r};Object.entries(i).forEach(([e,t])=>{let n=Object.keys(a).find(t=>t.toLowerCase()===e.toLowerCase());n&&delete a[n],a[e]=t}),n.headers=a}return n},Me=e=>{if(e instanceof Headers){let t={};return e.forEach((e,n)=>{t[n]=e}),t}if(Array.isArray(e)){let t={};return e.forEach(([e,n])=>{t[e]=n}),t}return e},Ne=async(e,t,n,r,i)=>{let a=0;for(;;)try{return await e(t,n)}catch(e){if(i())throw e;a++;let n=r(a,e,t);if(n===null)throw e;if(k._error(`Retrying failed fetch. Error:`,e),!Number.isFinite(n)||n<0)throw TypeError(`Retry delay must be a non-negative finite number.`);if(n>0&&await mt(1e3*n),i())throw e}},Pe=(e,t)=>{let n=e<0?-1:1;e=Math.abs(e);let r=0,i=1,a=1,o=0,s=e;for(;;){let e=Math.floor(s),c=e*a+r,l=e*o+i;if(l>t)return{num:n*a,den:o};if(r=a,i=o,a=c,o=l,s=1/(s-e),!isFinite(s))break}return{num:n*a,den:o}},Fe=class{constructor(){this.currentPromise=Promise.resolve()}call(e){return this.currentPromise=this.currentPromise.then(e)}},Ie=null,Le=()=>Ie===null?Ie=!!(typeof navigator<`u`&&(navigator.vendor?.match(/apple/i)||/AppleWebKit/.test(navigator.userAgent)&&!/Chrome/.test(navigator.userAgent)||/\b(iPad|iPhone|iPod)\b/.test(navigator.userAgent))):Ie,Re=null,ze=()=>Re===null?Re=typeof navigator<`u`&&navigator.userAgent?.includes(`Firefox`):Re,Be=null,Ve=()=>Be===null?Be=!!(typeof navigator<`u`&&(navigator.vendor?.includes(`Google Inc`)||/Chrome/.test(navigator.userAgent))):Be,He=e=>globalThis.isSecureContext!==void 0&&!globalThis.isSecureContext?`${e} is not available in this environment; this may be because this page is running in an insecure context. Try serving your page over HTTPS or use localhost.`:`${e} is not available in this environment.`,Ue=(async()=>{})().constructor,O=e=>e instanceof Ue||e instanceof Promise||typeof e?.then==`function`,We=(e,t)=>e===-1?t:e,Ge=(e,t,n,r)=>e<=r&&n<=t,Ke=function*(e){for(let t in e){let n=e[t];n!==void 0&&(yield{key:t,value:n})}},qe=e=>{switch(e.toLowerCase()){case`image/jpeg`:case`image/jpg`:return`.jpg`;case`image/png`:return`.png`;case`image/gif`:return`.gif`;case`image/webp`:return`.webp`;case`image/bmp`:return`.bmp`;case`image/svg+xml`:return`.svg`;case`image/tiff`:return`.tiff`;case`image/avif`:return`.avif`;case`image/x-icon`:case`image/vnd.microsoft.icon`:return`.ico`;default:return null}},Je=e=>{let t=atob(e),n=new Uint8Array(t.length);for(let e=0;e<t.length;e++)n[e]=t.charCodeAt(e);return n},Ye=e=>{let t=``;for(let n=0;n<e.length;n++)t+=String.fromCharCode(e[n]);return btoa(t)},Xe=(e,t)=>{if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0},Ze=()=>{Symbol.dispose??=Symbol(`Symbol.dispose`)},Qe=e=>typeof e==`number`&&!Number.isNaN(e),$e=(e,t)=>{if(t.includes(`://`))return t;if(e.includes(`://`)){let t=e.indexOf(`?`);t!==-1&&(e=e.slice(0,t))}let n;if(t.startsWith(`/`)){let r=e.indexOf(`://`);if(r===-1)n=t;else{let i=e.indexOf(`/`,r+3);n=i===-1?e+t:e.slice(0,i)+t}}else{let r=e.lastIndexOf(`/`);n=r===-1?t:e.slice(0,r+1)+t}let r=``,i=n.indexOf(`://`);if(i!==-1){let e=n.indexOf(`/`,i+3);e!==-1&&(r=n.slice(0,e),n=n.slice(e))}let a=n.split(`/`),o=[];for(let e of a)e===`..`?o.pop():e!==`.`&&o.push(e);return r+o.join(`/`)},et=(e,t)=>{let n=0;for(let r=0;r<e.length;r++)t(e[r])&&n++;return n},tt=(e,t)=>{let n=-1,r=1/0;for(let i=0;i<e.length;i++){let a=t(e[i]);a<r&&(r=a,n=i)}return n},nt=(e,t)=>{let n=-1,r=-1/0;for(let i=0;i<e.length;i++){let a=t(e[i]);a>r&&(r=a,n=i)}return n},rt=e=>{r(Number.isInteger(e.num)),r(Number.isInteger(e.den)),r(e.den!==0);let t=Math.abs(e.num),n=Math.abs(e.den);for(;n!==0;){let e=t%n;t=n,n=e}let i=t||1;return{num:e.num/i,den:e.den/i}},it=(e,t)=>{if(typeof e!=`object`||!e)throw TypeError(`${t} must be an object.`);if(!Number.isInteger(e.left)||e.left<0)throw TypeError(`${t}.left must be a non-negative integer.`);if(!Number.isInteger(e.top)||e.top<0)throw TypeError(`${t}.top must be a non-negative integer.`);if(!Number.isInteger(e.width)||e.width<0)throw TypeError(`${t}.width must be a non-negative integer.`);if(!Number.isInteger(e.height)||e.height<0)throw TypeError(`${t}.height must be a non-negative integer.`)},at,ot=1,st=new Map,ct=new Map,lt=()=>typeof window>`u`,ut=()=>{let e=new Map,t=new Map;self.onmessage=n=>{let r=n.data;switch(r.type){case`set-timeout`:{let t=setTimeout(()=>{e.delete(r.timerId),self.postMessage({type:`fire`,timerId:r.timerId})},r.delay);e.set(r.timerId,t)}break;case`set-interval`:{let e=setInterval(()=>{self.postMessage({type:`fire`,timerId:r.timerId})},r.delay);t.set(r.timerId,e)}break;case`clear-timeout`:{let t=e.get(r.timerId);t!==void 0&&(clearTimeout(t),e.delete(r.timerId))}break;case`clear-interval`:{let e=t.get(r.timerId);e!==void 0&&(clearInterval(e),t.delete(r.timerId))}}}},dt=()=>{if(at)return at;let e=`(${ut.toString()})();`,t=URL.createObjectURL(new Blob([e],{type:`text/javascript`}));return at=new Worker(t),URL.revokeObjectURL(t),at.onmessage=e=>{let t=e.data,n=st.get(t.timerId);if(n){st.delete(t.timerId),n();return}let r=ct.get(t.timerId);r&&r()},at},ft=(e,t)=>{if(lt())return{id:setInterval(e,t)};let n=ot++;return ct.set(n,()=>{e()}),dt().postMessage({type:`set-interval`,timerId:n,delay:t}),{id:n}},pt=e=>{if(lt()){clearInterval(e.id);return}r(typeof e.id==`number`),ct.delete(e.id),dt().postMessage({type:`clear-interval`,timerId:e.id})},mt=e=>new Promise(t=>setTimeout(t,e)),ht=e=>Array.isArray(e)?e:[e],gt=class{constructor(){this._listeners=new Map}on(e,t,n){this._listeners.has(e)||this._listeners.set(e,new Set);let r={fn:t,once:n?.once??!1};return this._listeners.get(e).add(r),()=>{this._listeners.get(e)?.delete(r)}}_emit(...e){let[t,n]=e,r=this._listeners.get(t);if(r)for(let e of r){try{e.fn(n)}catch(e){console.error(e)}e.once&&r.delete(e)}}},_t=e=>Math.ceil(e/2)*2,vt=class{constructor(e){this._queue=[],this._errored=!1,this.parallelism=e}get errored(){return this._errored}get inFlightCount(){return this._queue.length}async run(e){for(this._errored&&await Promise.race(this._queue);this._queue.length>=this.parallelism;)await Promise.race(this._queue);let t=e();this._queue.push(t),t.then(()=>le(this._queue,t)).catch(()=>this._errored=!0)}async flush(){await Promise.all(this._queue)}},yt=e=>typeof e==`object`&&!!e&&Object.getPrototypeOf(e)===Object.prototype&&Object.values(e).every(e=>typeof e==`string`),bt;(function(e){e[e.Silent=0]=`Silent`,e[e.Errors=1]=`Errors`,e[e.Warnings=2]=`Warnings`,e[e.Info=3]=`Info`})(bt||={});var k=class e{constructor(){}static get level(){return e._level}static set level(t){if(t!==bt.Silent&&t!==bt.Errors&&t!==bt.Warnings&&t!==bt.Info)throw TypeError(`Invalid log level. Use one of the values of the LogLevel enum.`);e._level=t}static get _emitter(){return e._emitterInstance??=new gt}static on(t,n,r){return e._emitter.on(t,n,r)}static _error(...t){e._emitter._emit(`error`,t),e._level>=bt.Errors&&console.error(...t)}static _warn(...t){e._emitter._emit(`warn`,t),e._level>=bt.Warnings&&console.warn(...t)}static _info(...t){e._emitter._emit(`info`,t),e._level>=bt.Info&&console.info(...t)}};k._level=bt.Info,k._emitterInstance=null;var xt=class{constructor(e,t){if(this.data=e,this.mimeType=t,!(e instanceof Uint8Array))throw TypeError(`data must be a Uint8Array.`);if(typeof t!=`string`)throw TypeError(`mimeType must be a string.`)}},St=class{constructor(e,t,n,r){if(this.data=e,this.mimeType=t,this.name=n,this.description=r,!(e instanceof Uint8Array))throw TypeError(`data must be a Uint8Array.`);if(t!==void 0&&typeof t!=`string`)throw TypeError(`mimeType, when provided, must be a string.`);if(n!==void 0&&typeof n!=`string`)throw TypeError(`name, when provided, must be a string.`);if(r!==void 0&&typeof r!=`string`)throw TypeError(`description, when provided, must be a string.`)}},Ct=e=>{if(!e||typeof e!=`object`)throw TypeError(`tags must be an object.`);if(e.title!==void 0&&typeof e.title!=`string`)throw TypeError(`tags.title, when provided, must be a string.`);if(e.description!==void 0&&typeof e.description!=`string`)throw TypeError(`tags.description, when provided, must be a string.`);if(e.artist!==void 0&&typeof e.artist!=`string`)throw TypeError(`tags.artist, when provided, must be a string.`);if(e.album!==void 0&&typeof e.album!=`string`)throw TypeError(`tags.album, when provided, must be a string.`);if(e.albumArtist!==void 0&&typeof e.albumArtist!=`string`)throw TypeError(`tags.albumArtist, when provided, must be a string.`);if(e.trackNumber!==void 0&&(!Number.isInteger(e.trackNumber)||e.trackNumber<=0))throw TypeError(`tags.trackNumber, when provided, must be a positive integer.`);if(e.tracksTotal!==void 0&&(!Number.isInteger(e.tracksTotal)||e.tracksTotal<=0))throw TypeError(`tags.tracksTotal, when provided, must be a positive integer.`);if(e.discNumber!==void 0&&(!Number.isInteger(e.discNumber)||e.discNumber<=0))throw TypeError(`tags.discNumber, when provided, must be a positive integer.`);if(e.discsTotal!==void 0&&(!Number.isInteger(e.discsTotal)||e.discsTotal<=0))throw TypeError(`tags.discsTotal, when provided, must be a positive integer.`);if(e.genre!==void 0&&typeof e.genre!=`string`)throw TypeError(`tags.genre, when provided, must be a string.`);if(e.date!==void 0&&(!(e.date instanceof Date)||Number.isNaN(e.date.getTime())))throw TypeError(`tags.date, when provided, must be a valid Date.`);if(e.lyrics!==void 0&&typeof e.lyrics!=`string`)throw TypeError(`tags.lyrics, when provided, must be a string.`);if(e.images!==void 0){if(!Array.isArray(e.images))throw TypeError(`tags.images, when provided, must be an array.`);for(let t of e.images){if(!t||typeof t!=`object`)throw TypeError(`Each image in tags.images must be an object.`);if(!(t.data instanceof Uint8Array))throw TypeError(`Each image.data must be a Uint8Array.`);if(typeof t.mimeType!=`string`)throw TypeError(`Each image.mimeType must be a string.`);if(![`coverFront`,`coverBack`,`unknown`].includes(t.kind))throw TypeError(`Each image.kind must be 'coverFront', 'coverBack', or 'unknown'.`)}}if(e.comment!==void 0&&typeof e.comment!=`string`)throw TypeError(`tags.comment, when provided, must be a string.`);if(e.raw!==void 0){if(!e.raw||typeof e.raw!=`object`)throw TypeError(`tags.raw, when provided, must be an object.`);for(let t of Object.values(e.raw))if(t!==null&&typeof t!=`string`&&!(t instanceof Uint8Array)&&!(t instanceof xt)&&!(t instanceof St)&&!yt(t))throw TypeError(`Each value in tags.raw must be a string, Uint8Array, RichImageData, AttachedFile, Record<string, string>, or null.`)}},wt=e=>e.title===void 0&&e.description===void 0&&e.artist===void 0&&e.album===void 0&&e.albumArtist===void 0&&e.trackNumber===void 0&&e.tracksTotal===void 0&&e.discNumber===void 0&&e.discsTotal===void 0&&e.genre===void 0&&e.date===void 0&&e.lyrics===void 0&&(!e.images||e.images.length===0)&&e.comment===void 0&&(e.raw===void 0||Object.keys(e.raw).length===0),Tt={default:!0,primary:!0,forced:!1,original:!1,commentary:!1,hearingImpaired:!1,visuallyImpaired:!1},Et=e=>{if(!e||typeof e!=`object`)throw TypeError(`disposition must be an object.`);if(e.default!==void 0&&typeof e.default!=`boolean`)throw TypeError(`disposition.default must be a boolean.`);if(e.primary!==void 0&&typeof e.primary!=`boolean`)throw TypeError(`disposition.primary must be a boolean.`);if(e.forced!==void 0&&typeof e.forced!=`boolean`)throw TypeError(`disposition.forced must be a boolean.`);if(e.original!==void 0&&typeof e.original!=`boolean`)throw TypeError(`disposition.original must be a boolean.`);if(e.commentary!==void 0&&typeof e.commentary!=`boolean`)throw TypeError(`disposition.commentary must be a boolean.`);if(e.hearingImpaired!==void 0&&typeof e.hearingImpaired!=`boolean`)throw TypeError(`disposition.hearingImpaired must be a boolean.`);if(e.visuallyImpaired!==void 0&&typeof e.visuallyImpaired!=`boolean`)throw TypeError(`disposition.visuallyImpaired must be a boolean.`)},A=class e{constructor(e){this.bytes=e,this.pos=0}seekToByte(e){this.pos=8*e}readBit(){let e=Math.floor(this.pos/8),t=this.bytes[e]??0,n=7-(this.pos&7),r=(t&1<<n)>>n;return this.pos++,r}readBits(e){if(e===1)return this.readBit();let t=0;for(let n=0;n<e;n++)t<<=1,t|=this.readBit();return t}writeBits(e,t){let n=this.pos+e;for(let e=this.pos;e<n;e++){let r=Math.floor(e/8),i=this.bytes[r],a=7-(e&7);i&=~(1<<a),i|=(t&1<<n-e-1)>>n-e-1<<a,this.bytes[r]=i}this.pos=n}readAlignedByte(){if(this.pos%8!=0)throw Error(`Bitstream is not byte-aligned.`);let e=this.pos/8,t=this.bytes[e]??0;return this.pos+=8,t}skipBits(e){this.pos+=e}getBitsLeft(){return this.bytes.length*8-this.pos}clone(){let t=new e(this.bytes);return t.pos=this.pos,t}},Dt=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350],Ot=[-1,1,2,3,4,5,6,8],kt=e=>{if(!e||e.byteLength<2)throw TypeError(`AAC description must be at least 2 bytes long.`);let t=new A(e),n=At(t),{frequencyIndex:r,sampleRate:i}=jt(t),a=t.readBits(4),o=null;a>=1&&a<=7&&(o=Ot[a]);let s=n,c=!1,l=i;if(n===5||n===29)c=n===29,l=jt(t).sampleRate,s=At(t),s===22&&t.skipBits(4);else for(;t.getBitsLeft()>15;){let e=t.pos;if(t.readBits(11)!==695){t.pos=e+1;continue}At(t)===5&&t.readBits(1)&&(l=jt(t).sampleRate,t.getBitsLeft()>11&&t.readBits(11)===1352&&(c=!!t.readBits(1)));break}return o!==null&&o>1&&(c=!1),{objectType:n,coreObjectType:s,frequencyIndex:r,channelConfiguration:a,outputSampleRate:l,outputNumberOfChannels:c&&o===1?2:o}},At=e=>{let t=e.readBits(5);return t===31?32+e.readBits(6):t},jt=e=>{let t=e.readBits(4);return t===15?{frequencyIndex:t,sampleRate:e.readBits(24)}:{frequencyIndex:t,sampleRate:t<Dt.length?Dt[t]:null}},Mt=e=>{let t=e.objectType===5||e.objectType===29,n=e.objectType===29,r=t?e.outputSampleRate/2:e.outputSampleRate,i=n?1:e.outputNumberOfChannels,a=Ot.indexOf(i);if(a===-1)throw TypeError(`Unsupported number of channels: ${e.outputNumberOfChannels}`);let o=16;e.objectType>=32&&(o+=6),Ft(r)===15&&(o+=24),t&&(o+=9,Ft(e.outputSampleRate)===15&&(o+=24));let s=Math.ceil(o/8),c=new Uint8Array(s),l=new A(c);return Nt(l,e.objectType),Pt(l,r),l.writeBits(4,a),t&&(Pt(l,e.outputSampleRate),Nt(l,2)),l.writeBits(3,0),c},Nt=(e,t)=>{t<32?e.writeBits(5,t):(e.writeBits(5,31),e.writeBits(6,t-32))},Pt=(e,t)=>{let n=Ft(t);e.writeBits(4,n),n===15&&e.writeBits(24,t)},Ft=e=>{let t=Dt.indexOf(e);return t===-1?15:t},It=e=>{let t=new Uint8Array(7),n=new A(t),{coreObjectType:r,frequencyIndex:i,channelConfiguration:a}=e,o=r-1;return n.writeBits(12,4095),n.writeBits(1,0),n.writeBits(2,0),n.writeBits(1,1),n.writeBits(2,o),n.writeBits(4,i),n.writeBits(1,0),n.writeBits(3,a),n.writeBits(1,0),n.writeBits(1,0),n.writeBits(1,0),n.writeBits(1,0),n.skipBits(13),n.writeBits(11,2047),n.writeBits(2,0),{header:t,bitstream:n}},Lt=(e,t)=>{e.pos=30,e.writeBits(13,t)},Rt=[48e3,44100,32e3],zt=[24e3,22050,16e3],j;(function(e){e[e.NON_IDR_SLICE=1]=`NON_IDR_SLICE`,e[e.SLICE_DPA=2]=`SLICE_DPA`,e[e.SLICE_DPB=3]=`SLICE_DPB`,e[e.SLICE_DPC=4]=`SLICE_DPC`,e[e.IDR=5]=`IDR`,e[e.SEI=6]=`SEI`,e[e.SPS=7]=`SPS`,e[e.PPS=8]=`PPS`,e[e.AUD=9]=`AUD`,e[e.SPS_EXT=13]=`SPS_EXT`})(j||={});var M;(function(e){e[e.RASL_N=8]=`RASL_N`,e[e.RASL_R=9]=`RASL_R`,e[e.BLA_W_LP=16]=`BLA_W_LP`,e[e.RSV_IRAP_VCL23=23]=`RSV_IRAP_VCL23`,e[e.VPS_NUT=32]=`VPS_NUT`,e[e.SPS_NUT=33]=`SPS_NUT`,e[e.PPS_NUT=34]=`PPS_NUT`,e[e.AUD_NUT=35]=`AUD_NUT`,e[e.PREFIX_SEI_NUT=39]=`PREFIX_SEI_NUT`,e[e.SUFFIX_SEI_NUT=40]=`SUFFIX_SEI_NUT`})(M||={});var Bt=function*(e){let t=0,n=-1;for(;t<e.length-2;){let r=e.indexOf(0,t);if(r===-1||r>=e.length-2)break;t=r;let i=0;if(t+3<e.length&&e[t+1]===0&&e[t+2]===0&&e[t+3]===1?i=4:e[t+1]===0&&e[t+2]===1&&(i=3),i===0){t++;continue}n!==-1&&t>n&&(yield{offset:n,length:t-n}),n=t+i,t=n}n!==-1&&n<e.length&&(yield{offset:n,length:e.length-n})},Vt=function*(e,t){let n=0,i=new DataView(e.buffer,e.byteOffset,e.byteLength);for(;n+t<=e.length;){let e;t===1?e=i.getUint8(n):t===2?e=i.getUint16(n,!1):t===3?e=me(i,n,!1):(r(t===4),e=i.getUint32(n,!1)),n+=t,yield{offset:n,length:e},n+=e}},Ht=(e,t)=>t.description?Vt(e,(u(t.description)[4]&3)+1):Bt(e),Ut=e=>e&31,Wt=e=>{let t=[],n=e.length;for(let r=0;r<n;r++)r+2<n&&e[r]===0&&e[r+1]===0&&e[r+2]===3?(t.push(0,0),r+=2):t.push(e[r]);return new Uint8Array(t)},Gt=new Uint8Array([0,0,0,1]),Kt=e=>{let t=e.reduce((e,t)=>e+Gt.byteLength+t.byteLength,0),n=new Uint8Array(t),r=0;for(let t of e)n.set(Gt,r),r+=Gt.byteLength,n.set(t,r),r+=t.byteLength;return n},qt=(e,t)=>{let n=e.reduce((e,n)=>e+t+n.byteLength,0),r=new Uint8Array(n),i=0;for(let n of e){let e=new DataView(r.buffer,r.byteOffset,r.byteLength);switch(t){case 1:e.setUint8(i,n.byteLength);break;case 2:e.setUint16(i,n.byteLength,!1);break;case 3:ge(e,i,n.byteLength,!1);break;case 4:e.setUint32(i,n.byteLength,!1)}i+=t,r.set(n,i),i+=n.byteLength}return r},Jt=(e,t)=>t.description?qt(e,(u(t.description)[4]&3)+1):Kt(e),Yt=e=>{try{let t=[],n=[],i=[];for(let r of Bt(e)){let a=e.subarray(r.offset,r.offset+r.length),o=Ut(a[0]);o===j.SPS?t.push(a):o===j.PPS?n.push(a):o===j.SPS_EXT&&i.push(a)}if(t.length===0||n.length===0)return null;let a=t[0],o=$t(a);r(o!==null);let s=o.profileIdc===100||o.profileIdc===110||o.profileIdc===122||o.profileIdc===144;return{configurationVersion:1,avcProfileIndication:o.profileIdc,profileCompatibility:o.constraintFlags,avcLevelIndication:o.levelIdc,lengthSizeMinusOne:3,sequenceParameterSets:t,pictureParameterSets:n,chromaFormat:s?o.chromaFormatIdc:null,bitDepthLumaMinus8:s?o.bitDepthLumaMinus8:null,bitDepthChromaMinus8:s?o.bitDepthChromaMinus8:null,sequenceParameterSetExt:s?i:null}}catch(e){return k._error(`Error building AVC Decoder Configuration Record:`,e),null}},Xt=e=>{let t=[];t.push(e.configurationVersion),t.push(e.avcProfileIndication),t.push(e.profileCompatibility),t.push(e.avcLevelIndication),t.push(252|e.lengthSizeMinusOne&3),t.push(224|e.sequenceParameterSets.length&31);for(let n of e.sequenceParameterSets){let e=n.byteLength;t.push(e>>8),t.push(e&255);for(let r=0;r<e;r++)t.push(n[r])}t.push(e.pictureParameterSets.length);for(let n of e.pictureParameterSets){let e=n.byteLength;t.push(e>>8),t.push(e&255);for(let r=0;r<e;r++)t.push(n[r])}if(e.avcProfileIndication===100||e.avcProfileIndication===110||e.avcProfileIndication===122||e.avcProfileIndication===144){r(e.chromaFormat!==null),r(e.bitDepthLumaMinus8!==null),r(e.bitDepthChromaMinus8!==null),r(e.sequenceParameterSetExt!==null),t.push(252|e.chromaFormat&3),t.push(248|e.bitDepthLumaMinus8&7),t.push(248|e.bitDepthChromaMinus8&7),t.push(e.sequenceParameterSetExt.length);for(let n of e.sequenceParameterSetExt){let e=n.byteLength;t.push(e>>8),t.push(e&255);for(let r=0;r<e;r++)t.push(n[r])}}return new Uint8Array(t)},Zt=e=>{try{let t=d(e),n=0,r=t.getUint8(n++),i=t.getUint8(n++),a=t.getUint8(n++),o=t.getUint8(n++),s=t.getUint8(n++)&3,c=t.getUint8(n++)&31,l=[];for(let r=0;r<c;r++){let r=t.getUint16(n,!1);n+=2,l.push(e.subarray(n,n+r)),n+=r}let u=t.getUint8(n++),f=[];for(let r=0;r<u;r++){let r=t.getUint16(n,!1);n+=2,f.push(e.subarray(n,n+r)),n+=r}let p={configurationVersion:r,avcProfileIndication:i,profileCompatibility:a,avcLevelIndication:o,lengthSizeMinusOne:s,sequenceParameterSets:l,pictureParameterSets:f,chromaFormat:null,bitDepthLumaMinus8:null,bitDepthChromaMinus8:null,sequenceParameterSetExt:null};if((i===100||i===110||i===122||i===144)&&n+4<=e.length){let r=t.getUint8(n++)&3,i=t.getUint8(n++)&7,a=t.getUint8(n++)&7,o=t.getUint8(n++);p.chromaFormat=r,p.bitDepthLumaMinus8=i,p.bitDepthChromaMinus8=a;let s=[];for(let r=0;r<o;r++){let r=t.getUint16(n,!1);n+=2,s.push(e.subarray(n,n+r)),n+=r}p.sequenceParameterSetExt=s}return p}catch(e){return k._error(`Error deserializing AVC Decoder Configuration Record:`,e),null}},Qt={1:{num:1,den:1},2:{num:12,den:11},3:{num:10,den:11},4:{num:16,den:11},5:{num:40,den:33},6:{num:24,den:11},7:{num:20,den:11},8:{num:32,den:11},9:{num:80,den:33},10:{num:18,den:11},11:{num:15,den:11},12:{num:64,den:33},13:{num:160,den:99},14:{num:4,den:3},15:{num:3,den:2},16:{num:2,den:1}},$t=e=>{try{let t=new A(Wt(e));if(t.skipBits(1),t.skipBits(2),t.readBits(5)!==7)return null;let n=t.readAlignedByte(),i=t.readAlignedByte(),o=t.readAlignedByte();s(t);let l=1,u=0,d=0,f=0;if((n===100||n===110||n===122||n===244||n===44||n===83||n===86||n===118||n===128)&&(l=s(t),l===3&&(f=t.readBits(1)),u=s(t),d=s(t),t.skipBits(1),t.readBits(1))){for(let e=0;e<(l===3?12:8);e++)if(t.readBits(1)){let n=e<6?16:64,r=8,i=8;for(let e=0;e<n;e++){if(i!==0){let e=c(t);i=(r+e+256)%256}r=i===0?r:i}}}s(t);let p=s(t);if(p===0)s(t);else if(p===1){t.skipBits(1),c(t),c(t);let e=s(t);for(let n=0;n<e;n++)c(t)}s(t),t.skipBits(1);let m=s(t),h=s(t),g=16*(m+1),_=16*(h+1),v=g,y=_,b=t.readBits(1);if(b||t.skipBits(1),t.skipBits(1),t.readBits(1)){let e=s(t),n=s(t),r=s(t),i=s(t),a,o;if((f===0?l:0)===0)a=1,o=2-b;else{let e=l===3?1:2,t=l===1?2:1;a=e,o=t*(2-b)}v-=a*(e+n),y-=o*(r+i)}let x=2,S=2,C=2,ee=0,te={num:1,den:1},ne=null,re=null;if(t.readBits(1)){if(t.readBits(1)){let e=t.readBits(8);if(e===255)te={num:t.readBits(16),den:t.readBits(16)};else{let t=Qt[e];t&&(te=t)}}t.readBits(1)&&t.skipBits(1),t.readBits(1)&&(t.skipBits(3),ee=t.readBits(1),t.readBits(1)&&(x=t.readBits(8),S=t.readBits(8),C=t.readBits(8))),t.readBits(1)&&(s(t),s(t)),t.readBits(1)&&(t.skipBits(32),t.skipBits(32),t.skipBits(1));let e=t.readBits(1);e&&en(t);let n=t.readBits(1);n&&en(t),(e||n)&&t.skipBits(1),t.skipBits(1),t.readBits(1)&&(t.skipBits(1),s(t),s(t),s(t),s(t),ne=s(t),re=s(t))}if(ne===null){r(re===null);let e=i&16;if((n===44||n===86||n===100||n===110||n===122||n===244)&&e)ne=0,re=0;else{let e=m+1,t=h+1,n=(2-b)*t,r=dr.find(e=>e.level>=o)??a(dr),i=Math.min(Math.floor(r.maxDpbMbs/(e*n)),16);ne=i,re=i}}return r(re!==null),{profileIdc:n,constraintFlags:i,levelIdc:o,frameMbsOnlyFlag:b,chromaFormatIdc:l,bitDepthLumaMinus8:u,bitDepthChromaMinus8:d,codedWidth:g,codedHeight:_,displayWidth:v,displayHeight:y,pixelAspectRatio:te,colourPrimaries:x,matrixCoefficients:C,transferCharacteristics:S,fullRangeFlag:ee,numReorderFrames:ne,maxDecFrameBuffering:re}}catch(e){return k._error(`Error parsing AVC SPS:`,e),null}},en=e=>{let t=s(e);e.skipBits(4),e.skipBits(4);for(let n=0;n<=t;n++)s(e),s(e),e.skipBits(1);e.skipBits(5),e.skipBits(5),e.skipBits(5),e.skipBits(5)},tn=(e,t)=>t.description?qt(e,(u(t.description)[21]&3)+1):Kt(e),nn=(e,t)=>t.description?Vt(e,(u(t.description)[21]&3)+1):Bt(e),rn=e=>e>>1&63,an=e=>{try{let t=new A(Wt(e));t.skipBits(16),t.readBits(4);let n=t.readBits(3),r=t.readBits(1),{general_profile_space:i,general_tier_flag:a,general_profile_idc:o,general_profile_compatibility_flags:c,general_constraint_indicator_flags:l,general_level_idc:u}=sn(t,n);s(t);let d=s(t),f=0;d===3&&(f=t.readBits(1));let p=s(t),m=s(t),h=p,g=m;if(t.readBits(1)){let e=s(t),n=s(t),r=s(t),i=s(t),a=1,o=1,c=f===0?d:0;c===1?(a=2,o=2):c===2&&(a=2,o=1),h-=(e+n)*a,g-=(r+i)*o}let _=s(t),v=s(t);s(t);let y=t.readBits(1)?0:n,b=0;for(let e=y;e<=n;e++)s(t),b=s(t),s(t);if(s(t),s(t),s(t),s(t),s(t),s(t),t.readBits(1)&&t.readBits(1)&&cn(t),t.skipBits(1),t.skipBits(1),t.readBits(1)&&(t.skipBits(4),t.skipBits(4),s(t),s(t),t.skipBits(1)),ln(t,s(t)),t.readBits(1)){let e=s(t);for(let n=0;n<e;n++)s(t),t.skipBits(1)}t.skipBits(1),t.skipBits(1);let x=2,S=2,C=2,ee=0,te=0,ne={num:1,den:1};if(t.readBits(1)){let e=dn(t,n);ne=e.pixelAspectRatio,x=e.colourPrimaries,S=e.transferCharacteristics,C=e.matrixCoefficients,ee=e.fullRangeFlag,te=e.minSpatialSegmentationIdc}return{displayWidth:h,displayHeight:g,pixelAspectRatio:ne,colourPrimaries:x,transferCharacteristics:S,matrixCoefficients:C,fullRangeFlag:ee,maxDecFrameBuffering:b+1,spsMaxSubLayersMinus1:n,spsTemporalIdNestingFlag:r,generalProfileSpace:i,generalTierFlag:a,generalProfileIdc:o,generalProfileCompatibilityFlags:c,generalConstraintIndicatorFlags:l,generalLevelIdc:u,chromaFormatIdc:d,bitDepthLumaMinus8:_,bitDepthChromaMinus8:v,minSpatialSegmentationIdc:te}}catch(e){return k._error(`Error parsing HEVC SPS:`,e),null}},on=e=>{try{let t=[],n=[],r=[],i=[];for(let a of Bt(e)){let o=e.subarray(a.offset,a.offset+a.length),s=rn(o[0]);s===M.VPS_NUT?t.push(o):s===M.SPS_NUT?n.push(o):s===M.PPS_NUT?r.push(o):(s===M.PREFIX_SEI_NUT||s===M.SUFFIX_SEI_NUT)&&i.push(o)}if(n.length===0||r.length===0)return null;let a=an(n[0]);if(!a)return null;let o=0;if(r.length>0){let e=r[0],t=new A(Wt(e));t.skipBits(16),s(t),s(t),t.skipBits(1),t.skipBits(1),t.skipBits(3),t.skipBits(1),t.skipBits(1),s(t),s(t),c(t),t.skipBits(1),t.skipBits(1),t.readBits(1)&&s(t),c(t),c(t),t.skipBits(1),t.skipBits(1),t.skipBits(1),t.skipBits(1);let n=t.readBits(1),i=t.readBits(1);o=!n&&!i?0:n&&!i?2:!n&&i?3:0}let l=[...t.length?[{arrayCompleteness:1,nalUnitType:M.VPS_NUT,nalUnits:t}]:[],...n.length?[{arrayCompleteness:1,nalUnitType:M.SPS_NUT,nalUnits:n}]:[],...r.length?[{arrayCompleteness:1,nalUnitType:M.PPS_NUT,nalUnits:r}]:[],...i.length?[{arrayCompleteness:1,nalUnitType:rn(i[0][0]),nalUnits:i}]:[]];return{configurationVersion:1,generalProfileSpace:a.generalProfileSpace,generalTierFlag:a.generalTierFlag,generalProfileIdc:a.generalProfileIdc,generalProfileCompatibilityFlags:a.generalProfileCompatibilityFlags,generalConstraintIndicatorFlags:a.generalConstraintIndicatorFlags,generalLevelIdc:a.generalLevelIdc,minSpatialSegmentationIdc:a.minSpatialSegmentationIdc,parallelismType:o,chromaFormatIdc:a.chromaFormatIdc,bitDepthLumaMinus8:a.bitDepthLumaMinus8,bitDepthChromaMinus8:a.bitDepthChromaMinus8,avgFrameRate:0,constantFrameRate:0,numTemporalLayers:a.spsMaxSubLayersMinus1+1,temporalIdNested:a.spsTemporalIdNestingFlag,lengthSizeMinusOne:3,arrays:l}}catch(e){return k._error(`Error building HEVC Decoder Configuration Record:`,e),null}},sn=(e,t)=>{let n=e.readBits(2),r=e.readBits(1),i=e.readBits(5),a=0;for(let t=0;t<32;t++)a=a<<1|e.readBits(1);let o=new Uint8Array(6);for(let t=0;t<6;t++)o[t]=e.readBits(8);let s=e.readBits(8),c=[],l=[];for(let n=0;n<t;n++)c.push(e.readBits(1)),l.push(e.readBits(1));if(t>0)for(let n=t;n<8;n++)e.skipBits(2);for(let n=0;n<t;n++)c[n]&&e.skipBits(88),l[n]&&e.skipBits(8);return{general_profile_space:n,general_tier_flag:r,general_profile_idc:i,general_profile_compatibility_flags:a,general_constraint_indicator_flags:o,general_level_idc:s}},cn=e=>{for(let t=0;t<4;t++)for(let n=0;n<(t===3?2:6);n++)if(!e.readBits(1))s(e);else{let n=Math.min(64,1<<4+(t<<1));t>1&&c(e);for(let t=0;t<n;t++)c(e)}},ln=(e,t)=>{let n=[];for(let r=0;r<t;r++)n[r]=un(e,r,t,n)},un=(e,t,n,r)=>{let i=0,a=0,o=0;if(t!==0&&(a=e.readBits(1)),a){o=t===n?t-(s(e)+1):t-1,e.readBits(1),s(e);let a=r[o]??0;for(let t=0;t<=a;t++)e.readBits(1)||e.readBits(1);i=r[o]}else{let t=s(e),n=s(e);for(let n=0;n<t;n++)s(e),e.readBits(1);for(let t=0;t<n;t++)s(e),e.readBits(1);i=t+n}return i},dn=(e,t)=>{let n=2,r=2,i=2,a=0,o=0,c={num:1,den:1};if(e.readBits(1)){let t=e.readBits(8);if(t===255)c={num:e.readBits(16),den:e.readBits(16)};else{let e=Qt[t];e&&(c=e)}}return e.readBits(1)&&e.readBits(1),e.readBits(1)&&(e.readBits(3),a=e.readBits(1),e.readBits(1)&&(n=e.readBits(8),r=e.readBits(8),i=e.readBits(8))),e.readBits(1)&&(s(e),s(e)),e.readBits(1),e.readBits(1),e.readBits(1),e.readBits(1)&&(s(e),s(e),s(e),s(e)),e.readBits(1)&&(e.readBits(32),e.readBits(32),e.readBits(1)&&s(e),e.readBits(1)&&fn(e,!0,t)),e.readBits(1)&&(e.readBits(1),e.readBits(1),e.readBits(1),o=s(e),s(e),s(e),s(e),s(e)),{pixelAspectRatio:c,colourPrimaries:n,transferCharacteristics:r,matrixCoefficients:i,fullRangeFlag:a,minSpatialSegmentationIdc:o}},fn=(e,t,n)=>{let r=!1,i=!1,a=!1;t&&(r=e.readBits(1)===1,i=e.readBits(1)===1,(r||i)&&(a=e.readBits(1)===1,a&&(e.readBits(8),e.readBits(5),e.readBits(1),e.readBits(5)),e.readBits(4),e.readBits(4),a&&e.readBits(4),e.readBits(5),e.readBits(5),e.readBits(5)));for(let t=0;t<=n;t++){let t=e.readBits(1)===1,n=!0;t||(n=e.readBits(1)===1);let o=!1;n?s(e):o=e.readBits(1)===1;let c=1;o||(c=s(e)+1),r&&pn(e,c,a),i&&pn(e,c,a)}},pn=(e,t,n)=>{for(let r=0;r<t;r++)s(e),s(e),n&&(s(e),s(e)),e.readBits(1)},mn=e=>{let t=[];t.push(e.configurationVersion),t.push((e.generalProfileSpace&3)<<6|(e.generalTierFlag&1)<<5|e.generalProfileIdc&31),t.push(e.generalProfileCompatibilityFlags>>>24&255),t.push(e.generalProfileCompatibilityFlags>>>16&255),t.push(e.generalProfileCompatibilityFlags>>>8&255),t.push(e.generalProfileCompatibilityFlags&255),t.push(...e.generalConstraintIndicatorFlags),t.push(e.generalLevelIdc&255),t.push(240|e.minSpatialSegmentationIdc>>8&15),t.push(e.minSpatialSegmentationIdc&255),t.push(252|e.parallelismType&3),t.push(252|e.chromaFormatIdc&3),t.push(248|e.bitDepthLumaMinus8&7),t.push(248|e.bitDepthChromaMinus8&7),t.push(e.avgFrameRate>>8&255),t.push(e.avgFrameRate&255),t.push((e.constantFrameRate&3)<<6|(e.numTemporalLayers&7)<<3|(e.temporalIdNested&1)<<2|e.lengthSizeMinusOne&3),t.push(e.arrays.length&255);for(let n of e.arrays){t.push((n.arrayCompleteness&1)<<7|0|n.nalUnitType&63),t.push(n.nalUnits.length>>8&255),t.push(n.nalUnits.length&255);for(let e of n.nalUnits){t.push(e.length>>8&255),t.push(e.length&255);for(let n=0;n<e.length;n++)t.push(e[n])}}return new Uint8Array(t)},hn=e=>{try{let t=d(e),n=0,r=t.getUint8(n++),i=t.getUint8(n++),a=i>>6&3,o=i>>5&1,s=i&31,c=t.getUint32(n,!1);n+=4;let l=e.subarray(n,n+6);n+=6;let u=t.getUint8(n++),f=(t.getUint8(n++)&15)<<8|t.getUint8(n++),p=t.getUint8(n++)&3,m=t.getUint8(n++)&3,h=t.getUint8(n++)&7,g=t.getUint8(n++)&7,_=t.getUint16(n,!1);n+=2;let v=t.getUint8(n++),y=v>>6&3,b=v>>3&7,x=v>>2&1,S=v&3,C=t.getUint8(n++),ee=[];for(let r=0;r<C;r++){let r=t.getUint8(n++),i=r>>7&1,a=r&63,o=t.getUint16(n,!1);n+=2;let s=[];for(let r=0;r<o;r++){let r=t.getUint16(n,!1);n+=2,s.push(e.subarray(n,n+r)),n+=r}ee.push({arrayCompleteness:i,nalUnitType:a,nalUnits:s})}return{configurationVersion:r,generalProfileSpace:a,generalTierFlag:o,generalProfileIdc:s,generalProfileCompatibilityFlags:c,generalConstraintIndicatorFlags:l,generalLevelIdc:u,minSpatialSegmentationIdc:f,parallelismType:p,chromaFormatIdc:m,bitDepthLumaMinus8:h,bitDepthChromaMinus8:g,avgFrameRate:_,constantFrameRate:y,numTemporalLayers:b,temporalIdNested:x,lengthSizeMinusOne:S,arrays:ee}}catch(e){return k._error(`Error deserializing HEVC Decoder Configuration Record:`,e),null}},gn;(function(e){e[e.audAllowed=0]=`audAllowed`,e[e.beforeFirstVcl=1]=`beforeFirstVcl`,e[e.afterFirstVcl=2]=`afterFirstVcl`,e[e.eoBitstreamAllowed=3]=`eoBitstreamAllowed`,e[e.noMoreDataAllowed=4]=`noMoreDataAllowed`})(gn||={});var _n=(e,t)=>{let n=new Set,r=gn.audAllowed;for(let i of nn(e,t)){if(r===gn.noMoreDataAllowed){n.add(i.offset);continue}let t=rn(e[i.offset]);if(r===gn.eoBitstreamAllowed&&t!==37){n.add(i.offset);continue}let a=!1;t===35?r>gn.audAllowed?a=!0:r=gn.beforeFirstVcl:t<=31?r>gn.afterFirstVcl?a=!0:r=gn.afterFirstVcl:t===36?r===gn.afterFirstVcl?r=gn.eoBitstreamAllowed:a=!0:t===37?r<gn.afterFirstVcl?a=!0:r=gn.noMoreDataAllowed:t===32||t===33||t===34||t===39||t>=41&&t<=44||t>=48&&t<=55?r>gn.beforeFirstVcl?a=!0:r=gn.beforeFirstVcl:(t===38||t===40||t>=45&&t<=47||t>=56&&t<=63)&&r<gn.afterFirstVcl&&(a=!0),a&&n.add(i.offset)}if(n.size===0)return null;let i=[];for(let r of nn(e,t))n.has(r.offset)||i.push(e.subarray(r.offset,r.offset+r.length));return tn(i,t)},vn={1:{colourPrimaries:5,transferCharacteristics:6,matrixCoefficients:5},2:{colourPrimaries:1,transferCharacteristics:1,matrixCoefficients:1},3:{colourPrimaries:6,transferCharacteristics:6,matrixCoefficients:6},4:{colourPrimaries:7,transferCharacteristics:7,matrixCoefficients:7},5:{colourPrimaries:9,transferCharacteristics:14,matrixCoefficients:9},7:{colourPrimaries:1,transferCharacteristics:13,matrixCoefficients:0}},yn=e=>{let t=new A(e);if(t.readBits(2)!==2)return null;let n=t.readBits(1),r=(t.readBits(1)<<1)+n;if(r===3&&t.skipBits(1),t.readBits(1)===1||t.readBits(1)!==0||(t.skipBits(2),t.readBits(24)!==4817730))return null;let i=8;r>=2&&(i=t.readBits(1)?12:10);let o=t.readBits(3),s=0,c=0;if(o!==7){if(c=t.readBits(1),r===1||r===3){let e=t.readBits(1),n=t.readBits(1);s=!e&&!n?3:e&&!n?2:1,t.skipBits(1)}else s=1}else s=3,c=1;let l=t.readBits(16),u=t.readBits(16),d=(l+1)*(u+1),f=a(pr).level;for(let e of pr)if(d<=e.maxPictureSize){f=e.level;break}let p=vn[o],m=p?.colourPrimaries??2,h=p?.transferCharacteristics??2,g=p?.matrixCoefficients??2;return{profile:r,level:f,bitDepth:i,chromaSubsampling:s,videoFullRangeFlag:c,colourPrimaries:m,transferCharacteristics:h,matrixCoefficients:g}},bn=e=>e.colourPrimaries!==2||e.transferCharacteristics!==2||e.matrixCoefficients!==2,xn=function*(e){let t=new A(e),n=()=>{let e=0;for(let n=0;n<8;n++){let r=t.readAlignedByte();if(e+=(r&127)*2**(n*7),!(r&128))break;if(n===7&&r&128)return null}return e>2**32-1?null:e};for(;t.getBitsLeft()>=8;){t.skipBits(1);let i=t.readBits(4),a=t.readBits(1),o=t.readBits(1);t.skipBits(1),a&&t.skipBits(8);let s;if(o){let e=n();if(e===null)return;s=e}else s=Math.floor(t.getBitsLeft()/8);r(t.pos%8==0),yield{type:i,data:e.subarray(t.pos/8,t.pos/8+s)},t.skipBits(s*8)}},Sn=e=>{for(let{type:t,data:n}of xn(e)){if(t!==1)continue;let e=new A(n),r=e.readBits(3);e.readBits(1);let i=e.readBits(1),a=0,o=0,s=0;if(i)a=e.readBits(5);else{let t=e.readBits(1),n=0;if(t){if(e.skipBits(32),e.skipBits(32),e.readBits(1)){let t=0;for(;t<32&&!e.readBits(1);)t++;t<32&&e.skipBits(t)}n=e.readBits(1),n&&(s=e.readBits(5),e.skipBits(32),e.skipBits(5),e.skipBits(5))}let r=e.readBits(1),i=e.readBits(5);for(let t=0;t<=i;t++){e.skipBits(12);let i=e.readBits(5);if(t===0&&(a=i),i>7){let n=e.readBits(1);t===0&&(o=n)}if(n&&e.readBits(1)){let t=s+1;e.skipBits(t),e.skipBits(t),e.skipBits(1)}r&&e.readBits(1)&&e.skipBits(4)}}let c=e.readBits(4),l=e.readBits(4),u=c+1;e.skipBits(u);let d=l+1;e.skipBits(d);let f=0;if(f=i?0:e.readBits(1),f&&(e.skipBits(4),e.skipBits(3)),e.skipBits(1),e.skipBits(1),e.skipBits(1),!i){e.skipBits(1),e.skipBits(1),e.skipBits(1),e.skipBits(1);let t=e.readBits(1);t&&(e.skipBits(1),e.skipBits(1));let n=e.readBits(1),r=0;r=n?2:e.readBits(1),r>0&&(e.readBits(1)||e.skipBits(1)),t&&e.skipBits(3)}e.skipBits(1),e.skipBits(1),e.skipBits(1);let p=e.readBits(1),m=8;r===2&&p?m=e.readBits(1)?12:10:r<=2&&(m=p?10:8);let h=0;r!==1&&(h=e.readBits(1));let g=2,_=2,v=2;e.readBits(1)&&(g=e.readBits(8),_=e.readBits(8),v=e.readBits(8));let y=0,b=1,x=1,S=0;return h?y=e.readBits(1):g===1&&_===13&&v===0?(y=1,b=0,x=0):(y=e.readBits(1),r===0?(b=1,x=1):r===1?(b=0,x=0):m===12?(b=e.readBits(1),x=b?e.readBits(1):0):(b=1,x=0),b&&x&&(S=e.readBits(2))),{profile:r,level:a,tier:o,bitDepth:m,monochrome:h,chromaSubsamplingX:b,chromaSubsamplingY:x,chromaSamplePosition:S,videoFullRangeFlag:y,colourPrimaries:g,transferCharacteristics:_,matrixCoefficients:v}}return null},Cn=e=>e.colourPrimaries!==2||e.transferCharacteristics!==2||e.matrixCoefficients!==2,wn=e=>{if(e.length<36)return null;let t=d(e);return t.getUint32(4)!==1768124518||t.getUint16(8)<28?null:{fullRange:!1,colourPrimaries:t.getUint8(22),transferCharacteristics:t.getUint8(23),matrixCoefficients:t.getUint8(24)}},Tn=e=>{let t=d(e),n=t.getUint8(9),r=t.getUint16(10,!0),i=t.getUint32(12,!0),a=t.getInt16(16,!0),o=t.getUint8(18),s=null;return o&&(s=e.subarray(19,21+n)),{outputChannelCount:n,preSkip:r,inputSampleRate:i,outputGain:a,channelMappingFamily:o,channelMappingTable:s}},En=[480,960,1920,2880,480,960,1920,2880,480,960,1920,2880,480,960,480,960,120,240,480,960,120,240,480,960,120,240,480,960,120,240,480,960],Dn=e=>{let t=e[0]>>3,n=e[0]&3,r;return r=n===0?1:n===1||n===2?2:e[1]&63,{durationInSamples:En[t]*r}},On=e=>{if(e.length<7)throw Error(`Setup header is too short.`);if(e[0]!==5)throw Error(`Wrong packet type in Setup header.`);if(String.fromCharCode(...e.slice(1,7))!==`vorbis`)throw Error(`Invalid packet signature in Setup header.`);let t=e.length,n=new Uint8Array(t);for(let r=0;r<t;r++)n[r]=e[t-1-r];let r=new A(n),i=0;for(;r.getBitsLeft()>97;)if(r.readBits(1)===1){i=r.pos;break}if(i===0)throw Error(`Invalid Setup header: framing bit not found.`);let a=0,o=!1,s=0;for(;r.getBitsLeft()>=97;){let e=r.pos,t=r.readBits(8),n=r.readBits(16),i=r.readBits(16);if(t>63||n!==0||i!==0){r.pos=e;break}if(r.skipBits(1),a++,a>64)break;r.clone().readBits(6)+1===a&&(o=!0,s=a)}if(!o)throw Error(`Invalid Setup header: mode header not found.`);if(s>63)throw Error(`Unsupported mode count: ${s}.`);let c=s;r.pos=0,r.skipBits(i);let l=Array(c).fill(0);for(let e=c-1;e>=0;e--)r.skipBits(40),l[e]=r.readBits(1);return{modeBlockflags:l}},kn=(e,t,n)=>{switch(e){case`avc`:for(let e of Ht(n,t)){let t=n[e.offset],r=Ut(t);if(r>=j.NON_IDR_SLICE&&r<=j.SLICE_DPC)return`delta`;if(r===j.IDR)return`key`;if(r===j.SEI&&!Ve()){let t=Wt(n.subarray(e.offset,e.offset+e.length)),r=1;do{let e=0;for(;;){let n=t[r++];if(n===void 0||(e+=n,n<255))break}let n=0;for(;;){let e=t[r++];if(e===void 0||(n+=e,e<255))break}if(e===6){let e=new A(t);e.pos=8*r;let n=s(e),i=e.readBits(1);if(n===0&&i===1)return`key`}r+=n}while(r<t.length-1)}}return`delta`;case`hevc`:for(let e of nn(n,t)){let t=rn(n[e.offset]);if(t<M.BLA_W_LP)return`delta`;if(t<=M.RSV_IRAP_VCL23)return`key`}return`delta`;case`vp8`:return n[0]&1?`delta`:`key`;case`vp9`:{let e=new A(n);if(e.readBits(2)!==2)return null;let t=e.readBits(1);return(e.readBits(1)<<1)+t===3&&e.skipBits(1),e.readBits(1)?null:e.readBits(1)===0?`key`:`delta`}case`av1`:{let e=!1;for(let{type:t,data:r}of xn(n))if(t===1){let t=new A(r);t.skipBits(4),e=!!t.readBits(1)}else if(t===3||t===6||t===7){if(e)return`key`;let t=new A(r);return t.readBits(1)?null:t.readBits(2)===0?`key`:`delta`}return null}case`prores`:return`key`;default:E(e),r(!1)}},An;(function(e){e[e.STREAMINFO=0]=`STREAMINFO`,e[e.VORBIS_COMMENT=4]=`VORBIS_COMMENT`,e[e.PICTURE=6]=`PICTURE`})(An||={});var jn=(e,t)=>{let n=d(e),r=0,i=n.getUint32(r,!0);r+=4;let a=f.decode(e.subarray(r,r+i));r+=i,i>0&&(t.raw??={},t.raw.vendor??=a);let o=n.getUint32(r,!0);r+=4;for(let i=0;i<o;i++){let i=n.getUint32(r,!0);r+=4;let a=f.decode(e.subarray(r,r+i));r+=i;let o=a.indexOf(`=`);if(o===-1)continue;let s=a.slice(0,o).toUpperCase(),c=a.slice(o+1);switch(t.raw??={},t.raw[s]??=c,s){case`TITLE`:t.title??=c;break;case`DESCRIPTION`:t.description??=c;break;case`ARTIST`:t.artist??=c;break;case`ALBUM`:t.album??=c;break;case`ALBUMARTIST`:t.albumArtist??=c;break;case`COMMENT`:t.comment??=c;break;case`LYRICS`:t.lyrics??=c;break;case`TRACKNUMBER`:{let e=c.split(`/`),n=Number.parseInt(e[0],10),r=e[1]&&Number.parseInt(e[1],10);Number.isInteger(n)&&n>0&&(t.trackNumber??=n),r&&Number.isInteger(r)&&r>0&&(t.tracksTotal??=r)}break;case`TRACKTOTAL`:{let e=Number.parseInt(c,10);Number.isInteger(e)&&e>0&&(t.tracksTotal??=e)}break;case`DISCNUMBER`:{let e=c.split(`/`),n=Number.parseInt(e[0],10),r=e[1]&&Number.parseInt(e[1],10);Number.isInteger(n)&&n>0&&(t.discNumber??=n),r&&Number.isInteger(r)&&r>0&&(t.discsTotal??=r)}break;case`DISCTOTAL`:{let e=Number.parseInt(c,10);Number.isInteger(e)&&e>0&&(t.discsTotal??=e)}break;case`DATE`:{let e=new Date(c);Number.isNaN(e.getTime())||(t.date??=e)}break;case`GENRE`:t.genre??=c;break;case`METADATA_BLOCK_PICTURE`:{let e=Je(c),n=d(e),r=n.getUint32(0,!1),i=n.getUint32(4,!1),a=String.fromCharCode(...e.subarray(8,8+i)),o=n.getUint32(8+i,!1),s=f.decode(e.subarray(12+i,12+i+o)),l=n.getUint32(i+o+28),u=e.subarray(i+o+32,i+o+32+l);t.images??=[],t.images.push({data:u,mimeType:a,kind:r===3?`coverFront`:r===4?`coverBack`:`unknown`,name:void 0,description:s||void 0})}}}},Mn=(e,t,n)=>{let r=[e],i=p.encode(`Mediabunny`),a=new Uint8Array(4+i.length),o=new DataView(a.buffer);o.setUint32(0,i.length,!0),a.set(i,4),r.push(a);let s=new Set,c=(e,t)=>{let n=`${e}=${t}`,i=p.encode(n);a=new Uint8Array(4+i.length),o=new DataView(a.buffer),o.setUint32(0,i.length,!0),a.set(i,4),r.push(a),s.add(e)};for(let{key:e,value:r}of Ke(t))switch(e){case`title`:c(`TITLE`,r);break;case`description`:c(`DESCRIPTION`,r);break;case`artist`:c(`ARTIST`,r);break;case`album`:c(`ALBUM`,r);break;case`albumArtist`:c(`ALBUMARTIST`,r);break;case`genre`:c(`GENRE`,r);break;case`date`:{let e=t.raw?.DATE??t.raw?.date;e&&typeof e==`string`?c(`DATE`,e):c(`DATE`,r.toISOString().slice(0,10))}break;case`comment`:c(`COMMENT`,r);break;case`lyrics`:c(`LYRICS`,r);break;case`trackNumber`:c(`TRACKNUMBER`,r.toString());break;case`tracksTotal`:c(`TRACKTOTAL`,r.toString());break;case`discNumber`:c(`DISCNUMBER`,r.toString());break;case`discsTotal`:c(`DISCTOTAL`,r.toString());break;case`images`:if(!n)break;for(let e of r){let t=e.kind===`coverFront`?3:e.kind===`coverBack`?4:0,n=new Uint8Array(e.mimeType.length);for(let t=0;t<e.mimeType.length;t++)n[t]=e.mimeType.charCodeAt(t);let r=p.encode(e.description??``),i=new Uint8Array(8+n.length+4+r.length+16+4+e.data.length),a=d(i);a.setUint32(0,t,!1),a.setUint32(4,n.length,!1),i.set(n,8),a.setUint32(8+n.length,r.length,!1),i.set(r,12+n.length),a.setUint32(28+n.length+r.length,e.data.length,!1),i.set(e.data,32+n.length+r.length),c(`METADATA_BLOCK_PICTURE`,Ye(i))}break;case`raw`:break;default:E(e)}if(t.raw)for(let e in t.raw){let n=t.raw[e]??t.raw[e.toLowerCase()];e===`vendor`||n==null||s.has(e)||typeof n==`string`&&c(e,n)}let l=new Uint8Array(4);d(l).setUint32(0,s.size,!0),r.splice(2,0,l);let u=r.reduce((e,t)=>e+t.length,0),f=new Uint8Array(u),m=0;for(let e of r)f.set(e,m),m+=e.length;return f},Nn=[2,1,2,3,3,4,4,5],Pn=e=>{if(e.length<7||e[0]!==11||e[1]!==119)return null;let t=new A(e);t.skipBits(16),t.skipBits(16);let n=t.readBits(2);if(n===3)return null;let r=t.readBits(6),i=t.readBits(5);if(i>8)return null;let a=t.readBits(3),o=t.readBits(3);return o&1&&o!==1&&t.skipBits(2),o&4&&t.skipBits(2),o===2&&t.skipBits(2),{fscod:n,bsid:i,bsmod:a,acmod:o,lfeon:t.readBits(1),bitRateCode:Math.floor(r/2)}},Fn=[128,138,192,128,140,192,160,174,240,160,176,240,192,208,288,192,210,288,224,242,336,224,244,336,256,278,384,256,280,384,320,348,480,320,350,480,384,416,576,384,418,576,448,486,672,448,488,672,512,556,768,512,558,768,640,696,960,640,698,960,768,834,1152,768,836,1152,896,974,1344,896,976,1344,1024,1114,1536,1024,1116,1536,1280,1392,1920,1280,1394,1920,1536,1670,2304,1536,1672,2304,1792,1950,2688,1792,1952,2688,2048,2228,3072,2048,2230,3072,2304,2506,3456,2304,2508,3456,2560,2786,3840,2560,2788,3840],In=1536,Ln=new Uint8Array([5,4,65,67,45,51]),Rn=new Uint8Array([5,4,69,65,67,51]),zn=[1,2,3,6],Bn=e=>{if(e.length<6||e[0]!==11||e[1]!==119)return null;let t=new A(e);t.skipBits(16);let n=t.readBits(2);if(t.skipBits(3),n!==0&&n!==2)return null;let r=t.readBits(11),i=t.readBits(2),a=0,o;i===3?(a=t.readBits(2),o=3):o=t.readBits(2);let s=t.readBits(3),c=t.readBits(1),l=t.readBits(5);if(l<11||l>16)return null;let u=zn[o],d;return d=i<3?Rt[i]/1e3:zt[a]/1e3,{dataRate:Math.round((r+1)*d/(u*16)),substreams:[{fscod:i,fscod2:a,bsid:l,bsmod:0,acmod:s,lfeon:c,numDepSub:0,chanLoc:0}]}},Vn=e=>{if(e.length<2)return null;let t=new A(e),n=t.readBits(13),r=t.readBits(3),i=[];for(let n=0;n<=r&&!(Math.ceil(t.pos/8)+3>e.length);n++){let e=t.readBits(2),n=t.readBits(5);t.skipBits(1),t.skipBits(1);let r=t.readBits(3),a=t.readBits(3),o=t.readBits(1);t.skipBits(3);let s=t.readBits(4),c=0;s>0?c=t.readBits(9):t.skipBits(1),i.push({fscod:e,fscod2:null,bsid:n,bsmod:r,acmod:a,lfeon:o,numDepSub:s,chanLoc:c})}return i.length===0?null:{dataRate:n,substreams:i}},Hn=e=>{let t=e.substreams[0];return r(t),t.fscod<3?Rt[t.fscod]:t.fscod2!==null&&t.fscod2<3?zt[t.fscod2]:null},Un=e=>{let t=e.substreams[0];r(t);let n=Nn[t.acmod]+t.lfeon;if(t.numDepSub>0){let e=[2,2,1,1,2,2,2,1,1];for(let r=0;r<9;r++)t.chanLoc&1<<8-r&&(n+=e[r])}return n},Wn=4096,Gn=8,Kn=[0,8e3,16e3,32e3,0,0,11025,22050,44100,0,0,12e3,24e3,48e3,96e3,192e3],qn=[32e3,56e3,64e3,96e3,112e3,128e3,192e3,224e3,256e3,32e4,384e3,448e3,512e3,576e3,64e4,768e3,96e4,1024e3,1152e3,128e4,1344e3,1408e3,1411200,1472e3,1536e3,192e4,2048e3,3072e3,384e4,0,0,0],Jn=[16,16,20,20,0,24,24,0],Yn=[1,2,2,2,2,3,3,4,4,5,6,6,6,7,8,8],Xn=[1,2,2,2,2,3,18,19,6,7,518,323,83,519,582,535],Zn=8,Qn=44646,$n=[32e3,44100,48e3,0],er=[8e3,16e3,32e3,64e3,128e3,22050,44100,88200,176400,352800,12e3,24e3,48e3,96e3,192e3,384e3],tr=[512,1024,2048,4096],nr=e=>{let t=ir(e),n=d(e),r=t?Math.ceil(t.frameSize/4)*4:0,i=null;for(;r+4<=e.length&&n.getUint32(r)===1683496997;){let t=ar(e.subarray(r));if(!t)break;i??=t,r+=t.frameSize}if(t)return{frameSize:i?r:t.frameSize,sampleRate:t.sampleRate,numberOfChannels:t.numberOfChannels,sampleCount:t.sampleCount,channelLayout:t.channelLayout,pcmResolution:t.pcmResolution,bitRate:t.bitRate,core:t,hasExtensions:i!==null};if(!i?.asset)return null;let{asset:a}=i;return{frameSize:r,sampleRate:a.sampleRate,numberOfChannels:a.numberOfChannels,sampleCount:a.sampleCount,channelLayout:a.channelLayout,pcmResolution:a.pcmResolution,bitRate:0,core:null,hasExtensions:!0}},rr=e=>{let t=nr(e);return t?.core?t.hasExtensions?`dtsh`:`dtsc`:null},ir=e=>{if(e.length<18||e[0]!==127||e[1]!==254||e[2]!==128||e[3]!==1)return null;let t=new A(e);if(t.skipBits(32),t.skipBits(1),t.readBits(5)!==31)return null;let n=t.readBits(1),r=t.readBits(7)+1;if(r%Gn!==0)return null;let i=t.readBits(14)+1;if(i<96)return null;let a=t.readBits(6);if(a>=Yn.length)return null;let o=Kn[t.readBits(4)];if(o===0)return null;let s=qn[t.readBits(5)];if(t.readBits(1)!==0)return null;t.skipBits(4),t.skipBits(5);let c=t.readBits(2);if(c===3)return null;t.skipBits(1),n&&t.skipBits(16),t.skipBits(7);let l=Jn[t.readBits(3)];if(l===0)return null;let u=c!==0;return{frameSize:i,sampleRate:o,numberOfChannels:Yn[a]+ +!!u,sampleCount:r*32,channelLayout:Xn[a]|(u?Zn:0),amode:a,lfePresent:u,bitRate:s,pcmResolution:l}},ar=e=>{if(e.length<10||e[0]!==100||e[1]!==88||e[2]!==32||e[3]!==37)return null;let t=new A(e);t.skipBits(32),t.skipBits(8);let n=t.readBits(2),r=t.readBits(1),i=8+4*r,a=16+4*r;t.skipBits(i);let o=t.readBits(a)+1,s={frameSize:o,asset:null};if(!t.readBits(1))return s;let c=$n[t.readBits(2)],l=512*(t.readBits(3)+1);t.readBits(1)&&t.skipBits(36);let u=t.readBits(3)+1,d=t.readBits(3)+1,f=[];for(let e=0;e<u;e++)f.push(t.readBits(n+1));for(let e of f)t.skipBits(8*De(e));if(t.readBits(1)){t.skipBits(2);let e=t.readBits(2)+1<<2,n=t.readBits(2)+1;t.skipBits(n*e)}for(let e=0;e<d;e++)t.skipBits(a);t.skipBits(9),t.skipBits(3),t.readBits(1)&&t.skipBits(4),t.readBits(1)&&t.skipBits(24),t.readBits(1)&&t.skipBits(8*(t.readBits(10)+1));let p=t.readBits(5)+1,m=er[t.readBits(4)],h=t.readBits(8)+1,g=0;if(t.readBits(1)&&(h>2&&t.skipBits(1),h>6&&t.skipBits(1),t.readBits(1))){let e=t.readBits(2)+1<<2;g=t.readBits(e)}return c===0||t.getBitsLeft()<0?s:{frameSize:o,asset:{sampleRate:m,numberOfChannels:h,sampleCount:Math.round(l*m/c),channelLayout:g,pcmResolution:p}}},or=e=>{if(e.length<20)return null;let t=d(e),n=t.getUint32(0);if(n===0)return null;let r=new A(e);r.seekToByte(13);let i=r.readBits(2);r.skipBits(5);let a=r.readBits(1),o=r.readBits(6);r.skipBits(14),r.skipBits(1),r.skipBits(3);let s=r.readBits(16),c=null;return s===0?o<Yn.length&&(c=Yn[o]+a):c=cr(s),{sampleRate:n,maxBitrate:t.getUint32(4),avgBitrate:t.getUint32(8),pcmSampleDepth:e[12],sampleCount:tr[i],channelLayout:s,numberOfChannels:c}},sr=e=>{let t=new Uint8Array(20),n=d(t);n.setUint32(0,e.sampleRate),n.setUint32(4,e.bitRate),n.setUint32(8,e.bitRate),t[12]=e.pcmResolution;let r=e.core&&!e.hasExtensions?1:0,i=new A(t);return i.seekToByte(13),i.writeBits(2,Math.max(tr.indexOf(e.sampleCount),0)),i.writeBits(5,r),i.writeBits(1,+!!e.core?.lfePresent),i.writeBits(6,e.core?.amode??0),i.writeBits(14,e.core?e.core.frameSize-1:0),i.writeBits(1,0),i.writeBits(3,0),i.writeBits(16,e.channelLayout),i.writeBits(1,0),i.writeBits(1,0),i.writeBits(1,0),i.writeBits(5,0),t},cr=e=>De(e)+De(e&Qn),N=[`avc`,`hevc`,`vp9`,`av1`,`vp8`,`prores`],P=[`pcm-s16`,`pcm-s16be`,`pcm-s24`,`pcm-s24be`,`pcm-s32`,`pcm-s32be`,`pcm-f32`,`pcm-f32be`,`pcm-f64`,`pcm-f64be`,`pcm-u8`,`pcm-s8`,`ulaw`,`alaw`],lr=[`aac`,`opus`,`mp3`,`vorbis`,`flac`,`ac3`,`eac3`,`dts`],F=[...lr,...P],ur=[`webvtt`],dr=[{maxMacroblocks:99,maxBitrate:64e3,maxDpbMbs:396,level:10},{maxMacroblocks:396,maxBitrate:192e3,maxDpbMbs:900,level:11},{maxMacroblocks:396,maxBitrate:384e3,maxDpbMbs:2376,level:12},{maxMacroblocks:396,maxBitrate:768e3,maxDpbMbs:2376,level:13},{maxMacroblocks:396,maxBitrate:2e6,maxDpbMbs:2376,level:20},{maxMacroblocks:792,maxBitrate:4e6,maxDpbMbs:4752,level:21},{maxMacroblocks:1620,maxBitrate:4e6,maxDpbMbs:8100,level:22},{maxMacroblocks:1620,maxBitrate:1e7,maxDpbMbs:8100,level:30},{maxMacroblocks:3600,maxBitrate:14e6,maxDpbMbs:18e3,level:31},{maxMacroblocks:5120,maxBitrate:2e7,maxDpbMbs:20480,level:32},{maxMacroblocks:8192,maxBitrate:2e7,maxDpbMbs:32768,level:40},{maxMacroblocks:8192,maxBitrate:5e7,maxDpbMbs:32768,level:41},{maxMacroblocks:8704,maxBitrate:5e7,maxDpbMbs:34816,level:42},{maxMacroblocks:22080,maxBitrate:135e6,maxDpbMbs:110400,level:50},{maxMacroblocks:36864,maxBitrate:24e7,maxDpbMbs:184320,level:51},{maxMacroblocks:36864,maxBitrate:24e7,maxDpbMbs:184320,level:52},{maxMacroblocks:139264,maxBitrate:24e7,maxDpbMbs:696320,level:60},{maxMacroblocks:139264,maxBitrate:48e7,maxDpbMbs:696320,level:61},{maxMacroblocks:139264,maxBitrate:8e8,maxDpbMbs:696320,level:62}],fr=[{maxPictureSize:36864,maxBitrate:128e3,tier:`L`,level:30},{maxPictureSize:122880,maxBitrate:15e5,tier:`L`,level:60},{maxPictureSize:245760,maxBitrate:3e6,tier:`L`,level:63},{maxPictureSize:552960,maxBitrate:6e6,tier:`L`,level:90},{maxPictureSize:983040,maxBitrate:1e7,tier:`L`,level:93},{maxPictureSize:2228224,maxBitrate:12e6,tier:`L`,level:120},{maxPictureSize:2228224,maxBitrate:3e7,tier:`H`,level:120},{maxPictureSize:2228224,maxBitrate:2e7,tier:`L`,level:123},{maxPictureSize:2228224,maxBitrate:5e7,tier:`H`,level:123},{maxPictureSize:8912896,maxBitrate:25e6,tier:`L`,level:150},{maxPictureSize:8912896,maxBitrate:1e8,tier:`H`,level:150},{maxPictureSize:8912896,maxBitrate:4e7,tier:`L`,level:153},{maxPictureSize:8912896,maxBitrate:16e7,tier:`H`,level:153},{maxPictureSize:8912896,maxBitrate:6e7,tier:`L`,level:156},{maxPictureSize:8912896,maxBitrate:24e7,tier:`H`,level:156},{maxPictureSize:35651584,maxBitrate:6e7,tier:`L`,level:180},{maxPictureSize:35651584,maxBitrate:24e7,tier:`H`,level:180},{maxPictureSize:35651584,maxBitrate:12e7,tier:`L`,level:183},{maxPictureSize:35651584,maxBitrate:48e7,tier:`H`,level:183},{maxPictureSize:35651584,maxBitrate:24e7,tier:`L`,level:186},{maxPictureSize:35651584,maxBitrate:8e8,tier:`H`,level:186}],pr=[{maxPictureSize:36864,maxBitrate:2e5,level:10},{maxPictureSize:73728,maxBitrate:8e5,level:11},{maxPictureSize:122880,maxBitrate:18e5,level:20},{maxPictureSize:245760,maxBitrate:36e5,level:21},{maxPictureSize:552960,maxBitrate:72e5,level:30},{maxPictureSize:983040,maxBitrate:12e6,level:31},{maxPictureSize:2228224,maxBitrate:18e6,level:40},{maxPictureSize:2228224,maxBitrate:3e7,level:41},{maxPictureSize:8912896,maxBitrate:6e7,level:50},{maxPictureSize:8912896,maxBitrate:12e7,level:51},{maxPictureSize:8912896,maxBitrate:18e7,level:52},{maxPictureSize:35651584,maxBitrate:18e7,level:60},{maxPictureSize:35651584,maxBitrate:24e7,level:61},{maxPictureSize:35651584,maxBitrate:48e7,level:62}],mr=[{maxPictureSize:147456,maxBitrate:15e5,tier:`M`,level:0},{maxPictureSize:278784,maxBitrate:3e6,tier:`M`,level:1},{maxPictureSize:665856,maxBitrate:6e6,tier:`M`,level:4},{maxPictureSize:1065024,maxBitrate:1e7,tier:`M`,level:5},{maxPictureSize:2359296,maxBitrate:12e6,tier:`M`,level:8},{maxPictureSize:2359296,maxBitrate:3e7,tier:`H`,level:8},{maxPictureSize:2359296,maxBitrate:2e7,tier:`M`,level:9},{maxPictureSize:2359296,maxBitrate:5e7,tier:`H`,level:9},{maxPictureSize:8912896,maxBitrate:3e7,tier:`M`,level:12},{maxPictureSize:8912896,maxBitrate:1e8,tier:`H`,level:12},{maxPictureSize:8912896,maxBitrate:4e7,tier:`M`,level:13},{maxPictureSize:8912896,maxBitrate:16e7,tier:`H`,level:13},{maxPictureSize:8912896,maxBitrate:6e7,tier:`M`,level:14},{maxPictureSize:8912896,maxBitrate:24e7,tier:`H`,level:14},{maxPictureSize:35651584,maxBitrate:6e7,tier:`M`,level:15},{maxPictureSize:35651584,maxBitrate:24e7,tier:`H`,level:15},{maxPictureSize:35651584,maxBitrate:6e7,tier:`M`,level:16},{maxPictureSize:35651584,maxBitrate:24e7,tier:`H`,level:16},{maxPictureSize:35651584,maxBitrate:1e8,tier:`M`,level:17},{maxPictureSize:35651584,maxBitrate:48e7,tier:`H`,level:17},{maxPictureSize:35651584,maxBitrate:16e7,tier:`M`,level:18},{maxPictureSize:35651584,maxBitrate:8e8,tier:`H`,level:18},{maxPictureSize:35651584,maxBitrate:16e7,tier:`M`,level:19},{maxPictureSize:35651584,maxBitrate:8e8,tier:`H`,level:19}],hr=`.01.01.01.01.00`,gr=`.0.110.01.01.01.0`,_r=[`ap4x`,`ap4h`,`apch`,`apcn`,`apcs`,`apco`],vr=[`dtsc`,`dtsh`,`dtsl`,`dtse`],yr=[{fourCc:`apco`,bitrate:45e6,alpha:!1},{fourCc:`apcs`,bitrate:102e6,alpha:!1},{fourCc:`apcn`,bitrate:147e6,alpha:!1},{fourCc:`apch`,bitrate:22e7,alpha:!1},{fourCc:`ap4h`,bitrate:33e7,alpha:!0},{fourCc:`ap4x`,bitrate:5e8,alpha:!0}],br=(e,t,n,r,i)=>{if(e===`avc`){let e=Math.ceil(t/16)*Math.ceil(n/16),i=dr.find(t=>e<=t.maxMacroblocks&&r<=t.maxBitrate)??a(dr),o=i?i.level:0;return`avc1.${`64`.padStart(2,`0`)}00${o.toString(16).padStart(2,`0`)}`}if(e===`hevc`){let e=t*n,i=fr.find(t=>e<=t.maxPictureSize&&r<=t.maxBitrate)??a(fr);return`hev1.1.6.${i.tier}${i.level}.B0`}if(e===`vp8`)return`vp8`;if(e===`vp9`){let e=t*n;return`vp09.00.${(pr.find(t=>e<=t.maxPictureSize&&r<=t.maxBitrate)??a(pr)).level.toString().padStart(2,`0`)}.08`}if(e===`av1`){let e=t*n,i=mr.find(t=>e<=t.maxPictureSize&&r<=t.maxBitrate)??a(mr);return`av01.0.${i.level.toString().padStart(2,`0`)}${i.tier}.08`}if(e===`prores`){let e=(t*n/2073600)**.95,a=yr.filter(e=>e.alpha===i),o=a[0].fourCc,s=1/0;for(let{fourCc:t,bitrate:n}of a){let i=Math.abs(n*e-r);i<s&&(s=i,o=t)}return o}throw E(e),TypeError(`Unhandled codec '${String(e)}'.`)},xr=e=>{let t=e.split(`.`);return[1,1,Number(t[1]),2,1,Number(t[2]),3,1,Number(t[3]),4,1,t[4]?Number(t[4]):1]},Sr=e=>{let t=e.split(`.`),n=Number(t[1]),r=t[2],i=Number(r.slice(0,-1)),a=(n<<5)+i,o=+(r.slice(-1)===`H`),s=Number(t[3]),c=s===8?0:1,l=+(s===12),u=t[4]?Number(t[4]):0,d=t[5]?Number(t[5][0]):1,f=t[5]?Number(t[5][1]):1,p=t[5]?Number(t[5][2]):0;return[129,a,(o<<7)+(c<<6)+(l<<5)+(u<<4)+(d<<3)+(f<<2)+p,0]},Cr=e=>{let{codec:t,codecDescription:n,colorSpace:i,avcCodecInfo:o,hevcCodecInfo:s,vp9CodecInfo:c,av1CodecInfo:l,proresFormat:u}=e;if(t===`avc`){if(r(e.avcType!==null),o){let t=new Uint8Array([o.avcProfileIndication,o.profileCompatibility,o.avcLevelIndication]);return`avc${e.avcType}.${ie(t)}`}if(!n||n.byteLength<4)throw TypeError(`AVC decoder description is not provided or is not at least 4 bytes long.`);return`avc${e.avcType}.${ie(n.subarray(1,4))}`}if(t===`hevc`){let e,t,r,i,a,o;if(s)e=s.generalProfileSpace,t=s.generalProfileIdc,r=oe(s.generalProfileCompatibilityFlags),i=s.generalTierFlag,a=s.generalLevelIdc,o=[...s.generalConstraintIndicatorFlags];else{if(!n||n.byteLength<23)throw TypeError(`HEVC decoder description is not provided or is not at least 23 bytes long.`);let s=d(n),c=s.getUint8(1);e=c>>6&3,t=c&31,r=oe(s.getUint32(2)),i=c>>5&1,a=s.getUint8(12),o=[];for(let e=0;e<6;e++)o.push(s.getUint8(6+e))}let c=`hev1.`;for(c+=[``,`A`,`B`,`C`][e]+t,c+=`.`,c+=r.toString(16).toUpperCase(),c+=`.`,c+=i===0?`L`:`H`,c+=a;o.length>0&&o[o.length-1]===0;)o.pop();return o.length>0&&(c+=`.`,c+=o.map(e=>e.toString(16).toUpperCase()).join(`.`)),c}if(t===`vp8`)return`vp8`;if(t===`vp9`){if(!c){let t=e.width*e.height,n=a(pr).level;for(let e of pr)if(t<=e.maxPictureSize){n=e.level;break}return`vp09.00.${n.toString().padStart(2,`0`)}.08`}let t=c.profile.toString().padStart(2,`0`),n=c.level.toString().padStart(2,`0`),r=c.bitDepth.toString().padStart(2,`0`),i=c.chromaSubsampling.toString().padStart(2,`0`),o=c.colourPrimaries.toString().padStart(2,`0`),s=c.transferCharacteristics.toString().padStart(2,`0`),l=c.matrixCoefficients.toString().padStart(2,`0`),u=c.videoFullRangeFlag.toString().padStart(2,`0`),d=`vp09.${t}.${n}.${r}.${i}`;return d+=`.${o}.${s}.${l}.${u}`,d.endsWith(hr)&&(d=d.slice(0,-15)),d}if(t===`av1`){if(!l){let t=e.width*e.height,n=a(pr).level;for(let e of pr)if(t<=e.maxPictureSize){n=e.level;break}return`av01.0.${n.toString().padStart(2,`0`)}M.08`}let t=l.profile,n=l.level.toString().padStart(2,`0`),r=l.tier?`H`:`M`,o=l.bitDepth.toString().padStart(2,`0`),s=l.monochrome?`1`:`0`,c=100*l.chromaSubsamplingX+10*l.chromaSubsamplingY+1*(l.chromaSubsamplingX&&l.chromaSubsamplingY?l.chromaSamplePosition:0),u=i?.primaries?g[i.primaries]:1,d=i?.transfer?v[i.transfer]:1,f=i?.matrix?b[i.matrix]:1,p=+!!i?.fullRange,m=`av01.${t}.${n}${r}.${o}`;return m+=`.${s}.${c.toString().padStart(3,`0`)}`,m+=`.${u.toString().padStart(2,`0`)}`,m+=`.${d.toString().padStart(2,`0`)}`,m+=`.${f.toString().padStart(2,`0`)}`,m+=`.${p}`,m.endsWith(gr)&&(m=m.slice(0,-17)),m}if(t===`prores`)return u??`apch`;throw t!==null&&E(t),TypeError(`Unhandled codec '${t}'.`)},wr=e=>{switch(e.codec){case`avc`:{let t=e.avcCodecInfo?.sequenceParameterSets[0];if(!t&&e.codecDescription&&(t=Zt(e.codecDescription)?.sequenceParameterSets[0]),t){let e=$t(t);if(e)return{primaries:_[e.colourPrimaries],transfer:y[e.transferCharacteristics],matrix:x[e.matrixCoefficients],fullRange:!!e.fullRangeFlag}}}break;case`hevc`:{let t=e.hevcCodecInfo?.arrays.find(e=>e.nalUnitType===M.SPS_NUT)?.nalUnits[0];if(!t&&e.codecDescription&&(t=hn(e.codecDescription)?.arrays.find(e=>e.nalUnitType===M.SPS_NUT)?.nalUnits[0]),t){let e=an(t);if(e)return{primaries:_[e.colourPrimaries],transfer:y[e.transferCharacteristics],matrix:x[e.matrixCoefficients],fullRange:!!e.fullRangeFlag}}}break;case`vp8`:break;case`vp9`:if(e.vp9CodecInfo)return{primaries:_[e.vp9CodecInfo.colourPrimaries],transfer:y[e.vp9CodecInfo.transferCharacteristics],matrix:x[e.vp9CodecInfo.matrixCoefficients],fullRange:!!e.vp9CodecInfo.videoFullRangeFlag};break;case`av1`:if(e.av1CodecInfo)return{primaries:_[e.av1CodecInfo.colourPrimaries],transfer:y[e.av1CodecInfo.transferCharacteristics],matrix:x[e.av1CodecInfo.matrixCoefficients],fullRange:!!e.av1CodecInfo.videoFullRangeFlag};break;case`prores`:if(e.proresCodecInfo)return{primaries:_[e.proresCodecInfo.colourPrimaries],transfer:y[e.proresCodecInfo.transferCharacteristics],matrix:x[e.proresCodecInfo.matrixCoefficients],fullRange:e.proresCodecInfo.fullRange}}return{primaries:void 0,transfer:void 0,matrix:void 0,fullRange:void 0}},Tr=(e,t,n)=>{if(e===`aac`)return t>=2&&n<=24e3?`mp4a.40.29`:n<=24e3?`mp4a.40.5`:`mp4a.40.2`;if(e===`mp3`)return`mp3`;if(e===`opus`)return`opus`;if(e===`vorbis`)return`vorbis`;if(e===`flac`)return`flac`;if(e===`ac3`)return`ac-3`;if(e===`eac3`)return`ec-3`;if(e===`dts`)return`dtsc`;if(P.includes(e))return e;throw TypeError(`Unhandled codec '${e}'.`)},Er=e=>{let{codec:t,codecDescription:n,aacCodecInfo:r,dtsFormat:i}=e;if(t===`aac`){if(!r)throw TypeError(`AAC codec info must be provided.`);if(r.isMpeg2)return`mp4a.67`;{let e;return e=r.objectType===null?kt(n).objectType:r.objectType,`mp4a.40.${e}`}}if(t===`mp3`)return`mp3`;if(t===`opus`)return`opus`;if(t===`vorbis`)return`vorbis`;if(t===`flac`)return`flac`;if(t===`ac3`)return`ac-3`;if(t===`eac3`)return`ec-3`;if(t===`dts`)return i??`dtsc`;if(t&&P.includes(t))return t;throw TypeError(`Unhandled codec '${t}'.`)},Dr=e=>{switch(e.codec){case`flac`:{let t=Je(`ZkxhQ4AAACIQABAAAAYtACWtCsRC8AANRBhVFucAcYu5ASE2m1Dxv8tw`);return e.sampleRate>=1<<20||e.numberOfChannels>8?!1:(t[18]=e.sampleRate>>>12,t[19]=e.sampleRate>>>4,t[20]=(e.sampleRate&15)<<4|e.numberOfChannels-1<<1,t)}case`vorbis`:{let t=Je(`Ah7/AgF2b3JiaXMAAAAAAoC7AAAAAAAAgLUBAAAAAAC4AQN2b3JiaXMNAAAATGF2ZjU4Ljc2LjEwMAgAAAAMAAAAbGFuZ3VhZ2U9dW5kGQAAAGhhbmRsZXJfbmFtZT1Tb3VuZEhhbmRsZXIWAAAAdmVuZG9yX2lkPVswXVswXVswXVswXSAAAABlbmNvZGVyPUxhdmM1OC4xMzQuMTAwIGxpYnZvcmJpcxAAAABtYWpvcl9icmFuZD1pc29tEQAAAG1pbm9yX3ZlcnNpb249NTEyIgAAAGNvbXBhdGlibGVfYnJhbmRzPWlzb21pc28yYXZjMW1wNDEmAAAAREVTQ1JJUFRJT049TWFkZSB3aXRoIFJlbW90aW9uIDQuMC4yNzgBBXZvcmJpcyVCQ1YBAEAAACRzGCpGpXMWhBAaQlAZ4xxCzmvsGUJMEYIcMkxbyyVzkCGkoEKIWyiB0JBVAABAAACHQXgUhIpBCCGEJT1YkoMnPQghhIg5eBSEaUEIIYQQQgghhBBCCCGERTlokoMnQQgdhOMwOAyD5Tj4HIRFOVgQgydB6CCED0K4moOsOQghhCQ1SFCDBjnoHITCLCiKgsQwuBaEBDUojILkMMjUgwtCiJqDSTX4GoRnQXgWhGlBCCGEJEFIkIMGQcgYhEZBWJKDBjm4FITLQagahCo5CB+EIDRkFQCQAACgoiiKoigKEBqyCgDIAAAQQFEUx3EcyZEcybEcCwgNWQUAAAEACAAAoEiKpEiO5EiSJFmSJVmSJVmS5omqLMuyLMuyLMsyEBqyCgBIAABQUQxFcRQHCA1ZBQBkAAAIoDiKpViKpWiK54iOCISGrAIAgAAABAAAEDRDUzxHlETPVFXXtm3btm3btm3btm3btm1blmUZCA1ZBQBAAAAQ0mlmqQaIMAMZBkJDVgEACAAAgBGKMMSA0JBVAABAAACAGEoOogmtOd+c46BZDppKsTkdnEi1eZKbirk555xzzsnmnDHOOeecopxZDJoJrTnnnMSgWQqaCa0555wnsXnQmiqtOeeccc7pYJwRxjnnnCateZCajbU555wFrWmOmkuxOeecSLl5UptLtTnnnHPOOeecc84555zqxekcnBPOOeecqL25lpvQxTnnnE/G6d6cEM4555xzzjnnnHPOOeecIDRkFQAABABAEIaNYdwpCNLnaCBGEWIaMulB9+gwCRqDnELq0ehopJQ6CCWVcVJKJwgNWQUAAAIAQAghhRRSSCGFFFJIIYUUYoghhhhyyimnoIJKKqmooowyyyyzzDLLLLPMOuyssw47DDHEEEMrrcRSU2011lhr7jnnmoO0VlprrbVSSimllFIKQkNWAQAgAAAEQgYZZJBRSCGFFGKIKaeccgoqqIDQkFUAACAAgAAAAABP8hzRER3RER3RER3RER3R8RzPESVREiVREi3TMjXTU0VVdWXXlnVZt31b2IVd933d933d+HVhWJZlWZZlWZZlWZZlWZZlWZYgNGQVAAACAAAghBBCSCGFFFJIKcYYc8w56CSUEAgNWQUAAAIACAAAAHAUR3EcyZEcSbIkS9IkzdIsT/M0TxM9URRF0zRV0RVdUTdtUTZl0zVdUzZdVVZtV5ZtW7Z125dl2/d93/d93/d93/d93/d9XQdCQ1YBABIAADqSIymSIimS4ziOJElAaMgqAEAGAEAAAIriKI7jOJIkSZIlaZJneZaomZrpmZ4qqkBoyCoAABAAQAAAAAAAAIqmeIqpeIqoeI7oiJJomZaoqZoryqbsuq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq4LhIasAgAkAAB0JEdyJEdSJEVSJEdygNCQVQCADACAAAAcwzEkRXIsy9I0T/M0TxM90RM901NFV3SB0JBVAAAgAIAAAAAAAAAMybAUy9EcTRIl1VItVVMt1VJF1VNVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVN0zRNEwgNWQkAkAEAkBBTLS3GmgmLJGLSaqugYwxS7KWxSCpntbfKMYUYtV4ah5RREHupJGOKQcwtpNApJq3WVEKFFKSYYyoVUg5SIDRkhQAQmgHgcBxAsixAsiwAAAAAAAAAkDQN0DwPsDQPAAAAAAAAACRNAyxPAzTPAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABA0jRA8zxA8zwAAAAAAAAA0DwP8DwR8EQRAAAAAAAAACzPAzTRAzxRBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABA0jRA8zxA8zwAAAAAAAAAsDwP8EQR0DwRAAAAAAAAACzPAzxRBDzRAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAEOAAABBgIRQasiIAiBMAcEgSJAmSBM0DSJYFTYOmwTQBkmVB06BpME0AAAAAAAAAAAAAJE2DpkHTIIoASdOgadA0iCIAAAAAAAAAAAAAkqZB06BpEEWApGnQNGgaRBEAAAAAAAAAAAAAzzQhihBFmCbAM02IIkQRpgkAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAGHAAAAgwoQwUGrIiAIgTAHA4imUBAIDjOJYFAACO41gWAABYliWKAABgWZooAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAYcAAACDChDBQashIAiAIAcCiKZQHHsSzgOJYFJMmyAJYF0DyApgFEEQAIAAAocAAACLBBU2JxgEJDVgIAUQAABsWxLE0TRZKkaZoniiRJ0zxPFGma53meacLzPM80IYqiaJoQRVE0TZimaaoqME1VFQAAUOAAABBgg6bE4gCFhqwEAEICAByKYlma5nmeJ4qmqZokSdM8TxRF0TRNU1VJkqZ5niiKommapqqyLE3zPFEURdNUVVWFpnmeKIqiaaqq6sLzPE8URdE0VdV14XmeJ4qiaJqq6roQRVE0TdNUTVV1XSCKpmmaqqqqrgtETxRNU1Vd13WB54miaaqqq7ouEE3TVFVVdV1ZBpimaaqq68oyQFVV1XVdV5YBqqqqruu6sgxQVdd1XVmWZQCu67qyLMsCAAAOHAAAAoygk4wqi7DRhAsPQKEhKwKAKAAAwBimFFPKMCYhpBAaxiSEFEImJaXSUqogpFJSKRWEVEoqJaOUUmopVRBSKamUCkIqJZVSAADYgQMA2IGFUGjISgAgDwCAMEYpxhhzTiKkFGPOOScRUoox55yTSjHmnHPOSSkZc8w556SUzjnnnHNSSuacc845KaVzzjnnnJRSSuecc05KKSWEzkEnpZTSOeecEwAAVOAAABBgo8jmBCNBhYasBABSAQAMjmNZmuZ5omialiRpmud5niiapiZJmuZ5nieKqsnzPE8URdE0VZXneZ4oiqJpqirXFUXTNE1VVV2yLIqmaZqq6rowTdNUVdd1XZimaaqq67oubFtVVdV1ZRm2raqq6rqyDFzXdWXZloEsu67s2rIAAPAEBwCgAhtWRzgpGgssNGQlAJABAEAYg5BCCCFlEEIKIYSUUggJAAAYcAAACDChDBQashIASAUAAIyx1lprrbXWQGettdZaa62AzFprrbXWWmuttdZaa6211lJrrbXWWmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmstpZRSSimllFJKKaWUUkoppZRSSgUA+lU4APg/2LA6wknRWGChISsBgHAAAMAYpRhzDEIppVQIMeacdFRai7FCiDHnJKTUWmzFc85BKCGV1mIsnnMOQikpxVZjUSmEUlJKLbZYi0qho5JSSq3VWIwxqaTWWoutxmKMSSm01FqLMRYjbE2ptdhqq7EYY2sqLbQYY4zFCF9kbC2m2moNxggjWywt1VprMMYY3VuLpbaaizE++NpSLDHWXAAAd4MDAESCjTOsJJ0VjgYXGrISAAgJACAQUooxxhhzzjnnpFKMOeaccw5CCKFUijHGnHMOQgghlIwx5pxzEEIIIYRSSsaccxBCCCGEkFLqnHMQQgghhBBKKZ1zDkIIIYQQQimlgxBCCCGEEEoopaQUQgghhBBCCKmklEIIIYRSQighlZRSCCGEEEIpJaSUUgohhFJCCKGElFJKKYUQQgillJJSSimlEkoJJYQSUikppRRKCCGUUkpKKaVUSgmhhBJKKSWllFJKIYQQSikFAAAcOAAABBhBJxlVFmGjCRcegEJDVgIAZAAAkKKUUiktRYIipRikGEtGFXNQWoqocgxSzalSziDmJJaIMYSUk1Qy5hRCDELqHHVMKQYtlRhCxhik2HJLoXMOAAAAQQCAgJAAAAMEBTMAwOAA4XMQdAIERxsAgCBEZohEw0JweFAJEBFTAUBigkIuAFRYXKRdXECXAS7o4q4DIQQhCEEsDqCABByccMMTb3jCDU7QKSp1IAAAAAAADADwAACQXAAREdHMYWRobHB0eHyAhIiMkAgAAAAAABcAfAAAJCVAREQ0cxgZGhscHR4fICEiIyQBAIAAAgAAAAAggAAEBAQAAAAAAAIAAAAEBA==`),n=d(t);return n.setUint8(15,e.numberOfChannels),n.setUint32(16,e.sampleRate,!0),t}default:return}},Or=48e3,kr=/^pcm-([usf])(\d+)(be)?$/,Ar=e=>{if(r(P.includes(e)),e===`ulaw`)return{dataType:`ulaw`,sampleSize:1,littleEndian:!0,silentValue:255};if(e===`alaw`)return{dataType:`alaw`,sampleSize:1,littleEndian:!0,silentValue:213};let t=kr.exec(e);r(t);let n;n=t[1]===`u`?`unsigned`:t[1]===`s`?`signed`:`float`;let i=Number(t[2])/8,a=t[3]!==`be`;return{dataType:n,sampleSize:i,littleEndian:a,silentValue:e===`pcm-u8`?128:0}},jr=e=>e.startsWith(`avc1`)||e.startsWith(`avc3`)?`avc`:e.startsWith(`hev1`)||e.startsWith(`hvc1`)?`hevc`:e===`vp8`?`vp8`:e.startsWith(`vp09`)?`vp9`:e.startsWith(`av01`)?`av1`:_r.includes(e)?`prores`:e===`mp3`||e===`mp4a.69`||e===`mp4a.6B`||e===`mp4a.6b`||e===`mp4a.40.34`?`mp3`:e.startsWith(`mp4a.40.`)||e===`mp4a.67`?`aac`:e===`opus`?`opus`:e===`vorbis`?`vorbis`:e===`flac`?`flac`:e===`ac-3`||e===`ac3`?`ac3`:e===`ec-3`||e===`eac3`?`eac3`:vr.includes(e)?`dts`:e===`ulaw`?`ulaw`:e===`alaw`?`alaw`:kr.test(e)?e:e===`webvtt`?`webvtt`:null,Mr=e=>e===`avc`?{avc:{format:`avc`}}:e===`hevc`?{hevc:{format:`hevc`}}:{},Nr=e=>e===`aac`?{aac:{format:`aac`}}:e===`opus`?{opus:{format:`opus`}}:{},Pr=[`avc1`,`avc3`,`hev1`,`hvc1`,`vp8`,`vp09`,`av01`,..._r],Fr=/^(avc1|avc3)\.[0-9a-fA-F]{6}$/,Ir=/^(hev1|hvc1)\.(?:[ABC]?\d+)\.[0-9a-fA-F]{1,8}\.[LH]\d+(?:\.[0-9a-fA-F]{1,2}){0,6}$/,Lr=/^vp09(?:\.\d{2}){3}(?:(?:\.\d{2}){5})?$/,Rr=/^av01\.\d\.\d{2}[MH]\.\d{2}(?:\.\d\.\d{3}\.\d{2}\.\d{2}\.\d{2}\.\d)?$/,zr=(e,t)=>{if(!e)throw TypeError(`Video chunk metadata must be provided.`);if(typeof e!=`object`)throw TypeError(`Video chunk metadata must be an object.`);if(!e.decoderConfig)throw TypeError(`Video chunk metadata must include a decoder configuration.`);if(typeof e.decoderConfig!=`object`)throw TypeError(`Video chunk metadata decoder configuration must be an object.`);if(typeof e.decoderConfig.codec!=`string`)throw TypeError(`Video chunk metadata decoder configuration must specify a codec string.`);if(!Pr.some(t=>e.decoderConfig.codec.startsWith(t)))throw TypeError(`Video chunk metadata decoder configuration codec string must be a valid video codec string as specified in the Mediabunny Codec Registry.`);if(!Number.isInteger(e.decoderConfig.codedWidth)||e.decoderConfig.codedWidth<=0)throw TypeError(`Video chunk metadata decoder configuration must specify a valid codedWidth (positive integer).`);if(!Number.isInteger(e.decoderConfig.codedHeight)||e.decoderConfig.codedHeight<=0)throw TypeError(`Video chunk metadata decoder configuration must specify a valid codedHeight (positive integer).`);if(e.decoderConfig.displayAspectWidth!==void 0&&(!Number.isInteger(e.decoderConfig.displayAspectWidth)||e.decoderConfig.displayAspectWidth<=0))throw TypeError(`Video chunk metadata decoder configuration displayAspectWidth, when defined, must be a positive integer.`);if(e.decoderConfig.displayAspectHeight!==void 0&&(!Number.isInteger(e.decoderConfig.displayAspectHeight)||e.decoderConfig.displayAspectHeight<=0))throw TypeError(`Video chunk metadata decoder configuration displayAspectHeight, when defined, must be a positive integer.`);if(e.decoderConfig.displayAspectWidth!==void 0!=(e.decoderConfig.displayAspectHeight!==void 0))throw TypeError(`Video chunk metadata decoder configuration must specify both displayAspectWidth and displayAspectHeight, or neither.`);if(e.decoderConfig.description!==void 0&&!te(e.decoderConfig.description))throw TypeError(`Video chunk metadata decoder configuration description, when defined, must be an ArrayBuffer or an ArrayBuffer view.`);if(e.decoderConfig.colorSpace!==void 0){let{colorSpace:t}=e.decoderConfig;if(typeof t!=`object`)throw TypeError(`Video chunk metadata decoder configuration colorSpace, when provided, must be an object.`);let n=Object.keys(g);if(t.primaries!=null&&!n.includes(t.primaries))throw TypeError(`Video chunk metadata decoder configuration colorSpace primaries, when defined, must be one of ${n.join(`, `)}.`);let r=Object.keys(v);if(t.transfer!=null&&!r.includes(t.transfer))throw TypeError(`Video chunk metadata decoder configuration colorSpace transfer, when defined, must be one of ${r.join(`, `)}.`);let i=Object.keys(b);if(t.matrix!=null&&!i.includes(t.matrix))throw TypeError(`Video chunk metadata decoder configuration colorSpace matrix, when defined, must be one of ${i.join(`, `)}.`);if(t.fullRange!=null&&typeof t.fullRange!=`boolean`)throw TypeError(`Video chunk metadata decoder configuration colorSpace fullRange, when defined, must be a boolean.`)}if(e.decoderConfig.codec.startsWith(`avc1`)||e.decoderConfig.codec.startsWith(`avc3`)){if(!Fr.test(e.decoderConfig.codec))throw TypeError(`Video chunk metadata decoder configuration codec string for AVC must be a valid AVC codec string as specified in Section 3.4 of RFC 6381.`)}else if(e.decoderConfig.codec.startsWith(`hev1`)||e.decoderConfig.codec.startsWith(`hvc1`)){if(!Ir.test(e.decoderConfig.codec))throw TypeError(`Video chunk metadata decoder configuration codec string for HEVC must be a valid HEVC codec string as specified in Section E.3 of ISO 14496-15.`)}else if(e.decoderConfig.codec.startsWith(`vp8`)){if(e.decoderConfig.codec!==`vp8`)throw TypeError(`Video chunk metadata decoder configuration codec string for VP8 must be "vp8".`)}else if(e.decoderConfig.codec.startsWith(`vp09`)){if(!Lr.test(e.decoderConfig.codec))throw TypeError(`Video chunk metadata decoder configuration codec string for VP9 must be a valid VP9 codec string as specified in Section "Codecs Parameter String" of https://www.webmproject.org/vp9/mp4/.`)}else if(e.decoderConfig.codec.startsWith(`av01`)){if(!Rr.test(e.decoderConfig.codec))throw TypeError(`Video chunk metadata decoder configuration codec string for AV1 must be a valid AV1 codec string as specified in Section "Codecs Parameter String" of https://aomediacodec.github.io/av1-isobmff/.`)}else if(_r.some(t=>e.decoderConfig.codec.startsWith(t))&&!_r.some(t=>e.decoderConfig.codec===t))throw TypeError(`Video chunk metadata decoder configuration codec string for ProRes must be one of the valid ProRes four-character codes: ${_r.join(`, `)}.`);if(t!==null&&jr(e.decoderConfig.codec)!==t)throw TypeError(`Video chunk metadata decoder configuration codec string '${e.decoderConfig.codec}' does not fit to the track codec '${t}'.`)},Br=[`mp4a`,`mp3`,`opus`,`vorbis`,`flac`,`ulaw`,`alaw`,`pcm`,`ac-3`,`ec-3`,`dts`],Vr=(e,t)=>{if(!e)throw TypeError(`Audio chunk metadata must be provided.`);if(typeof e!=`object`)throw TypeError(`Audio chunk metadata must be an object.`);if(!e.decoderConfig)throw TypeError(`Audio chunk metadata must include a decoder configuration.`);if(typeof e.decoderConfig!=`object`)throw TypeError(`Audio chunk metadata decoder configuration must be an object.`);if(typeof e.decoderConfig.codec!=`string`)throw TypeError(`Audio chunk metadata decoder configuration must specify a codec string.`);if(!Br.some(t=>e.decoderConfig.codec.startsWith(t)))throw TypeError(`Audio chunk metadata decoder configuration codec string must be a valid audio codec string as specified in the Mediabunny Codec Registry.`);if(!Number.isInteger(e.decoderConfig.sampleRate)||e.decoderConfig.sampleRate<=0)throw TypeError(`Audio chunk metadata decoder configuration must specify a valid sampleRate (positive integer).`);if(!Number.isInteger(e.decoderConfig.numberOfChannels)||e.decoderConfig.numberOfChannels<=0)throw TypeError(`Audio chunk metadata decoder configuration must specify a valid numberOfChannels (positive integer).`);if(e.decoderConfig.description!==void 0&&!te(e.decoderConfig.description))throw TypeError(`Audio chunk metadata decoder configuration description, when defined, must be an ArrayBuffer or an ArrayBuffer view.`);if(e.decoderConfig.codec.startsWith(`mp4a`)&&e.decoderConfig.codec!==`mp4a.69`&&e.decoderConfig.codec!==`mp4a.6B`&&e.decoderConfig.codec!==`mp4a.6b`){if(![`mp4a.40.2`,`mp4a.40.02`,`mp4a.40.5`,`mp4a.40.05`,`mp4a.40.29`,`mp4a.67`].includes(e.decoderConfig.codec))throw TypeError(`Audio chunk metadata decoder configuration codec string for AAC must be a valid AAC codec string as specified in https://www.w3.org/TR/webcodecs-aac-codec-registration/.`)}else if(e.decoderConfig.codec.startsWith(`mp3`)||e.decoderConfig.codec.startsWith(`mp4a`)){if(e.decoderConfig.codec!==`mp3`&&e.decoderConfig.codec!==`mp4a.69`&&e.decoderConfig.codec!==`mp4a.6B`&&e.decoderConfig.codec!==`mp4a.6b`)throw TypeError(`Audio chunk metadata decoder configuration codec string for MP3 must be "mp3", "mp4a.69" or "mp4a.6B".`)}else if(e.decoderConfig.codec.startsWith(`opus`)){if(e.decoderConfig.codec!==`opus`)throw TypeError(`Audio chunk metadata decoder configuration codec string for Opus must be "opus".`);if(e.decoderConfig.description&&e.decoderConfig.description.byteLength<18)throw TypeError(`Audio chunk metadata decoder configuration description, when specified, is expected to be an Identification Header as specified in Section 5.1 of RFC 7845.`)}else if(e.decoderConfig.codec.startsWith(`vorbis`)){if(e.decoderConfig.codec!==`vorbis`)throw TypeError(`Audio chunk metadata decoder configuration codec string for Vorbis must be "vorbis".`);if(!e.decoderConfig.description)throw TypeError(`Audio chunk metadata decoder configuration for Vorbis must include a description, which is expected to adhere to the format described in https://www.w3.org/TR/webcodecs-vorbis-codec-registration/.`)}else if(e.decoderConfig.codec.startsWith(`flac`)){if(e.decoderConfig.codec!==`flac`)throw TypeError(`Audio chunk metadata decoder configuration codec string for FLAC must be "flac".`);if(!e.decoderConfig.description||e.decoderConfig.description.byteLength<42)throw TypeError(`Audio chunk metadata decoder configuration for FLAC must include a description, which is expected to adhere to the format described in https://www.w3.org/TR/webcodecs-flac-codec-registration/.`)}else if(e.decoderConfig.codec.startsWith(`ac-3`)||e.decoderConfig.codec.startsWith(`ac3`)){if(e.decoderConfig.codec!==`ac-3`)throw TypeError(`Audio chunk metadata decoder configuration codec string for AC-3 must be "ac-3".`)}else if(e.decoderConfig.codec.startsWith(`ec-3`)||e.decoderConfig.codec.startsWith(`eac3`)){if(e.decoderConfig.codec!==`ec-3`)throw TypeError(`Audio chunk metadata decoder configuration codec string for EC-3 must be "ec-3".`)}else if(e.decoderConfig.codec.startsWith(`dts`)){if(!vr.includes(e.decoderConfig.codec))throw TypeError(`Audio chunk metadata decoder configuration codec string for DTS must be one of the following four-character codes: ${vr.join(`, `)}.`)}else if((e.decoderConfig.codec.startsWith(`pcm`)||e.decoderConfig.codec.startsWith(`ulaw`)||e.decoderConfig.codec.startsWith(`alaw`))&&!P.includes(e.decoderConfig.codec))throw TypeError(`Audio chunk metadata decoder configuration codec string for PCM must be one of the supported PCM codecs (${P.join(`, `)}).`);if(t!==null&&jr(e.decoderConfig.codec)!==t)throw TypeError(`Audio chunk metadata decoder configuration codec string '${e.decoderConfig.codec}' does not fit to the track codec '${t}'.`)},Hr=e=>{if(!e)throw TypeError(`Subtitle metadata must be provided.`);if(typeof e!=`object`)throw TypeError(`Subtitle metadata must be an object.`);if(!e.config)throw TypeError(`Subtitle metadata must include a config object.`);if(typeof e.config!=`object`)throw TypeError(`Subtitle metadata config must be an object.`);if(typeof e.config.description!=`string`)throw TypeError(`Subtitle metadata config description must be a string.`)},Ur=[44100,48e3,32e3],Wr=[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,32,40,48,56,64,80,96,112,128,160,192,224,256,320,-1,-1,32,48,56,64,80,96,112,128,160,192,224,256,320,384,-1,-1,32,64,96,128,160,192,224,256,288,320,352,384,416,448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,16,24,32,40,48,56,64,80,96,112,128,144,160,-1,-1,8,16,24,32,40,48,56,64,80,96,112,128,144,160,-1,-1,32,48,56,64,80,96,112,128,144,160,176,192,224,256,-1],Gr=1483304551,Kr=(e,t,n,r,i)=>t===0?0:t===1?Math.floor(144*n/(r<<e))+i:t===2?Math.floor(144*n/r)+i:(Math.floor(12*n/r)+i)*4,qr=(e,t,n,r)=>t===0?0:t===1?144*n/(r<<e):t===2?144*n/r:12*n/r*4,Jr=(e,t)=>e===3?t===3?21:36:t===3?13:21,Yr=(e,t)=>{let n=e>>>24,r=e>>>16&255,i=e>>>8&255,a=e&255;if(n!==255&&r!==255&&i!==255&&a!==255)return{header:null,bytesAdvanced:4};if(n!==255||(r&224)!=224)return{header:null,bytesAdvanced:1};let o=0,s=0;r&16?o=r&8?0:1:(o=1,s=1);let c=r>>3&3,l=r>>1&3,u=i>>4&15,d=(i>>2&3)%3,f=i>>1&1,p=a>>6&3,m=a>>4&3,h=a>>3&1,g=a>>2&1,_=a&3,v=Wr[o*16*4+l*16+u];if(v===-1)return{header:null,bytesAdvanced:1};let y=v*1e3,b=Ur[d]>>o+s,x=Kr(o,l,y,b,f);if(t!==null&&t<x)return{header:null,bytesAdvanced:1};let S;return S=c===3?l===3?384:1152:l===3?384:l===2?1152:576,{header:{totalSize:x,mpegVersionId:c,lowSamplingFrequency:o,layer:l,bitrate:y,frequencyIndex:d,sampleRate:b,channel:p,modeExtension:m,copyright:h,original:g,emphasis:_,audioSamplesInFrame:S},bytesAdvanced:1}},Xr=e=>{let t=127,n=0,r=e;for(;t^2147483647;)n=r&~t,n<<=1,n|=r&t,t=(t+1<<8)-1,r=n;return n},Zr=e=>{let t=2130706432,n=0;for(;t!==0;)n>>=1,n|=e&t,t>>=8;return n},Qr;(function(e){e[e.FrameCount=1]=`FrameCount`,e[e.FileSize=2]=`FileSize`,e[e.Toc=4]=`Toc`})(Qr||={});var $r=e=>e===3?1:2,ei=class{constructor(e){this.input=e}dispose(){}},ti=new Uint8Array,I=class e{constructor(e,t,n,r,i=-1,a,o){if(this.data=e,this.type=t,this.timestamp=n,this.duration=r,this.sequenceNumber=i,e===ti&&a===void 0)throw Error(`Internal error: byteLength must be explicitly provided when constructing metadata-only packets.`);if(a===void 0&&(a=e.byteLength),!(e instanceof Uint8Array))throw TypeError(`data must be a Uint8Array.`);if(t!==`key`&&t!==`delta`)throw TypeError(`type must be either "key" or "delta".`);if(!Number.isFinite(n))throw TypeError(`timestamp must be a number.`);if(!Number.isFinite(r)||r<0)throw TypeError(`duration must be a non-negative number.`);if(!Number.isFinite(i))throw TypeError(`sequenceNumber must be a number.`);if(!Number.isInteger(a)||a<0)throw TypeError(`byteLength must be a non-negative integer.`);if(o!==void 0&&(typeof o!=`object`||!o))throw TypeError(`sideData, when provided, must be an object.`);if(o?.alpha!==void 0&&!(o.alpha instanceof Uint8Array))throw TypeError(`sideData.alpha, when provided, must be a Uint8Array.`);if(o?.alphaByteLength!==void 0&&(!Number.isInteger(o.alphaByteLength)||o.alphaByteLength<0))throw TypeError(`sideData.alphaByteLength, when provided, must be a non-negative integer.`);this.byteLength=a,this.sideData=o??{},this.sideData.alpha&&this.sideData.alphaByteLength===void 0&&(this.sideData.alphaByteLength=this.sideData.alpha.byteLength)}get isMetadataOnly(){return this.data===ti}get microsecondTimestamp(){return Math.trunc(Ae*this.timestamp)}get microsecondDuration(){return Math.trunc(Ae*this.duration)}toEncodedVideoChunk(){if(this.isMetadataOnly)throw TypeError(`Metadata-only packets cannot be converted to a video chunk.`);if(typeof EncodedVideoChunk>`u`)throw Error(`EncodedVideoChunk is not available in this environment.`);return new EncodedVideoChunk({data:this.data,type:this.type,timestamp:this.microsecondTimestamp,duration:this.microsecondDuration})}alphaToEncodedVideoChunk(e=this.type){if(!this.sideData.alpha)throw TypeError(`This packet does not contain alpha side data.`);if(this.isMetadataOnly)throw TypeError(`Metadata-only packets cannot be converted to a video chunk.`);if(typeof EncodedVideoChunk>`u`)throw Error(`EncodedVideoChunk is not available in this environment.`);return new EncodedVideoChunk({data:this.sideData.alpha,type:e,timestamp:this.microsecondTimestamp,duration:this.microsecondDuration})}toEncodedAudioChunk(){if(this.isMetadataOnly)throw TypeError(`Metadata-only packets cannot be converted to an audio chunk.`);if(typeof EncodedAudioChunk>`u`)throw Error(`EncodedAudioChunk is not available in this environment.`);return new EncodedAudioChunk({data:this.data,type:this.type,timestamp:this.microsecondTimestamp,duration:this.microsecondDuration})}static fromEncodedChunk(t,n){if(!(t instanceof EncodedVideoChunk||t instanceof EncodedAudioChunk))throw TypeError(`chunk must be an EncodedVideoChunk or EncodedAudioChunk.`);let r=new Uint8Array(t.byteLength);return t.copyTo(r),new e(r,t.type,t.timestamp/1e6,(t.duration??0)/1e6,void 0,void 0,n)}clone(t){if(t!==void 0&&(typeof t!=`object`||!t))throw TypeError(`options, when provided, must be an object.`);if(t?.data!==void 0&&!(t.data instanceof Uint8Array))throw TypeError(`options.data, when provided, must be a Uint8Array.`);if(t?.type!==void 0&&t.type!==`key`&&t.type!==`delta`)throw TypeError(`options.type, when provided, must be either "key" or "delta".`);if(t?.timestamp!==void 0&&!Number.isFinite(t.timestamp))throw TypeError(`options.timestamp, when provided, must be a number.`);if(t?.duration!==void 0&&!Number.isFinite(t.duration))throw TypeError(`options.duration, when provided, must be a number.`);if(t?.sequenceNumber!==void 0&&!Number.isFinite(t.sequenceNumber))throw TypeError(`options.sequenceNumber, when provided, must be a number.`);if(t?.sideData!==void 0&&(typeof t.sideData!=`object`||t.sideData===null))throw TypeError(`options.sideData, when provided, must be an object.`);return new e(t?.data??this.data,t?.type??this.type,t?.timestamp??this.timestamp,t?.duration??this.duration,t?.sequenceNumber??this.sequenceNumber,this.byteLength,t?.sideData??this.sideData)}},ni=e=>{let t=(e.hasVideo?`video/`:e.hasAudio?`audio/`:`application/`)+(e.isQuickTime?`quicktime`:`mp4`);if(e.codecStrings.length>0){let n=[...new Set(e.codecStrings)];t+=`; codecs="${n.join(`, `)}"`}return t},ri=e=>{let t=d(e),n=0,r=t.getUint8(n);n+=1,n+=3;let i=ie(e.subarray(n,n+16));n+=16;let a=null;if(r>0){let r=t.getUint32(n);if(n+=4,r>0){a=[];for(let t=0;t<r;t++)a.push(ie(e.subarray(n,n+16))),n+=16}}let o=t.getUint32(n);return n+=4,{systemId:i,keyIds:a,data:e.slice(n,n+o)}},ii=(e,t)=>e.systemId===t.systemId&&Xe(e.data,t.data),ai=e=>{let t=W(e),n=G(e,4),r=8;t===1&&(t=yu(e),r=16);let i=t-r;return i<0?null:{name:n,totalSize:t,headerSize:r,contentSize:i}},oi=e=>gu(e)/65536,si=e=>gu(e)/1073741824,ci=e=>{let t=0;for(let n=0;n<4;n++){t<<=7;let n=H(e);if(t|=n&127,!(n&128))break}return t},li=e=>{let t=U(e);return e.skip(2),t=Math.min(t,e.remainingLength),f.decode(V(e,t))},ui=e=>{let t=ai(e);if(!t||t.name!==`data`||e.remainingLength<8)return null;let n=W(e);e.skip(4);let r=V(e,t.contentSize-8);switch(n){case 1:return f.decode(r);case 2:return new TextDecoder(`utf-16be`).decode(r);case 13:return new xt(r,`image/jpeg`);case 14:return new xt(r,`image/png`);case 27:return new xt(r,`image/bmp`);default:return r}},di=new Uint32Array(256),fi=new Uint32Array(256),pi=new Uint32Array(256),mi=new Uint32Array(256),hi=new Uint32Array(256),gi=new Uint32Array(256),_i=new Uint32Array(10),vi=!1,yi=()=>{let e=new Uint8Array(256),t=new Uint8Array(256),n=new Uint8Array(256);for(let e=0,r=1;e<256;e++)n[e]=r,t[r]=e,r=r^r<<1^(r&128?283:0);let r=(e,r)=>e&&r?n[(t[e]+t[r])%255]:0;e[0]=99;for(let r=1;r<256;r++){let i=n[255-t[r]],a=i^i<<1^i<<2^i<<3^i<<4;a=a>>>8^a&255^99,e[r]=a}for(let t=0;t<256;t++){let n=e[t],i=e.indexOf(t);di[t]=n<<24|n<<16|n<<8|n,gi[t]=i<<24|i<<16|i<<8|i;let a=r(i,14),o=r(i,9),s=r(i,13),c=r(i,11),l=a<<24|o<<16|s<<8|c;fi[t]=l,pi[t]=l>>>8|l<<24,mi[t]=l>>>16|l<<16,hi[t]=l>>>24|l<<8}let i=1;for(let e=0;e<10;e++)_i[e]=i<<24,i=i<<1^(i&128?283:0);vi=!0},bi=class{constructor(){this.roundkey=new Uint32Array(44),this.iv=new Uint32Array(16/Uint32Array.BYTES_PER_ELEMENT),this.in=new Uint8Array(16),this.out=new Uint8Array(16),this.inView=new DataView(this.in.buffer),this.outView=new DataView(this.out.buffer)}init({key:e,iv:t}){r(e.byteLength===16),r(t.byteLength===16),vi||yi();let n=new DataView(e.buffer,e.byteOffset,e.byteLength),i=new DataView(t.buffer,t.byteOffset,t.byteLength);this.roundkey[0]=n.getUint32(0,!1),this.roundkey[1]=n.getUint32(4,!1),this.roundkey[2]=n.getUint32(8,!1),this.roundkey[3]=n.getUint32(12,!1),this.iv[0]=i.getUint32(0,!1),this.iv[1]=i.getUint32(4,!1),this.iv[2]=i.getUint32(8,!1),this.iv[3]=i.getUint32(12,!1);for(let e=4;e<44;e+=4){let t=this.roundkey[e-1];this.roundkey[e]=this.roundkey[e-4]^di[t>>>16&255]&4278190080^di[t>>>8&255]&16711680^di[t>>>0&255]&65280^di[t>>>24&255]&255^_i[e/4-1],this.roundkey[e+1]=this.roundkey[e-3]^this.roundkey[e],this.roundkey[e+2]=this.roundkey[e-2]^this.roundkey[e+1],this.roundkey[e+3]=this.roundkey[e-1]^this.roundkey[e+2]}for(let e=0,t=40;e<t;e+=4,t-=4)for(let n=0;n<4;n++){let r=this.roundkey[e+n];this.roundkey[e+n]=this.roundkey[t+n],this.roundkey[t+n]=r}for(let e=4;e<40;e+=4)for(let t=0;t<4;t++){let n=this.roundkey[e+t];this.roundkey[e+t]=fi[di[n>>>24&255]&255]^pi[di[n>>>16&255]&255]^mi[di[n>>>8&255]&255]^hi[di[n>>>0&255]&255]}}decrypt(){let e=this.inView.getUint32(0,!1)^this.roundkey[0],t=this.inView.getUint32(4,!1)^this.roundkey[1],n=this.inView.getUint32(8,!1)^this.roundkey[2],r=this.inView.getUint32(12,!1)^this.roundkey[3],i=this.inView.getUint32(0,!1),a=this.inView.getUint32(4,!1),o=this.inView.getUint32(8,!1),s=this.inView.getUint32(12,!1),c,l,u,d;for(let i=1;i<10;i++){let a=i*4;c=fi[e>>>24]^pi[r>>>16&255]^mi[n>>>8&255]^hi[t&255]^this.roundkey[a],l=fi[t>>>24]^pi[e>>>16&255]^mi[r>>>8&255]^hi[n&255]^this.roundkey[a+1],u=fi[n>>>24]^pi[t>>>16&255]^mi[e>>>8&255]^hi[r&255]^this.roundkey[a+2],d=fi[r>>>24]^pi[n>>>16&255]^mi[t>>>8&255]^hi[e&255]^this.roundkey[a+3],e=c,t=l,n=u,r=d}let f=gi[e>>>24&255]&4278190080^gi[r>>>16&255]&16711680^gi[n>>>8&255]&65280^gi[t>>>0&255]&255^this.roundkey[40],p=gi[t>>>24&255]&4278190080^gi[e>>>16&255]&16711680^gi[r>>>8&255]&65280^gi[n>>>0&255]&255^this.roundkey[41],m=gi[n>>>24&255]&4278190080^gi[t>>>16&255]&16711680^gi[e>>>8&255]&65280^gi[r>>>0&255]&255^this.roundkey[42],h=gi[r>>>24&255]&4278190080^gi[n>>>16&255]&16711680^gi[t>>>8&255]&65280^gi[e>>>0&255]&255^this.roundkey[43];this.outView.setUint32(0,f^this.iv[0],!1),this.outView.setUint32(4,p^this.iv[1],!1),this.outView.setUint32(8,m^this.iv[2],!1),this.outView.setUint32(12,h^this.iv[3],!1),this.iv[0]=i,this.iv[1]=a,this.iv[2]=o,this.iv[3]=s}},xi=(e,t,n)=>{let r=!1,i=0,a=2**16,o=new bi;return new ReadableStream({pull:async s=>{r||=(o.init(await t()),!0);let c=a+16,l=e.requestSliceRange(i,0,c);if(O(l)&&(l=await l),!l||l.length===0)throw Error(`Invalid ciphertext.`);let u=l.length;if(u%16!=0)throw Error(`Invalid ciphertext.`);let d=u===c?u-16:u,f=V(l,d),p=new Uint8Array(d);for(let e=0;e<d;e+=16)o.in.set(f.subarray(e,e+16)),o.decrypt(),p.set(o.out,e);if(d<u)s.enqueue(p),i+=d;else{let e=p[d-1];if(e===0||e>16)throw Error(`Invalid PKCS#7 padding. Incorrect key or corrupted data.`);let t=p.subarray(0,d-e);s.enqueue(t),s.close(),n()}},cancel:()=>{n()}})},Si=class e extends ei{constructor(e){super(e),this.moovSlice=null,this.currentTrack=null,this.tracks=[],this.metadataPromise=null,this.movieTimescale=-1,this.movieDurationInTimescale=-1,this.isQuickTime=!1,this.metadataTags={},this.currentMetadataKeys=null,this.isFragmented=!1,this.fragmentTrackDefaults=[],this.psshBoxes=[],this.currentFragment=null,this.lastReadFragment=null,this.decryptionKeyCache=new Map,this.reader=e._reader}async getTrackBackings(){return await this.readMetadata(),this.tracks.map(e=>e.trackBacking)}async getMimeType(){await this.readMetadata();let e=await this.getTrackBackings(),t=await Promise.all(e.map(e=>e.getDecoderConfig().then(e=>e?.codec??null)));return ni({isQuickTime:this.isQuickTime,hasVideo:this.tracks.some(e=>e.info?.type===`video`),hasAudio:this.tracks.some(e=>e.info?.type===`audio`),codecStrings:t.filter(Boolean)})}async getMetadataTags(){return await this.readMetadata(),this.metadataTags}readMetadata(){return this.metadataPromise??=(async()=>{let e=0,t=!1,n=!1;for(;;){let r=this.reader.requestSliceRange(e,8,16);if(O(r)&&(r=await r),!r)break;let i=e,a=ai(r);if(!a)break;if(a.name===`ftyp`||a.name===`styp`){let e=G(r,4);this.isQuickTime=e===`qt `}else if(a.name===`moov`){let e=this.reader.requestSlice(r.filePos,a.contentSize);if(O(e)&&(e=await e),!e)break;this.moovSlice=e,this.readContiguousBoxes(this.moovSlice);for(let e of this.tracks){let t=e.editListPreviousSegmentDurations/this.movieTimescale;e.editListOffset-=Math.round(t*e.timescale)}t=this.isFragmented&&this.reader.fileSize!==null&&this.reader.fileSize>i+a.totalSize,n=!0;break}else if(a.name===`moof`){if(!this.input._initInput)throw Error(`"moof" box encountered with no "moov" box present; this file is likely a Segment as described in ISO/IEC 14496-12 Section 8.16. A separate init file that contains a "moov" box is required to read this file, please provide it using InputOptions.initInput.`);await this.copyMetadataFromInitInput(this.input._initInput),t=!1,n=!0;break}e=i+a.totalSize}if(!n&&this.input._initInput&&await this.copyMetadataFromInitInput(this.input._initInput),t){r(this.reader.fileSize!==null);let e=this.reader.requestSlice(this.reader.fileSize-4,4);O(e)&&(e=await e),r(e);let t=W(e),n=this.reader.fileSize-t;if(n>=0&&n<=this.reader.fileSize-16){let e=this.reader.requestSliceRange(n,8,16);if(O(e)&&(e=await e),e){let t=ai(e);if(t&&t.name===`mfra`){let n=this.reader.requestSlice(e.filePos,t.contentSize);O(n)&&(n=await n),n&&this.readContiguousBoxes(n)}}}}})()}async copyMetadataFromInitInput(t){let n=await t._getDemuxer();if(n.constructor!==e)throw Error(`Init input must match the input's format.`);await n.readMetadata(),this.movieTimescale=n.movieTimescale,this.movieDurationInTimescale=n.movieDurationInTimescale,this.metadataTags=n.metadataTags,this.isFragmented=!0,this.fragmentTrackDefaults=n.fragmentTrackDefaults,this.psshBoxes=n.psshBoxes;for(let e of n.tracks){let t={id:e.id,demuxer:this,trackBacking:null,disposition:e.disposition,timescale:e.timescale,durationInMediaTimescale:e.durationInMediaTimescale,durationInMovieTimescale:e.durationInMovieTimescale,rotation:e.rotation,internalCodecId:e.internalCodecId,name:e.name,languageCode:e.languageCode,sampleTableByteOffset:null,sampleTable:null,fragmentLookupTable:[],currentFragmentState:null,fragmentPositionCache:[],editListPreviousSegmentDurations:e.editListPreviousSegmentDurations,editListOffset:e.editListOffset,encryptionInfo:e.encryptionInfo,encryptionAuxInfo:null,frmaCodecString:null,info:e.info};e.trackBacking&&(r(t.info),t.info.type===`video`&&t.info.width!==-1?(t.trackBacking=new wi(t),this.tracks.push(t)):t.info.type===`audio`&&t.info.numberOfChannels!==-1&&(t.trackBacking=new Ti(t),this.tracks.push(t)))}}getSampleTableForTrack(e){if(e.sampleTable)return e.sampleTable;let t={sampleTimingEntries:[],sampleCompositionTimeOffsets:[],sampleSizes:[],keySampleIndices:null,chunkOffsets:[],sampleToChunk:[],presentationTimestamps:null,presentationTimestampIndexMap:null};if(e.sampleTable=t,e.sampleTableByteOffset===null)return t;r(this.moovSlice);let n=this.moovSlice.slice(e.sampleTableByteOffset);if(this.currentTrack=e,this.traverseBox(n),this.currentTrack=null,e.info?.type===`audio`&&e.info.codec&&P.includes(e.info.codec)&&t.sampleCompositionTimeOffsets.length===0){r(e.info?.type===`audio`);let n=Ar(e.info.codec),i=[],o=[];for(let r=0;r<t.sampleToChunk.length;r++){let s=t.sampleToChunk[r],c=t.sampleToChunk[r+1],l=(c?c.startChunkIndex:t.chunkOffsets.length)-s.startChunkIndex;for(let r=0;r<l;r++){let c=s.startSampleIndex+r*s.samplesPerChunk,l=c+s.samplesPerChunk,u=w(t.sampleTimingEntries,c,e=>e.startIndex),d=t.sampleTimingEntries[u],f=w(t.sampleTimingEntries,l,e=>e.startIndex),p=t.sampleTimingEntries[f],m=d.startDecodeTimestamp+(c-d.startIndex)*d.delta,h=p.startDecodeTimestamp+(l-p.startIndex)*p.delta-m,g=a(i);g&&g.delta===h?g.count++:i.push({startIndex:s.startChunkIndex+r,startDecodeTimestamp:m,count:1,delta:h});let _=s.samplesPerChunk*n.sampleSize*e.info.numberOfChannels;o.push(_)}s.startSampleIndex=s.startChunkIndex,s.samplesPerChunk=1}t.sampleTimingEntries=i,t.sampleSizes=o}if(t.sampleCompositionTimeOffsets.length>0){t.presentationTimestamps=[];for(let e of t.sampleTimingEntries)for(let n=0;n<e.count;n++)t.presentationTimestamps.push({presentationTimestamp:e.startDecodeTimestamp+n*e.delta,sampleIndex:e.startIndex+n});for(let e of t.sampleCompositionTimeOffsets)for(let n=0;n<e.count;n++){let r=e.startIndex+n,i=t.presentationTimestamps[r];i&&(i.presentationTimestamp+=e.offset)}t.presentationTimestamps.sort((e,t)=>e.presentationTimestamp-t.presentationTimestamp),t.presentationTimestampIndexMap=Array(t.presentationTimestamps.length).fill(-1);for(let e=0;e<t.presentationTimestamps.length;e++)t.presentationTimestampIndexMap[t.presentationTimestamps[e].sampleIndex]=e}return t}async readFragment(e){if(this.lastReadFragment?.moofOffset===e)return this.lastReadFragment;let t=this.reader.requestSliceRange(e,8,16);O(t)&&(t=await t),r(t);let n=ai(t);r(n?.name===`moof`);let i=this.reader.requestSlice(e,n.totalSize);O(i)&&(i=await i),r(i),this.traverseBox(i);let a=this.lastReadFragment;r(a&&a.moofOffset===e);for(let[,e]of a.trackData){let t=e.track,{fragmentPositionCache:n}=t;if(!e.startTimestampIsFinal){let r=t.fragmentLookupTable.find(e=>e.moofOffset===a.moofOffset);if(r)Ai(e,r.timestamp);else{let t=w(n,a.moofOffset-1,e=>e.moofOffset);if(t!==-1){let r=n[t];Ai(e,r.endTimestamp)}}e.startTimestampIsFinal=!0}let r=w(n,e.startTimestamp,e=>e.startTimestamp);if((r===-1||n[r].moofOffset!==a.moofOffset)&&n.splice(r+1,0,{moofOffset:a.moofOffset,startTimestamp:e.startTimestamp,endTimestamp:e.endTimestamp}),e.encryptionAuxInfo&&t.encryptionInfo){let n=await Pi(this.reader,t.encryptionInfo,e.encryptionAuxInfo);for(let t=0;t<Math.min(e.samples.length,n.length);t++){let r=n[t];e.samples[t].encryption=r}}}return a}readContiguousBoxes(e){let t=e.filePos;for(;e.filePos-t<=e.length-8&&this.traverseBox(e););}*iterateContiguousBoxes(e){let t=e.filePos;for(;e.filePos-t<=e.length-8;){let t=e.filePos,n=ai(e);if(!n)break;yield{boxInfo:n,slice:e},e.filePos=t+n.totalSize}}traverseBox(e){let t=e.filePos,n=ai(e);if(!n)return!1;let o=e.filePos,s=t+n.totalSize;switch(n.name){case`mdia`:case`minf`:case`dinf`:case`mfra`:case`edts`:case`sinf`:case`schi`:this.readContiguousBoxes(e.slice(o,n.contentSize));break;case`mvhd`:{let t=H(e);e.skip(3),t===1?(e.skip(16),this.movieTimescale=W(e),this.movieDurationInTimescale=yu(e)):(e.skip(8),this.movieTimescale=W(e),this.movieDurationInTimescale=W(e))}break;case`trak`:{let t={id:-1,demuxer:this,trackBacking:null,disposition:{...Tt,primary:!1},info:null,timescale:-1,durationInMovieTimescale:-1,durationInMediaTimescale:-1,rotation:0,internalCodecId:null,name:null,languageCode:`und`,sampleTableByteOffset:-1,sampleTable:null,fragmentLookupTable:[],currentFragmentState:null,fragmentPositionCache:[],editListPreviousSegmentDurations:0,editListOffset:0,encryptionInfo:null,encryptionAuxInfo:null,frmaCodecString:null};this.currentTrack=t,this.readContiguousBoxes(e.slice(o,n.contentSize)),t.id!==-1&&t.timescale!==-1&&t.info!==null&&(t.info.type===`video`&&t.info.width!==-1?(t.trackBacking=new wi(t),this.tracks.push(t)):t.info.type===`audio`&&t.info.numberOfChannels!==-1&&(t.trackBacking=new Ti(t),this.tracks.push(t))),this.currentTrack=null}break;case`tkhd`:{let t=this.currentTrack;if(!t)break;let n=H(e),a=!!(fu(e)&1);if(t.disposition.default=a,n===0)e.skip(8),t.id=W(e),e.skip(4),t.durationInMovieTimescale=W(e);else if(n===1)e.skip(16),t.id=W(e),e.skip(4),t.durationInMovieTimescale=yu(e);else throw Error(`Incorrect track header version ${n}.`);e.skip(16);let o=i(Se(ji([oi(e),oi(e),si(e),oi(e),oi(e),si(e),oi(e),oi(e),si(e)]),90));r(o===0||o===90||o===180||o===270),t.rotation=o}break;case`elst`:{let t=this.currentTrack;if(!t)break;let n=H(e);e.skip(3);let r=!1,i=0,a=W(e);for(let o=0;o<a;o++){let a=n===1?yu(e):W(e),o=n===1?bu(e):gu(e),s=oi(e);if(a!==0){if(r){k._warn(`Unsupported edit list: multiple edits are not currently supported. Only using first edit.`);break}if(o===-1){i+=a;continue}if(s!==1){k._warn(`Unsupported edit list entry: media rate must be 1.`);break}t.editListPreviousSegmentDurations=i,t.editListOffset=o,r=!0}}}break;case`mdhd`:{let t=this.currentTrack;if(!t)break;let n=H(e);e.skip(3),n===0?(e.skip(8),t.timescale=W(e),t.durationInMediaTimescale=W(e)):n===1&&(e.skip(16),t.timescale=W(e),t.durationInMediaTimescale=yu(e));let r=U(e);if(r>0){t.languageCode=``;for(let e=0;e<3;e++)t.languageCode=String.fromCharCode(96+(r&31))+t.languageCode,r>>=5;ke(t.languageCode)||(t.languageCode=`und`)}}break;case`hdlr`:{let t=this.currentTrack;if(!t)break;e.skip(8);let n=G(e,4);n===`vide`?t.info={type:`video`,width:-1,height:-1,squarePixelWidth:-1,squarePixelHeight:-1,codec:null,codecDescription:null,colorSpace:{...ee},avcType:null,avcCodecInfo:null,hevcCodecInfo:null,vp9CodecInfo:null,av1CodecInfo:null,proresCodecInfo:null,proresFormat:null}:n===`soun`&&(t.info={type:`audio`,numberOfChannels:-1,sampleRate:-1,codec:null,codecDescription:null,aacCodecInfo:null,dtsFormat:null,pcmLittleEndian:!1,pcmSampleSize:null})}break;case`stbl`:{let r=this.currentTrack;if(!r)break;r.sampleTableByteOffset=t,this.readContiguousBoxes(e.slice(o,n.contentSize))}break;case`stsd`:{let t=this.currentTrack;if(!t||t.info===null||t.sampleTable)break;let n=H(e);e.skip(3);let r=W(e);for(let i=0;i<r;i++){let r=e.filePos,i=ai(e);if(!i)break;t.internalCodecId=i.name;let a=i.name.toLowerCase();if(t.info.type===`video`){e.skip(24),t.info.width=U(e),t.info.height=U(e),t.info.squarePixelWidth=t.info.width,t.info.squarePixelHeight=t.info.height,e.skip(50),t.frmaCodecString=null,this.readContiguousBoxes(e.slice(e.filePos,r+i.totalSize-e.filePos));let n=a===`encv`?t.frmaCodecString:a;t.frmaCodecString=null,n===`avc1`||n===`avc3`?(t.info.codec=`avc`,t.info.avcType=n===`avc1`?1:3):n===`hvc1`||n===`hev1`?t.info.codec=`hevc`:n===`vp08`?t.info.codec=`vp8`:n===`vp09`?t.info.codec=`vp9`:n===`av01`?t.info.codec=`av1`:_r.includes(a)?(t.info.codec=`prores`,t.info.proresFormat=a):n===null?k._warn(`Unknown encrypted video codec due to missing frma box.`):k._warn(`Unsupported video codec (sample entry type '${i.name}').`)}else{e.skip(8);let o=U(e);e.skip(6);let s=U(e),c=U(e);e.skip(4);let l=W(e)/65536,u=null;n===0&&o>0&&(o===1?(e.skip(4),c=8*W(e),e.skip(8)):o===2&&(e.skip(4),l=Cu(e),s=W(e),e.skip(4),c=W(e),u=W(e),e.skip(8))),t.info.numberOfChannels=s,t.info.sampleRate=l,t.frmaCodecString=null,this.readContiguousBoxes(e.slice(e.filePos,r+i.totalSize-e.filePos));let d=a===`enca`?t.frmaCodecString:a;if(t.frmaCodecString=null,d!==`mp4a`){if(d===`opus`)t.info.codec=`opus`,t.info.sampleRate=Or;else if(d===`flac`)t.info.codec=`flac`;else if(d===`ulaw`)t.info.codec=`ulaw`;else if(d===`alaw`)t.info.codec=`alaw`;else if(d===`ac-3`)t.info.codec=`ac3`;else if(d===`ec-3`)t.info.codec=`eac3`;else if(vr.includes(d))t.info.codec=`dts`,t.info.dtsFormat=d;else if(d===`twos`)c===8?t.info.codec=`pcm-s8`:c===16?t.info.codec=t.info.pcmLittleEndian?`pcm-s16`:`pcm-s16be`:(k._warn(`Unsupported sample size ${c} for codec 'twos'.`),t.info.codec=null);else if(d===`sowt`)c===8?t.info.codec=`pcm-s8`:c===16?t.info.codec=`pcm-s16`:(k._warn(`Unsupported sample size ${c} for codec 'sowt'.`),t.info.codec=null);else if(d===`raw `)t.info.codec=`pcm-u8`;else if(d===`in24`)t.info.codec=t.info.pcmLittleEndian?`pcm-s24`:`pcm-s24be`;else if(d===`in32`)t.info.codec=t.info.pcmLittleEndian?`pcm-s32`:`pcm-s32be`;else if(d===`fl32`)t.info.codec=t.info.pcmLittleEndian?`pcm-f32`:`pcm-f32be`;else if(d===`fl64`)t.info.codec=t.info.pcmLittleEndian?`pcm-f64`:`pcm-f64be`;else if(d===`ipcm`){let e=t.info.pcmSampleSize;t.info.pcmLittleEndian?e===16?t.info.codec=`pcm-s16`:e===24?t.info.codec=`pcm-s24`:e===32?t.info.codec=`pcm-s32`:(k._warn(`Invalid ipcm sample size ${e}.`),t.info.codec=null):e===16?t.info.codec=`pcm-s16be`:e===24?t.info.codec=`pcm-s24be`:e===32?t.info.codec=`pcm-s32be`:(k._warn(`Invalid ipcm sample size ${e}.`),t.info.codec=null)}else if(d===`fpcm`){let e=t.info.pcmSampleSize;t.info.pcmLittleEndian?e===32?t.info.codec=`pcm-f32`:e===64?t.info.codec=`pcm-f64`:(k._warn(`Invalid fpcm sample size ${e}.`),t.info.codec=null):e===32?t.info.codec=`pcm-f32be`:e===64?t.info.codec=`pcm-f64be`:(k._warn(`Invalid fpcm sample size ${e}.`),t.info.codec=null)}else if(d===`lpcm`&&u!==null){let e=c+7>>3,n=!!(u&1),r=!!(u&2),i=u&4?-1:0;c>0&&c<=64&&(n?c===32&&(t.info.codec=r?`pcm-f32be`:`pcm-f32`):i&1<<e-1?e===1?t.info.codec=`pcm-s8`:e===2?t.info.codec=r?`pcm-s16be`:`pcm-s16`:e===3?t.info.codec=r?`pcm-s24be`:`pcm-s24`:e===4&&(t.info.codec=r?`pcm-s32be`:`pcm-s32`):e===1&&(t.info.codec=`pcm-u8`)),t.info.codec===null&&k._warn(`Unsupported PCM format.`)}else d===null?k._warn(`Unknown encrypted audio codec due to missing frma box.`):k._warn(`Unsupported audio codec (sample entry type '${i.name}').`)}}e.filePos=r+i.totalSize}}break;case`frma`:{let t=this.currentTrack;if(!t)break;t.frmaCodecString=G(e,4).toLowerCase()}break;case`schm`:{let t=this.currentTrack;if(!t)break;e.skip(4);let n=G(e,4);n===`cenc`||n===`cens`||n===`cbcs`?t.encryptionInfo={scheme:n,defaultKid:null,defaultIsProtected:null,defaultPerSampleIvSize:null,defaultConstantIv:null,defaultCryptByteBlock:null,defaultSkipByteBlock:null}:k._warn(`Unsupported encryption scheme '${n}'.`)}break;case`tenc`:{let t=this.currentTrack;if(!t||!t.encryptionInfo)break;let n=H(e);e.skip(3),e.skip(1);let r=H(e);if(n>0?(t.encryptionInfo.defaultCryptByteBlock=r>>4,t.encryptionInfo.defaultSkipByteBlock=r&15):(t.encryptionInfo.defaultCryptByteBlock=0,t.encryptionInfo.defaultSkipByteBlock=0),t.encryptionInfo.defaultIsProtected=H(e)!==0,t.encryptionInfo.defaultPerSampleIvSize=H(e),t.encryptionInfo.defaultKid=ie(V(e,16)),t.encryptionInfo.defaultIsProtected&&t.encryptionInfo.defaultPerSampleIvSize===0){let n=H(e),r=new Uint8Array(16);r.set(V(e,n),0),t.encryptionInfo.defaultConstantIv=r}}break;case`avcC`:{let t=this.currentTrack;if(!t||(r(t.info),n.contentSize===0))break;t.info.codecDescription=V(e,n.contentSize)}break;case`hvcC`:{let t=this.currentTrack;if(!t||(r(t.info),n.contentSize===0))break;t.info.codecDescription=V(e,n.contentSize)}break;case`vpcC`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`video`),e.skip(4);let n=H(e),i=H(e),a=H(e),o=a>>4,s=a>>1&7,c=a&1,l=H(e),u=H(e),d=H(e);t.info.vp9CodecInfo={profile:n,level:i,bitDepth:o,chromaSubsampling:s,videoFullRangeFlag:c,colourPrimaries:l,transferCharacteristics:u,matrixCoefficients:d}}break;case`av1C`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`video`),e.skip(1);let i=H(e),a=i>>5,o=i&31,s=H(e),c=s>>7,l=s>>6&1,u=s>>5&1,d=s>>4&1,f=s>>3&1,p=s>>2&1,m=s&3,h=a===2&&l?u?12:10:l?10:8;e.skip(1);let g=Sn(V(e,n.contentSize-4));t.info.av1CodecInfo={profile:a,level:o,tier:c,bitDepth:h,monochrome:d,chromaSubsamplingX:f,chromaSubsamplingY:p,chromaSamplePosition:m,videoFullRangeFlag:g?.videoFullRangeFlag??0,colourPrimaries:g?.colourPrimaries??2,transferCharacteristics:g?.transferCharacteristics??2,matrixCoefficients:g?.matrixCoefficients??2}}break;case`colr`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`video`);let n=G(e,4);if(n!==`nclx`&&n!==`nclc`)break;let i=U(e),a=U(e),o=U(e),s;n===`nclx`&&(s=!!(H(e)&128)),t.info.colorSpace={primaries:_[i],transfer:y[a],matrix:x[o],fullRange:s}}break;case`pasp`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`video`);let n=W(e),i=W(e);n>0&&i>0&&(n>i?t.info.squarePixelWidth=Math.round(t.info.width*n/i):t.info.squarePixelHeight=Math.round(t.info.height*i/n))}break;case`wave`:this.readContiguousBoxes(e.slice(o,n.contentSize));break;case`esds`:{let t=this.currentTrack;if(!t||t.info?.type!==`audio`)break;e.skip(4),r(H(e)===3),ci(e),e.skip(2);let n=H(e),i=!!(n&128),a=!!(n&64),o=!!(n&32);if(i&&e.skip(2),a){let t=H(e);e.skip(t)}o&&e.skip(2),r(H(e)===4);let s=ci(e),c=e.filePos,l=H(e);if(l===64||l===103?(t.info.codec=`aac`,t.info.aacCodecInfo={isMpeg2:l===103,objectType:null}):l===105||l===107?t.info.codec=`mp3`:l===221?t.info.codec=`vorbis`:l===169?t.info.codec=`dts`:k._warn(`Unsupported audio codec (objectTypeIndication ${l}) - discarding track.`),e.skip(12),s>e.filePos-c){r(H(e)===5);let n=ci(e);if(t.info.codecDescription=V(e,n),t.info.codec===`aac`){let e=kt(t.info.codecDescription);e.outputNumberOfChannels!==null&&(t.info.numberOfChannels=e.outputNumberOfChannels),e.outputSampleRate!==null&&(t.info.sampleRate=e.outputSampleRate)}}}break;case`enda`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`),t.info.pcmLittleEndian=!!(U(e)&255)}break;case`pcmC`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`),e.skip(4);let n=H(e);t.info.pcmLittleEndian=!!(n&1),t.info.pcmSampleSize=H(e)}break;case`dOps`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`),e.skip(1);let n=H(e),i=U(e),a=W(e),o=pu(e),s=H(e),c;c=s===0?new Uint8Array:V(e,2+n);let l=new Uint8Array(19+c.byteLength),u=new DataView(l.buffer);u.setUint32(0,1332770163,!1),u.setUint32(4,1214603620,!1),u.setUint8(8,1),u.setUint8(9,n),u.setUint16(10,i,!0),u.setUint32(12,a,!0),u.setInt16(16,o,!0),u.setUint8(18,s),l.set(c,19),t.info.codecDescription=l,t.info.numberOfChannels=n}break;case`dfLa`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`),e.skip(4);let n=e.filePos;for(;e.filePos<s;){let n=H(e),r=fu(e);if((n&127)===An.STREAMINFO){e.skip(10);let n=W(e),r=n>>>12,i=(n>>9&7)+1;t.info.sampleRate=r,t.info.numberOfChannels=i,e.skip(20)}else e.skip(r);if(n&128)break}let i=e.filePos;e.filePos=n;let a=V(e,i-n),o=new Uint8Array(4+a.byteLength);new DataView(o.buffer).setUint32(0,1716281667,!1),o.set(a,4),t.info.codecDescription=o}break;case`dac3`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`);let n=new A(V(e,3)),i=n.readBits(2);n.skipBits(8);let a=n.readBits(3),o=n.readBits(1);i<3&&(t.info.sampleRate=Rt[i]),t.info.numberOfChannels=Nn[a]+o}break;case`dec3`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`);let i=Vn(V(e,n.contentSize));if(!i){k._warn(`Invalid dec3 box contents, ignoring.`);break}let a=Hn(i);a!==null&&(t.info.sampleRate=a),t.info.numberOfChannels=Un(i)}break;case`ddts`:{let t=this.currentTrack;if(!t)break;r(t.info?.type===`audio`);let i=or(V(e,Math.min(n.contentSize,20)));if(!i){k._warn(`Invalid ddts box contents, ignoring.`);break}t.info.sampleRate=i.sampleRate,i.numberOfChannels!==null&&(t.info.numberOfChannels=i.numberOfChannels)}break;case`stts`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4);let n=W(e),r=0,i=0;for(let a=0;a<n;a++){let n=W(e),a=W(e);t.sampleTable.sampleTimingEntries.push({startIndex:r,startDecodeTimestamp:i,count:n,delta:a}),r+=n,i+=n*a}}break;case`ctts`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4);let n=W(e),r=0;for(let i=0;i<n;i++){let n=W(e),i=gu(e);t.sampleTable.sampleCompositionTimeOffsets.push({startIndex:r,count:n,offset:i}),r+=n}}break;case`stsz`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4);let n=W(e),r=W(e);if(n===0)for(let n=0;n<r;n++){let n=W(e);t.sampleTable.sampleSizes.push(n)}else t.sampleTable.sampleSizes.push(n)}break;case`stz2`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4),e.skip(3);let n=H(e),r=W(e),i=new A(V(e,Math.ceil(r*n/8)));for(let e=0;e<r;e++){let e=i.readBits(n);t.sampleTable.sampleSizes.push(e)}}break;case`stss`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4),t.sampleTable.keySampleIndices=[];let n=W(e);for(let r=0;r<n;r++){let n=W(e)-1;t.sampleTable.keySampleIndices.push(n)}t.sampleTable.keySampleIndices[0]!==0&&t.sampleTable.keySampleIndices.unshift(0)}break;case`stsc`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4);let n=W(e);for(let r=0;r<n;r++){let n=W(e)-1,r=W(e),i=W(e);t.sampleTable.sampleToChunk.push({startSampleIndex:-1,startChunkIndex:n,samplesPerChunk:r,sampleDescriptionIndex:i})}let r=0;for(let e=0;e<t.sampleTable.sampleToChunk.length;e++)if(t.sampleTable.sampleToChunk[e].startSampleIndex=r,e<t.sampleTable.sampleToChunk.length-1){let n=t.sampleTable.sampleToChunk[e+1].startChunkIndex-t.sampleTable.sampleToChunk[e].startChunkIndex;r+=n*t.sampleTable.sampleToChunk[e].samplesPerChunk}}break;case`stco`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4);let n=W(e);for(let r=0;r<n;r++){let n=W(e);t.sampleTable.chunkOffsets.push(n)}}break;case`co64`:{let t=this.currentTrack;if(!t||!t.sampleTable)break;e.skip(4);let n=W(e);for(let r=0;r<n;r++){let n=yu(e);t.sampleTable.chunkOffsets.push(n)}}break;case`mvex`:this.isFragmented=!0,this.readContiguousBoxes(e.slice(o,n.contentSize));break;case`mehd`:{let t=H(e);e.skip(3);let n=t===1?yu(e):W(e);this.movieDurationInTimescale=n}break;case`trex`:{e.skip(4);let t=W(e),n=W(e),r=W(e),i=W(e),a=W(e);this.fragmentTrackDefaults.push({trackId:t,defaultSampleDescriptionIndex:n,defaultSampleDuration:r,defaultSampleSize:i,defaultSampleFlags:a})}break;case`tfra`:{let t=H(e);e.skip(3);let n=W(e),r=this.tracks.find(e=>e.id===n);if(!r)break;let i=W(e),a=(i&48)>>4,o=(i&12)>>2,s=i&3,c=[H,U,fu,W],l=c[a],u=c[o],d=c[s],f=W(e);for(let n=0;n<f;n++){let n=t===1?yu(e):W(e),i=t===1?yu(e):W(e);l(e),u(e),d(e),r.fragmentLookupTable.push({timestamp:n,moofOffset:i})}r.fragmentLookupTable.sort((e,t)=>e.timestamp-t.timestamp);for(let e=0;e<r.fragmentLookupTable.length-1;e++){let t=r.fragmentLookupTable[e],n=r.fragmentLookupTable[e+1];t.timestamp===n.timestamp&&(r.fragmentLookupTable.splice(e+1,1),e--)}}break;case`moof`:this.currentFragment={moofOffset:t,moofSize:n.totalSize,implicitBaseDataOffset:t,trackData:new Map,psshBoxes:[]},this.readContiguousBoxes(e.slice(o,n.contentSize)),this.lastReadFragment=this.currentFragment,this.currentFragment=null;break;case`traf`:if(r(this.currentFragment),this.readContiguousBoxes(e.slice(o,n.contentSize)),this.currentTrack){let e=this.currentFragment.trackData.get(this.currentTrack.id);cond:if(e){if(e.samples.length===0){this.currentFragment.trackData.delete(this.currentTrack.id);break cond}e.presentationTimestamps=e.samples.map((e,t)=>({presentationTimestamp:e.presentationTimestamp,sampleIndex:t})).sort((e,t)=>e.presentationTimestamp-t.presentationTimestamp);for(let t=0;t<e.presentationTimestamps.length;t++){let n=e.presentationTimestamps[t],r=e.samples[n.sampleIndex];e.firstKeyFrameTimestamp===null&&r.isKeyFrame&&(e.firstKeyFrameTimestamp=r.presentationTimestamp),t<e.presentationTimestamps.length-1&&(r.duration=e.presentationTimestamps[t+1].presentationTimestamp-n.presentationTimestamp)}let t=e.samples[e.presentationTimestamps[0].sampleIndex],n=e.samples[a(e.presentationTimestamps).sampleIndex];e.startTimestamp=t.presentationTimestamp,e.endTimestamp=n.presentationTimestamp+n.duration;let{currentFragmentState:i}=this.currentTrack;r(i),i.startTimestamp!==null&&(Ai(e,i.startTimestamp),e.startTimestampIsFinal=!0),i.encryptionAuxInfo&&!e.samples[0].encryption&&(e.encryptionAuxInfo=i.encryptionAuxInfo)}this.currentTrack.currentFragmentState=null,this.currentTrack=null}break;case`pssh`:{if(this.input._formatOptions.isobmff?._suppressPsshParsing)break;let t=ri(V(e,n.contentSize));this.currentFragment?this.currentFragment.psshBoxes.push(t):this.currentTrack||this.psshBoxes.push(t)}break;case`tfhd`:{r(this.currentFragment),e.skip(1);let t=fu(e),n=!!(t&1),i=!!(t&2),a=!!(t&8),o=!!(t&16),s=!!(t&32),c=!!(t&65536),l=!!(t&131072),u=W(e),d=this.tracks.find(e=>e.id===u);if(!d)break;let f=this.fragmentTrackDefaults.find(e=>e.trackId===u);this.currentTrack=d,d.currentFragmentState={baseDataOffset:this.currentFragment.implicitBaseDataOffset,sampleDescriptionIndex:f?.defaultSampleDescriptionIndex??null,defaultSampleDuration:f?.defaultSampleDuration??null,defaultSampleSize:f?.defaultSampleSize??null,defaultSampleFlags:f?.defaultSampleFlags??null,startTimestamp:null,encryptionAuxInfo:null},n?d.currentFragmentState.baseDataOffset=yu(e):l&&(d.currentFragmentState.baseDataOffset=this.currentFragment.moofOffset),i&&(d.currentFragmentState.sampleDescriptionIndex=W(e)),a&&(d.currentFragmentState.defaultSampleDuration=W(e)),o&&(d.currentFragmentState.defaultSampleSize=W(e)),s&&(d.currentFragmentState.defaultSampleFlags=W(e)),c&&(d.currentFragmentState.defaultSampleDuration=0)}break;case`tfdt`:{let t=this.currentTrack;if(!t)break;r(t.currentFragmentState);let n=H(e);e.skip(3);let i=n===0?W(e):yu(e);t.currentFragmentState.startTimestamp=i}break;case`trun`:{let t=this.currentTrack;if(!t)break;r(this.currentFragment),r(t.currentFragmentState);let n=H(e),i=fu(e),a=!!(i&1),o=!!(i&4),s=!!(i&256),c=!!(i&512),l=!!(i&1024),u=!!(i&2048),d=W(e),f=null;a&&(f=gu(e));let p=null;o&&(p=W(e));let m;this.currentFragment.trackData.has(t.id)?(m=this.currentFragment.trackData.get(t.id),f!==null&&(m.currentOffset=t.currentFragmentState.baseDataOffset+f)):(m={track:t,currentTimestamp:0,currentOffset:t.currentFragmentState.baseDataOffset+(f??0),startTimestamp:0,endTimestamp:0,firstKeyFrameTimestamp:null,samples:[],presentationTimestamps:[],startTimestampIsFinal:!1,encryptionAuxInfo:null},this.currentFragment.trackData.set(t.id,m));for(let i=0;i<d;i++){let a;s?a=W(e):(r(t.currentFragmentState.defaultSampleDuration!==null),a=t.currentFragmentState.defaultSampleDuration);let o;c?o=W(e):(r(t.currentFragmentState.defaultSampleSize!==null),o=t.currentFragmentState.defaultSampleSize);let d;l?d=W(e):(r(t.currentFragmentState.defaultSampleFlags!==null),d=t.currentFragmentState.defaultSampleFlags),i===0&&p!==null&&(d=p);let f=0;u&&(f=n===0?W(e):gu(e));let h=!(d&65536);m.samples.push({presentationTimestamp:m.currentTimestamp+f,duration:a,byteOffset:m.currentOffset,byteSize:o,isKeyFrame:h,encryption:null}),m.currentOffset+=o,m.currentTimestamp+=a}this.currentFragment.implicitBaseDataOffset=m.currentOffset}break;case`saiz`:{let t=this.currentTrack;if(!t||!t.encryptionInfo)break;if(e.skip(1),fu(e)&1){let n=G(e,4),r=W(e);if(n!==t.encryptionInfo.scheme||r!==0)break}let n=H(e),r=W(e),i=null;n===0&&r>0&&(i=V(e,r));let a=Ni(t);a.defaultSampleInfoSize=n,a.sampleSizes=i,a.sampleCount=r}break;case`saio`:{let t=this.currentTrack;if(!t||!t.encryptionInfo)break;let n=H(e);if(fu(e)&1){let n=G(e,4),r=W(e);if(n!==t.encryptionInfo.scheme||r!==0)break}let r=W(e);if(r===0)break;r>1&&k._warn(`Multiple saio entries are not supported; using the first offset only.`);let i=n===0?W(e):Number(yu(e));this.currentFragment&&(i+=this.currentFragment.moofOffset);let a=Ni(t);a.offset=i}break;case`senc`:{let t=this.currentTrack;if(!t||!t.encryptionInfo)break;r(this.currentFragment);let n=this.currentFragment.trackData.get(t.id);if(!n)break;e.skip(1);let i=!!(fu(e)&2),a=W(e),o=t.encryptionInfo.defaultPerSampleIvSize;r(o!==null);for(let r=0;r<Math.min(a,n.samples.length);r++){let a=new Uint8Array(16);o>0?a.set(V(e,o),0):a.set(t.encryptionInfo.defaultConstantIv,0);let s=null;if(i){let t=U(e);s=[];for(let n=0;n<t;n++){let t=U(e),n=W(e);s.push({clearLen:t,protectedLen:n})}}let c=n.samples[r];c.encryption={iv:a,subsamples:s}}}break;case`udta`:{let t=this.iterateContiguousBoxes(e.slice(o,n.contentSize));for(let{boxInfo:e,slice:n}of t){if(e.name!==`meta`&&!this.currentTrack){let t=n.filePos;this.metadataTags.raw??={},e.name[0]===`©`?this.metadataTags.raw[e.name]??=li(n):this.metadataTags.raw[e.name]??=V(n,e.contentSize),n.filePos=t}switch(e.name){case`meta`:n.skip(-e.headerSize),this.traverseBox(n);break;case`©nam`:case`name`:this.currentTrack?this.currentTrack.name=f.decode(V(n,e.contentSize)):this.metadataTags.title??=li(n);break;case`©des`:this.currentTrack||(this.metadataTags.description??=li(n));break;case`©ART`:this.currentTrack||(this.metadataTags.artist??=li(n));break;case`©alb`:this.currentTrack||(this.metadataTags.album??=li(n));break;case`albr`:this.currentTrack||(this.metadataTags.albumArtist??=li(n));break;case`©gen`:this.currentTrack||(this.metadataTags.genre??=li(n));break;case`©day`:if(!this.currentTrack){let e=new Date(li(n));Number.isNaN(e.getTime())||(this.metadataTags.date??=e)}break;case`©cmt`:this.currentTrack||(this.metadataTags.comment??=li(n));break;case`©lyr`:this.currentTrack||(this.metadataTags.lyrics??=li(n))}}}break;case`meta`:{if(this.currentTrack)break;let t=W(e)!==0;this.currentMetadataKeys=new Map,t?this.readContiguousBoxes(e.slice(o,n.contentSize)):this.readContiguousBoxes(e.slice(o+4,n.contentSize-4)),this.currentMetadataKeys=null}break;case`keys`:{if(!this.currentMetadataKeys)break;e.skip(4);let t=W(e);for(let n=0;n<t;n++){let t=W(e);e.skip(4);let r=f.decode(V(e,t-8));this.currentMetadataKeys.set(n+1,r)}}break;case`ilst`:{if(!this.currentMetadataKeys)break;let t=this.iterateContiguousBoxes(e.slice(o,n.contentSize));for(let{boxInfo:e,slice:n}of t){let t=e.name,r=(t.charCodeAt(0)<<24)+(t.charCodeAt(1)<<16)+(t.charCodeAt(2)<<8)+t.charCodeAt(3);this.currentMetadataKeys.has(r)&&(t=this.currentMetadataKeys.get(r));let i=ui(n);switch(this.metadataTags.raw??={},this.metadataTags.raw[t]??=i,t){case`©nam`:case`titl`:case`com.apple.quicktime.title`:case`title`:typeof i==`string`&&(this.metadataTags.title??=i);break;case`©des`:case`desc`:case`dscp`:case`com.apple.quicktime.description`:case`description`:typeof i==`string`&&(this.metadataTags.description??=i);break;case`©ART`:case`com.apple.quicktime.artist`:case`artist`:typeof i==`string`&&(this.metadataTags.artist??=i);break;case`©alb`:case`albm`:case`com.apple.quicktime.album`:case`album`:typeof i==`string`&&(this.metadataTags.album??=i);break;case`aART`:case`album_artist`:typeof i==`string`&&(this.metadataTags.albumArtist??=i);break;case`©cmt`:case`com.apple.quicktime.comment`:case`comment`:typeof i==`string`&&(this.metadataTags.comment??=i);break;case`©gen`:case`gnre`:case`com.apple.quicktime.genre`:case`genre`:typeof i==`string`&&(this.metadataTags.genre??=i);break;case`©lyr`:case`lyrics`:typeof i==`string`&&(this.metadataTags.lyrics??=i);break;case`©day`:case`rldt`:case`com.apple.quicktime.creationdate`:case`date`:if(typeof i==`string`){let e=new Date(i);Number.isNaN(e.getTime())||(this.metadataTags.date??=e)}break;case`covr`:case`com.apple.quicktime.artwork`:i instanceof xt?(this.metadataTags.images??=[],this.metadataTags.images.push({data:i.data,kind:`coverFront`,mimeType:i.mimeType})):i instanceof Uint8Array&&(this.metadataTags.images??=[],this.metadataTags.images.push({data:i,kind:`coverFront`,mimeType:`image/*`}));break;case`track`:if(typeof i==`string`){let e=i.split(`/`),t=Number.parseInt(e[0],10),n=e[1]&&Number.parseInt(e[1],10);Number.isInteger(t)&&t>0&&(this.metadataTags.trackNumber??=t),n&&Number.isInteger(n)&&n>0&&(this.metadataTags.tracksTotal??=n)}break;case`trkn`:if(i instanceof Uint8Array&&i.length>=6){let e=d(i),t=e.getUint16(2,!1),n=e.getUint16(4,!1);t>0&&(this.metadataTags.trackNumber??=t),n>0&&(this.metadataTags.tracksTotal??=n)}break;case`disc`:case`disk`:if(i instanceof Uint8Array&&i.length>=6){let e=d(i),t=e.getUint16(2,!1),n=e.getUint16(4,!1);t>0&&(this.metadataTags.discNumber??=t),n>0&&(this.metadataTags.discsTotal??=n)}}}}}return e.filePos=s,!0}},Ci=class{constructor(e){this.internalTrack=e,this.packetToSampleIndex=new WeakMap,this.packetToFragmentLocation=new WeakMap}getId(){return this.internalTrack.id}getNumber(){let e=this.internalTrack.demuxer,t=this.internalTrack.trackBacking.getType(),n=0;for(let r of e.tracks)if(r.trackBacking.getType()===t&&n++,r===this.internalTrack)break;return n}getCodec(){throw Error(`Not implemented on base class.`)}getInternalCodecId(){return this.internalTrack.internalCodecId}getName(){return this.internalTrack.name}getLanguageCode(){return this.internalTrack.languageCode}getTimeResolution(){return this.internalTrack.timescale}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getDisposition(){return this.internalTrack.disposition}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){let e=this.internalTrack;return e.durationInMediaTimescale<=0?null:(r(e.trackBacking),((await e.trackBacking.getFirstPacket({metadataOnly:!0}))?.timestamp??0)+e.durationInMediaTimescale/e.timescale)}async getLiveRefreshInterval(){return null}async getFirstPacket(e){let t=await this.fetchPacketForSampleIndex(0,e);return t||!this.internalTrack.demuxer.isFragmented?t:this.performFragmentedLookup(null,e=>e.trackData.get(this.internalTrack.id)?{sampleIndex:0,correctSampleFound:!0}:{sampleIndex:-1,correctSampleFound:!1},-1/0,1/0,e)}mapTimestampIntoTimescale(e){return xe(e*this.internalTrack.timescale)+this.internalTrack.editListOffset}async getPacket(e,t){let n=this.mapTimestampIntoTimescale(e),r=this.internalTrack.demuxer.getSampleTableForTrack(this.internalTrack),i=Ei(r,n),a=await this.fetchPacketForSampleIndex(i,t);return!Mi(r)||!this.internalTrack.demuxer.isFragmented?a:this.performFragmentedLookup(null,e=>{let t=e.trackData.get(this.internalTrack.id);if(!t)return{sampleIndex:-1,correctSampleFound:!1};let r=w(t.presentationTimestamps,n,e=>e.presentationTimestamp);return{sampleIndex:r===-1?-1:t.presentationTimestamps[r].sampleIndex,correctSampleFound:r!==-1&&n<t.endTimestamp}},n,n,t)}async getNextPacket(e,t){let n=this.packetToSampleIndex.get(e);if(n!==void 0)return this.fetchPacketForSampleIndex(n+1,t);let r=this.packetToFragmentLocation.get(e);if(r===void 0)throw Error(`Packet was not created from this track.`);return this.performFragmentedLookup(r.fragment,e=>{if(e===r.fragment){let t=e.trackData.get(this.internalTrack.id);if(r.sampleIndex+1<t.samples.length)return{sampleIndex:r.sampleIndex+1,correctSampleFound:!0}}else if(e.trackData.get(this.internalTrack.id))return{sampleIndex:0,correctSampleFound:!0};return{sampleIndex:-1,correctSampleFound:!1}},-1/0,1/0,t)}async getKeyPacket(e,t){let n=this.mapTimestampIntoTimescale(e),r=this.internalTrack.demuxer.getSampleTableForTrack(this.internalTrack),i=Di(r,n),a=await this.fetchPacketForSampleIndex(i,t);return!Mi(r)||!this.internalTrack.demuxer.isFragmented?a:this.performFragmentedLookup(null,e=>{let t=e.trackData.get(this.internalTrack.id);if(!t)return{sampleIndex:-1,correctSampleFound:!1};let r=de(t.presentationTimestamps,e=>t.samples[e.sampleIndex].isKeyFrame&&e.presentationTimestamp<=n);return{sampleIndex:r===-1?-1:t.presentationTimestamps[r].sampleIndex,correctSampleFound:r!==-1&&n<t.endTimestamp}},n,n,t)}async getNextKeyPacket(e,t){let n=this.packetToSampleIndex.get(e);if(n!==void 0){let e=ki(this.internalTrack.demuxer.getSampleTableForTrack(this.internalTrack),n);return this.fetchPacketForSampleIndex(e,t)}let i=this.packetToFragmentLocation.get(e);if(i===void 0)throw Error(`Packet was not created from this track.`);return this.performFragmentedLookup(i.fragment,e=>{if(e===i.fragment){let t=e.trackData.get(this.internalTrack.id).samples.findIndex((e,t)=>e.isKeyFrame&&t>i.sampleIndex);if(t!==-1)return{sampleIndex:t,correctSampleFound:!0}}else{let t=e.trackData.get(this.internalTrack.id);if(t&&t.firstKeyFrameTimestamp!==null){let e=t.samples.findIndex(e=>e.isKeyFrame);return r(e!==-1),{sampleIndex:e,correctSampleFound:!0}}}return{sampleIndex:-1,correctSampleFound:!1}},-1/0,1/0,t)}async fetchPacketForSampleIndex(e,t){if(e===-1)return null;let n=Oi(this.internalTrack.demuxer.getSampleTableForTrack(this.internalTrack),e);if(!n)return null;let r;if(t.metadataOnly)r=ti;else{let t=this.internalTrack.demuxer.reader.requestSlice(n.sampleOffset,n.sampleSize);if(O(t)&&(t=await t),!t)return null;if(r=V(t,n.sampleSize),this.internalTrack.encryptionInfo){let t=null;if(this.internalTrack.encryptionAuxInfo){let n=await Pi(this.internalTrack.demuxer.reader,this.internalTrack.encryptionInfo,this.internalTrack.encryptionAuxInfo);e<n.length&&(t=n[e])}t??=Fi(this.internalTrack.encryptionInfo),t&&(r=await Ii(this.internalTrack,t,r,null))}}let i=(n.presentationTimestamp-this.internalTrack.editListOffset)/this.internalTrack.timescale,a=n.duration/this.internalTrack.timescale,o=new I(r,n.isKeyFrame?`key`:`delta`,i,a,e,n.sampleSize);return this.packetToSampleIndex.set(o,e),o}async fetchPacketInFragment(e,t,n){if(t===-1)return null;let i=e.trackData.get(this.internalTrack.id).samples[t];r(i);let a;if(n.metadataOnly)a=ti;else{let t=this.internalTrack.demuxer.reader.requestSlice(i.byteOffset,i.byteSize);if(O(t)&&(t=await t),!t)return null;if(a=V(t,i.byteSize),this.internalTrack.encryptionInfo){let t=i.encryption??Fi(this.internalTrack.encryptionInfo);t&&(a=await Ii(this.internalTrack,t,a,e))}}let o=(i.presentationTimestamp-this.internalTrack.editListOffset)/this.internalTrack.timescale,s=i.duration/this.internalTrack.timescale,c=new I(a,i.isKeyFrame?`key`:`delta`,o,s,e.moofOffset+t,i.byteSize);return this.packetToFragmentLocation.set(c,{fragment:e,sampleIndex:t}),c}async performFragmentedLookup(e,t,n,i,a){let o=this.internalTrack.demuxer,s=null,c=null,l=-1;if(e){let{sampleIndex:n,correctSampleFound:r}=t(e);if(r)return this.fetchPacketInFragment(e,n,a);n!==-1&&(c=e,l=n)}let u=w(this.internalTrack.fragmentLookupTable,n,e=>e.timestamp),d=u===-1?null:this.internalTrack.fragmentLookupTable[u],f=w(this.internalTrack.fragmentPositionCache,n,e=>e.startTimestamp),p=f===-1?null:this.internalTrack.fragmentPositionCache[f],m=Math.max(d?.moofOffset??0,p?.moofOffset??0)||null,h;for(e?m===null||e.moofOffset>=m?(h=e.moofOffset+e.moofSize,s=e):h=m:h=m??0;;){if(s){let e=s.trackData.get(this.internalTrack.id);if(e&&e.startTimestamp>i)break}let e=o.reader.requestSliceRange(h,8,16);if(O(e)&&(e=await e),!e)break;let n=h,r=ai(e);if(!r)break;if(r.name===`moof`){s=await o.readFragment(n);let{sampleIndex:e,correctSampleFound:r}=t(s);if(r)return this.fetchPacketInFragment(s,e,a);e!==-1&&(c=s,l=e)}h=n+r.totalSize}if(d&&(!c||c.moofOffset<d.moofOffset)){let e=this.internalTrack.fragmentLookupTable[u-1];r(!e||e.timestamp<d.timestamp);let n=e?.timestamp??-1/0;return this.performFragmentedLookup(null,t,n,i,a)}return c?this.fetchPacketInFragment(c,l,a):null}},wi=class extends Ci{constructor(e){super(e),this.decoderConfigPromise=null,this.internalTrack=e}getType(){return`video`}getCodec(){return this.internalTrack.info.codec}getCodedWidth(){return this.internalTrack.info.width}getCodedHeight(){return this.internalTrack.info.height}getSquarePixelWidth(){return this.internalTrack.info.squarePixelWidth}getSquarePixelHeight(){return this.internalTrack.info.squarePixelHeight}getRotation(){return this.internalTrack.rotation}async getColorSpace(){let e=await this.getDecoderConfig();return e?{primaries:e.colorSpace?.primaries,transfer:e.colorSpace?.transfer,matrix:e.colorSpace?.matrix,fullRange:e.colorSpace?.fullRange}:this.internalTrack.info.colorSpace}async canBeTransparent(){return this.internalTrack.info.codec===`prores`&&(this.internalTrack.info.proresFormat===`ap4h`||this.internalTrack.info.proresFormat===`ap4x`)}async getDecoderConfig(){return this.internalTrack.info.codec?this.decoderConfigPromise??=(async()=>{if(this.internalTrack.info.codec===`avc`&&!this.internalTrack.info.codecDescription){let e=await this.getFirstPacket({});this.internalTrack.info.avcCodecInfo=e&&Yt(e.data)}else if(this.internalTrack.info.codec===`hevc`&&!this.internalTrack.info.codecDescription){let e=await this.getFirstPacket({});this.internalTrack.info.hevcCodecInfo=e&&on(e.data)}else if(this.internalTrack.info.codec===`vp9`&&(!this.internalTrack.info.vp9CodecInfo||!bn(this.internalTrack.info.vp9CodecInfo))){let e=await this.getFirstPacket({}),t=e&&yn(e.data);t&&(this.internalTrack.info.vp9CodecInfo={...this.internalTrack.info.vp9CodecInfo??t,videoFullRangeFlag:t.videoFullRangeFlag,colourPrimaries:t.colourPrimaries,transferCharacteristics:t.transferCharacteristics,matrixCoefficients:t.matrixCoefficients})}else if(this.internalTrack.info.codec===`av1`&&(!this.internalTrack.info.av1CodecInfo||!Cn(this.internalTrack.info.av1CodecInfo))){let e=await this.getFirstPacket({}),t=e&&Sn(e.data);t&&(this.internalTrack.info.av1CodecInfo=t)}else if(this.internalTrack.info.codec===`prores`&&!this.internalTrack.info.proresCodecInfo){let e=await this.getFirstPacket({});this.internalTrack.info.proresCodecInfo=e&&wn(e.data)}if(!S(this.internalTrack.info.colorSpace)){let e=wr(this.internalTrack.info);this.internalTrack.info.colorSpace.primaries??=e.primaries,this.internalTrack.info.colorSpace.transfer??=e.transfer,this.internalTrack.info.colorSpace.matrix??=e.matrix,this.internalTrack.info.colorSpace.fullRange??=e.fullRange}let e={codec:Cr(this.internalTrack.info),codedWidth:this.internalTrack.info.width,codedHeight:this.internalTrack.info.height,description:this.internalTrack.info.codecDescription??void 0,colorSpace:this.internalTrack.info.colorSpace};return(this.internalTrack.info.width!==this.internalTrack.info.squarePixelWidth||this.internalTrack.info.height!==this.internalTrack.info.squarePixelHeight)&&(e.displayAspectWidth=this.internalTrack.info.squarePixelWidth,e.displayAspectHeight=this.internalTrack.info.squarePixelHeight),e})():null}},Ti=class extends Ci{constructor(e){super(e),this.decoderConfigPromise=null,this.internalTrack=e}getType(){return`audio`}getCodec(){return this.internalTrack.info.codec}getNumberOfChannels(){return this.internalTrack.info.numberOfChannels}getSampleRate(){return this.internalTrack.info.sampleRate}async getDecoderConfig(){return this.internalTrack.info.codec?this.decoderConfigPromise??=(async()=>{if(this.internalTrack.info.codec===`dts`&&!this.internalTrack.info.dtsFormat){let e=await this.getFirstPacket({});this.internalTrack.info.dtsFormat=e&&rr(e.data)}return{codec:Er(this.internalTrack.info),numberOfChannels:this.internalTrack.info.numberOfChannels,sampleRate:this.internalTrack.info.sampleRate,description:this.internalTrack.info.codecDescription??void 0}})():null}},Ei=(e,t)=>{if(e.presentationTimestamps){let n=w(e.presentationTimestamps,t,e=>e.presentationTimestamp);return n===-1?-1:e.presentationTimestamps[n].sampleIndex}{let n=w(e.sampleTimingEntries,t,e=>e.startDecodeTimestamp);if(n===-1)return-1;let r=e.sampleTimingEntries[n];return r.startIndex+Math.min(Math.floor((t-r.startDecodeTimestamp)/r.delta),r.count-1)}},Di=(e,t)=>{if(!e.keySampleIndices)return Ei(e,t);if(e.presentationTimestamps){let n=w(e.presentationTimestamps,t,e=>e.presentationTimestamp);if(n===-1)return-1;for(let t=n;t>=0;t--){let n=e.presentationTimestamps[t].sampleIndex;if(se(e.keySampleIndices,n,e=>e)!==-1)return n}return-1}{let n=Ei(e,t),r=w(e.keySampleIndices,n,e=>e);return e.keySampleIndices[r]??-1}},Oi=(e,t)=>{let n=w(e.sampleTimingEntries,t,e=>e.startIndex),i=e.sampleTimingEntries[n];if(!i||i.startIndex+i.count<=t)return null;let a=i.startDecodeTimestamp+(t-i.startIndex)*i.delta,o=w(e.sampleCompositionTimeOffsets,t,e=>e.startIndex),s=e.sampleCompositionTimeOffsets[o];s&&t-s.startIndex<s.count&&(a+=s.offset);let c=e.sampleSizes[Math.min(t,e.sampleSizes.length-1)],l=w(e.sampleToChunk,t,e=>e.startSampleIndex),u=e.sampleToChunk[l];r(u);let d=u.startChunkIndex+Math.floor((t-u.startSampleIndex)/u.samplesPerChunk),f=e.chunkOffsets[d],p=u.startSampleIndex+(d-u.startChunkIndex)*u.samplesPerChunk,m=0,h=f;if(e.sampleSizes.length===1)h+=c*(t-p),m+=c*u.samplesPerChunk;else for(let n=p;n<p+u.samplesPerChunk;n++){let r=e.sampleSizes[n];n<t&&(h+=r),m+=r}let g=i.delta;if(e.presentationTimestamps){let n=e.presentationTimestampIndexMap[t];r(n!==void 0),n<e.presentationTimestamps.length-1&&(g=e.presentationTimestamps[n+1].presentationTimestamp-a)}return{presentationTimestamp:a,duration:g,sampleOffset:h,sampleSize:c,chunkOffset:f,chunkSize:m,isKeyFrame:!e.keySampleIndices||se(e.keySampleIndices,t,e=>e)!==-1}},ki=(e,t)=>{if(!e.keySampleIndices)return t+1;let n=w(e.keySampleIndices,t,e=>e);return e.keySampleIndices[n+1]??-1},Ai=(e,t)=>{e.startTimestamp+=t,e.endTimestamp+=t;for(let n of e.samples)n.presentationTimestamp+=t;for(let n of e.presentationTimestamps)n.presentationTimestamp+=t},ji=e=>{let[t,n]=e,r=Math.atan2(n,t);return Number.isFinite(r)?180/Math.PI*r:0},Mi=e=>e.sampleSizes.length===0,Ni=e=>e.currentFragmentState?e.currentFragmentState.encryptionAuxInfo??={defaultSampleInfoSize:0,sampleSizes:null,sampleCount:0,offset:null,resolved:null}:e.encryptionAuxInfo??={defaultSampleInfoSize:0,sampleSizes:null,sampleCount:0,offset:null,resolved:null},Pi=async(e,t,n)=>{if(n.resolved)return n.resolved;if(n.offset===null||n.sampleCount===0)throw Error(`Incomplete saiz/saio info; cannot resolve encryption data.`);let i=0;if(n.defaultSampleInfoSize>0)i=n.defaultSampleInfoSize*n.sampleCount;else{r(n.sampleSizes);for(let e=0;e<n.sampleCount;e++)i+=n.sampleSizes[e]}let a=e.requestSlice(n.offset,i);if(O(a)&&(a=await a),!a)throw Error(`Failed to read auxiliary encryption info.`);let o=t.defaultPerSampleIvSize;r(o!==null);let s=[];for(let e=0;e<n.sampleCount;e++){let r=n.defaultSampleInfoSize>0?n.defaultSampleInfoSize:n.sampleSizes[e],i=new Uint8Array(16);o>0?i.set(V(a,o),0):i.set(t.defaultConstantIv,0);let c=null;if(r>o){let e=U(a);c=[];for(let t=0;t<e;t++){let e=U(a),t=W(a);c.push({clearLen:e,protectedLen:t})}}s.push({iv:i,subsamples:c})}return n.resolved=s,s},Fi=e=>e.defaultConstantIv?{iv:e.defaultConstantIv,subsamples:null}:null,Ii=async(e,t,n,i)=>{r(e.encryptionInfo);let a=e.encryptionInfo;r(a.defaultKid!==null);let o=a.defaultKid,s,c=e.demuxer.decryptionKeyCache.get(o);if(c)s=await c;else{if(!e.demuxer.input._formatOptions.isobmff?.resolveKeyId)throw Error(`Encrypted media samples encountered. To decrypt them, please provide a callback for InputOptions.formatOptions.isobmff.resolveKeyId.`);let t=(async()=>{let t=e.demuxer.psshBoxes;if(i){t=[...t,...i.psshBoxes].filter(e=>e.keyIds===null||e.keyIds.includes(o));for(let e=0;e<t.length-1;e++)for(let n=e+1;n<t.length;n++)ii(t[e],t[n])&&(t.splice(n,1),n--)}let n=await e.demuxer.input._formatOptions.isobmff.resolveKeyId({keyId:o,psshBoxes:t});if(!(typeof n==`string`&&n.length===32&&re.test(n)||n instanceof Uint8Array&&n.byteLength===16))throw TypeError(`resolveKeyId must return a 32-character hex string or a 16-byte Uint8Array containing the decryption key.`);return n instanceof Uint8Array?n:ae(n)})();e.demuxer.decryptionKeyCache.set(o,t),s=await t}return a.scheme===`cenc`||a.scheme===`cens`?Li(s,a,t,n):Ri(s,a,t,n)},Li=async(e,t,n,i)=>{let a=new Uint8Array(16);a.set(n.iv,0);let o=await crypto.subtle.importKey(`raw`,e,{name:`AES-CTR`},!1,[`decrypt`]),s=async e=>{let t=await crypto.subtle.decrypt({name:`AES-CTR`,counter:a,length:64},o,e);return new Uint8Array(t)};if(!n.subsamples)return s(i);r(t.defaultCryptByteBlock!==null&&t.defaultSkipByteBlock!==null);let c=zi(n.subsamples,t.defaultCryptByteBlock,t.defaultSkipByteBlock),l=0;for(let e of c)for(let t of e.perSubsample)l+=t.length;let u=new Uint8Array(l),d=0;for(let e of c)for(let t of e.perSubsample)u.set(i.subarray(t.offset,t.offset+t.length),d),d+=t.length;let f=await s(u),p=new Uint8Array(i),m=0;for(let e of c)for(let t of e.perSubsample)p.set(f.subarray(m,m+t.length),t.offset),m+=t.length;return p},Ri=(e,t,n,i)=>{let a=new bi;a.init({key:e,iv:n.iv});let o=t.defaultCryptByteBlock,s=t.defaultSkipByteBlock;if(r(o!==null&&s!==null),!n.subsamples){let e=new Uint8Array(i),t=Math.floor(i.length/16);for(let n=0;n<t;n++){let t=n*16;a.in.set(i.subarray(t,t+16)),a.decrypt(),e.set(a.out,t)}return e}if(o===0&&s===0)throw Error(`cbcs with subsamples requires pattern encryption.`);let c=new Uint8Array(i),l=zi(n.subsamples,o,s),u=new DataView(n.iv.buffer,n.iv.byteOffset,16);for(let e of l){a.iv[0]=u.getUint32(0,!1),a.iv[1]=u.getUint32(4,!1),a.iv[2]=u.getUint32(8,!1),a.iv[3]=u.getUint32(12,!1);for(let t of e.perSubsample){let e=t.length/16;for(let n=0;n<e;n++){let e=t.offset+n*16;a.in.set(i.subarray(e,e+16)),a.decrypt(),c.set(a.out,e)}}}return c},zi=(e,t,n)=>{let r=[],i=t!==0||n!==0,a=0;for(let o of e){a+=o.clearLen;let e=[];if(!i)o.protectedLen>0&&e.push({offset:a,length:o.protectedLen}),a+=o.protectedLen;else{let r=o.protectedLen,i=a;for(;r>0&&!(r<16*t);){let a=16*t;e.push({offset:i,length:a}),i+=a,r-=a;let o=Math.min(16*n,r);i+=o,r-=o}a+=o.protectedLen}r.push({perSubsample:e})}return r},Bi=class{constructor(e){this.value=e}},Vi=class{constructor(e){this.value=e}},Hi=class{constructor(e){this.value=e}},Ui=class{constructor(e){this.value=e}},L;(function(e){e[e.EBML=440786851]=`EBML`,e[e.EBMLVersion=17030]=`EBMLVersion`,e[e.EBMLReadVersion=17143]=`EBMLReadVersion`,e[e.EBMLMaxIDLength=17138]=`EBMLMaxIDLength`,e[e.EBMLMaxSizeLength=17139]=`EBMLMaxSizeLength`,e[e.DocType=17026]=`DocType`,e[e.DocTypeVersion=17031]=`DocTypeVersion`,e[e.DocTypeReadVersion=17029]=`DocTypeReadVersion`,e[e.Void=236]=`Void`,e[e.Segment=408125543]=`Segment`,e[e.SeekHead=290298740]=`SeekHead`,e[e.Seek=19899]=`Seek`,e[e.SeekID=21419]=`SeekID`,e[e.SeekPosition=21420]=`SeekPosition`,e[e.Duration=17545]=`Duration`,e[e.Info=357149030]=`Info`,e[e.TimestampScale=2807729]=`TimestampScale`,e[e.MuxingApp=19840]=`MuxingApp`,e[e.WritingApp=22337]=`WritingApp`,e[e.Tracks=374648427]=`Tracks`,e[e.TrackEntry=174]=`TrackEntry`,e[e.TrackNumber=215]=`TrackNumber`,e[e.TrackUID=29637]=`TrackUID`,e[e.TrackType=131]=`TrackType`,e[e.FlagEnabled=185]=`FlagEnabled`,e[e.FlagDefault=136]=`FlagDefault`,e[e.FlagForced=21930]=`FlagForced`,e[e.FlagOriginal=21934]=`FlagOriginal`,e[e.FlagHearingImpaired=21931]=`FlagHearingImpaired`,e[e.FlagVisualImpaired=21932]=`FlagVisualImpaired`,e[e.FlagCommentary=21935]=`FlagCommentary`,e[e.FlagLacing=156]=`FlagLacing`,e[e.Name=21358]=`Name`,e[e.Language=2274716]=`Language`,e[e.LanguageBCP47=2274717]=`LanguageBCP47`,e[e.CodecID=134]=`CodecID`,e[e.CodecPrivate=25506]=`CodecPrivate`,e[e.CodecDelay=22186]=`CodecDelay`,e[e.SeekPreRoll=22203]=`SeekPreRoll`,e[e.DefaultDuration=2352003]=`DefaultDuration`,e[e.Video=224]=`Video`,e[e.PixelWidth=176]=`PixelWidth`,e[e.PixelHeight=186]=`PixelHeight`,e[e.DisplayWidth=21680]=`DisplayWidth`,e[e.DisplayHeight=21690]=`DisplayHeight`,e[e.DisplayUnit=21682]=`DisplayUnit`,e[e.AlphaMode=21440]=`AlphaMode`,e[e.Audio=225]=`Audio`,e[e.SamplingFrequency=181]=`SamplingFrequency`,e[e.Channels=159]=`Channels`,e[e.BitDepth=25188]=`BitDepth`,e[e.SimpleBlock=163]=`SimpleBlock`,e[e.BlockGroup=160]=`BlockGroup`,e[e.Block=161]=`Block`,e[e.BlockAdditions=30113]=`BlockAdditions`,e[e.BlockMore=166]=`BlockMore`,e[e.BlockAdditional=165]=`BlockAdditional`,e[e.BlockAddID=238]=`BlockAddID`,e[e.BlockDuration=155]=`BlockDuration`,e[e.ReferenceBlock=251]=`ReferenceBlock`,e[e.Cluster=524531317]=`Cluster`,e[e.Timestamp=231]=`Timestamp`,e[e.Cues=475249515]=`Cues`,e[e.CuePoint=187]=`CuePoint`,e[e.CueTime=179]=`CueTime`,e[e.CueTrackPositions=183]=`CueTrackPositions`,e[e.CueTrack=247]=`CueTrack`,e[e.CueClusterPosition=241]=`CueClusterPosition`,e[e.Colour=21936]=`Colour`,e[e.MatrixCoefficients=21937]=`MatrixCoefficients`,e[e.TransferCharacteristics=21946]=`TransferCharacteristics`,e[e.Primaries=21947]=`Primaries`,e[e.Range=21945]=`Range`,e[e.Projection=30320]=`Projection`,e[e.ProjectionType=30321]=`ProjectionType`,e[e.ProjectionPoseRoll=30325]=`ProjectionPoseRoll`,e[e.Attachments=423732329]=`Attachments`,e[e.AttachedFile=24999]=`AttachedFile`,e[e.FileDescription=18046]=`FileDescription`,e[e.FileName=18030]=`FileName`,e[e.FileMediaType=18016]=`FileMediaType`,e[e.FileData=18012]=`FileData`,e[e.FileUID=18094]=`FileUID`,e[e.Chapters=272869232]=`Chapters`,e[e.Tags=307544935]=`Tags`,e[e.Tag=29555]=`Tag`,e[e.Targets=25536]=`Targets`,e[e.TargetTypeValue=26826]=`TargetTypeValue`,e[e.TargetType=25546]=`TargetType`,e[e.TagTrackUID=25541]=`TagTrackUID`,e[e.TagEditionUID=25545]=`TagEditionUID`,e[e.TagChapterUID=25540]=`TagChapterUID`,e[e.TagAttachmentUID=25542]=`TagAttachmentUID`,e[e.SimpleTag=26568]=`SimpleTag`,e[e.TagName=17827]=`TagName`,e[e.TagLanguage=17530]=`TagLanguage`,e[e.TagString=17543]=`TagString`,e[e.TagBinary=17541]=`TagBinary`,e[e.ContentEncodings=28032]=`ContentEncodings`,e[e.ContentEncoding=25152]=`ContentEncoding`,e[e.ContentEncodingOrder=20529]=`ContentEncodingOrder`,e[e.ContentEncodingScope=20530]=`ContentEncodingScope`,e[e.ContentCompression=20532]=`ContentCompression`,e[e.ContentCompAlgo=16980]=`ContentCompAlgo`,e[e.ContentCompSettings=16981]=`ContentCompSettings`,e[e.ContentEncryption=20533]=`ContentEncryption`})(L||={});var Wi=[L.EBML,L.Segment],Gi=[L.SeekHead,L.Info,L.Cluster,L.Tracks,L.Cues,L.Attachments,L.Chapters,L.Tags],Ki=[...Wi,...Gi],qi=e=>e<256?1:e<65536?2:e<1<<24?3:e<2**32?4:e<2**40?5:6,Ji=e=>e<1n<<8n?1:e<1n<<16n?2:e<1n<<24n?3:e<1n<<32n?4:e<1n<<40n?5:e<1n<<48n?6:e<1n<<56n?7:8,Yi=e=>e>=-64&&e<64?1:e>=-8192&&e<8192?2:e>=-1048576&&e<1<<20?3:e>=-134217728&&e<1<<27?4:e>=-(2**34)&&e<2**34?5:6,Xi=e=>{if(e<127)return 1;if(e<16383)return 2;if(e<(1<<21)-1)return 3;if(e<(1<<28)-1)return 4;if(e<2**35-1)return 5;if(e<2**42-1)return 6;throw Error(`EBML varint size not supported `+e)},Zi=class{constructor(e){this.writer=e,this.helper=new Uint8Array(8),this.helperView=new DataView(this.helper.buffer),this.offsets=new WeakMap,this.dataOffsets=new WeakMap}writeByte(e){this.helperView.setUint8(0,e),this.writer.write(this.helper.subarray(0,1))}writeFloat32(e){this.helperView.setFloat32(0,e,!1),this.writer.write(this.helper.subarray(0,4))}writeFloat64(e){this.helperView.setFloat64(0,e,!1),this.writer.write(this.helper)}writeUnsignedInt(e,t=qi(e)){let n=0;switch(t){case 6:this.helperView.setUint8(n++,e/2**40|0);case 5:this.helperView.setUint8(n++,e/2**32|0);case 4:this.helperView.setUint8(n++,e>>24);case 3:this.helperView.setUint8(n++,e>>16);case 2:this.helperView.setUint8(n++,e>>8);case 1:this.helperView.setUint8(n++,e);break;default:throw Error(`Bad unsigned int size `+t)}this.writer.write(this.helper.subarray(0,n))}writeUnsignedBigInt(e,t=Ji(e)){let n=0;for(let r=t-1;r>=0;r--)this.helperView.setUint8(n++,Number(e>>BigInt(r*8)&255n));this.writer.write(this.helper.subarray(0,n))}writeSignedInt(e,t=Yi(e)){e<0&&(e+=2**(t*8)),this.writeUnsignedInt(e,t)}writeVarInt(e,t=Xi(e)){let n=0;switch(t){case 1:this.helperView.setUint8(n++,128|e);break;case 2:this.helperView.setUint8(n++,64|e>>8),this.helperView.setUint8(n++,e);break;case 3:this.helperView.setUint8(n++,32|e>>16),this.helperView.setUint8(n++,e>>8),this.helperView.setUint8(n++,e);break;case 4:this.helperView.setUint8(n++,16|e>>24),this.helperView.setUint8(n++,e>>16),this.helperView.setUint8(n++,e>>8),this.helperView.setUint8(n++,e);break;case 5:this.helperView.setUint8(n++,8|e/2**32&7),this.helperView.setUint8(n++,e>>24),this.helperView.setUint8(n++,e>>16),this.helperView.setUint8(n++,e>>8),this.helperView.setUint8(n++,e);break;case 6:this.helperView.setUint8(n++,4|e/2**40&3),this.helperView.setUint8(n++,e/2**32|0),this.helperView.setUint8(n++,e>>24),this.helperView.setUint8(n++,e>>16),this.helperView.setUint8(n++,e>>8),this.helperView.setUint8(n++,e);break;default:throw Error(`Bad EBML varint size `+t)}this.writer.write(this.helper.subarray(0,n))}writeAsciiString(e){this.writer.write(new Uint8Array(e.split(``).map(e=>e.charCodeAt(0))))}writeEBML(e){if(e!==null){if(e instanceof Uint8Array)this.writer.write(e);else if(Array.isArray(e))for(let t of e)this.writeEBML(t);else if(this.offsets.set(e,this.writer.getPos()),this.writeUnsignedInt(e.id),Array.isArray(e.data)){let t=this.writer.getPos(),n=e.size===-1?1:e.size??4;e.size===-1?this.writeByte(255):this.writer.seek(this.writer.getPos()+n);let r=this.writer.getPos();if(this.dataOffsets.set(e,r),this.writeEBML(e.data),e.size!==-1){let e=this.writer.getPos()-r,i=this.writer.getPos();this.writer.seek(t),this.writeVarInt(e,n),this.writer.seek(i)}}else if(typeof e.data==`number`){let t=e.size??qi(e.data);this.writeVarInt(t),this.writeUnsignedInt(e.data,t)}else if(typeof e.data==`bigint`){let t=e.size??Ji(e.data);this.writeVarInt(t),this.writeUnsignedBigInt(e.data,t)}else if(typeof e.data==`string`)this.writeVarInt(e.data.length),this.writeAsciiString(e.data);else if(e.data instanceof Uint8Array)this.writeVarInt(e.data.byteLength,e.size),this.writer.write(e.data);else if(e.data instanceof Bi)this.writeVarInt(4),this.writeFloat32(e.data.value);else if(e.data instanceof Vi)this.writeVarInt(8),this.writeFloat64(e.data.value);else if(e.data instanceof Hi){let t=e.size??Yi(e.data.value);this.writeVarInt(t),this.writeSignedInt(e.data.value,t)}else if(e.data instanceof Ui){let t=p.encode(e.data.value);this.writeVarInt(t.length),this.writer.write(t)}else E(e.data)}}},Qi=e=>{if(e.remainingLength<1)return null;let t=H(e);if(e.skip(-1),t===0)return null;let n=1,r=128;for(;(t&r)===0;)n++,r>>=1;return e.remainingLength<n?null:n},$i=e=>{if(e.remainingLength<1)return null;let t=H(e);if(t===0)return null;let n=1,r=128;for(;(t&r)===0;)n++,r>>=1;if(e.remainingLength<n-1)return null;let i=t&r-1;for(let t=1;t<n;t++)i*=256,i+=H(e);return i},R=(e,t)=>{if(t<1||t>8)throw Error(`Bad unsigned int size `+t);let n=0;for(let r=0;r<t;r++)n*=256,n+=H(e);return n},ea=(e,t)=>{if(t<1)throw Error(`Bad unsigned int size `+t);let n=0n;for(let r=0;r<t;r++)n<<=8n,n+=BigInt(H(e));return n},ta=e=>{let t=Qi(e);return t===null||e.remainingLength<t?null:R(e,t)},na=e=>{if(e.remainingLength<1)return null;if(H(e)===255)return;e.skip(-1);let t=$i(e);if(t===null)return null;if(t!==72057594037927940)return t},ra=e=>{r(e.remainingLength>=2);let t=ta(e);if(t===null)return null;let n=na(e);return n===null?null:{id:t,size:n}},ia=(e,t)=>{let n=V(e,t),r=0;for(;r<t&&n[r]!==0;)r+=1;return String.fromCharCode(...n.subarray(0,r))},aa=(e,t)=>{let n=V(e,t),r=0;for(;r<t&&n[r]!==0;)r+=1;return f.decode(n.subarray(0,r))},oa=(e,t)=>{if(t===0)return 0;if(t!==4&&t!==8)throw Error(`Bad float size `+t);return t===4?Su(e):Cu(e)},sa=async(e,t,n,r)=>{let i=new Set(n),a=t;for(;r===null||a<r;){let t=e.requestSliceRange(a,2,16);if(O(t)&&(t=await t),!t)break;let n=ra(t);if(!n)break;if(i.has(n.id))return{pos:a,found:!0};ua(n.size),a=t.filePos+n.size}return{pos:r!==null&&r>a?r:a,found:!1}},ca=async(e,t,n,r)=>{let i=2**16,a=new Set(n),o=t;for(;o<r;){let t=e.requestSliceRange(o,0,Math.min(i,r-o));if(O(t)&&(t=await t),!t||t.length<8)break;for(let e=0;e<t.length-8;e++){t.filePos=o;let e=ta(t);if(e!==null&&a.has(e))return o;o++}}return null},la={avc:`V_MPEG4/ISO/AVC`,hevc:`V_MPEGH/ISO/HEVC`,vp8:`V_VP8`,vp9:`V_VP9`,av1:`V_AV1`,prores:`V_PRORES`,aac:`A_AAC`,mp3:`A_MPEG/L3`,opus:`A_OPUS`,vorbis:`A_VORBIS`,flac:`A_FLAC`,ac3:`A_AC3`,eac3:`A_EAC3`,dts:`A_DTS`,"pcm-u8":`A_PCM/INT/LIT`,"pcm-s16":`A_PCM/INT/LIT`,"pcm-s16be":`A_PCM/INT/BIG`,"pcm-s24":`A_PCM/INT/LIT`,"pcm-s24be":`A_PCM/INT/BIG`,"pcm-s32":`A_PCM/INT/LIT`,"pcm-s32be":`A_PCM/INT/BIG`,"pcm-f32":`A_PCM/FLOAT/IEEE`,"pcm-f64":`A_PCM/FLOAT/IEEE`,webvtt:`S_TEXT/WEBVTT`};function ua(e){if(e===void 0)throw Error(`Undefined element size is used in a place where it is not supported.`)}var da=e=>{let t=(e.hasVideo?`video/`:e.hasAudio?`audio/`:`application/`)+(e.isWebM?`webm`:`x-matroska`);if(e.codecStrings.length>0){let n=[...new Set(e.codecStrings.filter(Boolean))];t+=`; codecs="${n.join(`, `)}"`}return t},fa;(function(e){e[e.None=0]=`None`,e[e.Xiph=1]=`Xiph`,e[e.FixedSize=2]=`FixedSize`,e[e.Ebml=3]=`Ebml`})(fa||={});var pa;(function(e){e[e.Block=1]=`Block`,e[e.Private=2]=`Private`,e[e.Next=4]=`Next`})(pa||={});var ma;(function(e){e[e.Zlib=0]=`Zlib`,e[e.Bzlib=1]=`Bzlib`,e[e.lzo1x=2]=`lzo1x`,e[e.HeaderStripping=3]=`HeaderStripping`})(ma||={});var ha=[{id:L.SeekHead,flag:`seekHeadSeen`},{id:L.Info,flag:`infoSeen`},{id:L.Tracks,flag:`tracksSeen`},{id:L.Cues,flag:`cuesSeen`}],ga=10*2**20,_a=class extends ei{constructor(e){super(e),this.readMetadataPromise=null,this.segments=[],this.currentSegment=null,this.currentTrack=null,this.currentCluster=null,this.currentBlock=null,this.currentBlockAdditional=null,this.currentCueTime=null,this.currentDecodingInstruction=null,this.currentTagTargetIsMovie=!0,this.currentSimpleTagName=null,this.currentAttachedFile=null,this.isWebM=!1,this.reader=e._reader}async getTrackBackings(){return await this.readMetadata(),this.segments.flatMap(e=>e.tracks.map(e=>e.trackBacking))}async getMimeType(){await this.readMetadata();let e=await this.getTrackBackings(),t=await Promise.all(e.map(e=>e.getDecoderConfig().then(e=>e?.codec??null)));return da({isWebM:this.isWebM,hasVideo:this.segments.some(e=>e.tracks.some(e=>e.info?.type===`video`)),hasAudio:this.segments.some(e=>e.tracks.some(e=>e.info?.type===`audio`)),codecStrings:t.filter(Boolean)})}async getMetadataTags(){await this.readMetadata();for(let e of this.segments)e.metadataTagsCollected||=(this.reader.fileSize!==null&&await this.loadSegmentMetadata(e),!0);let e={};for(let t of this.segments)e={...e,...t.metadataTags};return e}readMetadata(){return this.readMetadataPromise??=(async()=>{let e=0;for(;;){let t=this.reader.requestSliceRange(e,2,16);if(O(t)&&(t=await t),!t)break;let n=ra(t);if(!n)break;let r=n.id,i=n.size,o=t.filePos;if(r===L.EBML){ua(i);let e=this.reader.requestSlice(o,i);if(O(e)&&(e=await e),!e)break;this.readContiguousElements(e)}else if(r===L.Segment){if(await this.readSegment(o,i),i===void 0||this.reader.fileSize===null)break}else if(r===L.Cluster){if(this.reader.fileSize===null)break;i===void 0&&(i=(await sa(this.reader,o,Ki,this.reader.fileSize)).pos-o);let e=a(this.segments);e&&(e.elementEndPos=o+i)}ua(i),e=o+i}})()}async readSegment(e,t){this.currentSegment={seekHeadSeen:!1,infoSeen:!1,tracksSeen:!1,cuesSeen:!1,tagsSeen:!1,attachmentsSeen:!1,timestampScale:-1,timestampFactor:-1,duration:-1,seekEntries:[],tracks:[],cuePoints:[],dataStartPos:e,elementEndPos:t===void 0?null:e+t,clusterSeekStartPos:e,lastReadCluster:null,metadataTags:{},metadataTagsCollected:!1},this.segments.push(this.currentSegment);let n=e;for(;this.currentSegment.elementEndPos===null||n<this.currentSegment.elementEndPos;){let e=this.reader.requestSliceRange(n,2,16);if(O(e)&&(e=await e),!e)break;let t=n,r=ra(e);if(!r||!Gi.includes(r.id)&&r.id!==L.Void){let e=await ca(this.reader,t,Gi,Math.min(this.currentSegment.elementEndPos??1/0,t+ga));if(e){n=e;continue}break}let{id:i,size:a}=r,o=e.filePos,s=ha.findIndex(e=>e.id===i);if(s!==-1){let e=ha[s].flag;this.currentSegment[e]=!0,ua(a);let t=this.reader.requestSlice(o,a);O(t)&&(t=await t),t&&this.readContiguousElements(t)}else if(i===L.Tags||i===L.Attachments){i===L.Tags?this.currentSegment.tagsSeen=!0:this.currentSegment.attachmentsSeen=!0,ua(a);let e=this.reader.requestSlice(o,a);O(e)&&(e=await e),e&&this.readContiguousElements(e)}else if(i===L.Cluster){this.currentSegment.clusterSeekStartPos=t;break}if(a===void 0)break;n=o+a}if(this.currentSegment.seekEntries.sort((e,t)=>e.segmentPosition-t.segmentPosition),this.reader.fileSize!==null)for(let t of this.currentSegment.seekEntries){let n=ha.find(e=>e.id===t.id);if(!n||this.currentSegment[n.flag])continue;let r=this.reader.requestSliceRange(e+t.segmentPosition,2,16);if(O(r)&&(r=await r),!r)continue;let i=ra(r);if(!i)continue;let{id:a,size:o}=i;if(a!==n.id)continue;ua(o),this.currentSegment[n.flag]=!0;let s=this.reader.requestSlice(r.filePos,o);O(s)&&(s=await s),s&&this.readContiguousElements(s)}this.currentSegment.timestampScale===-1&&(this.currentSegment.timestampScale=1e6,this.currentSegment.timestampFactor=1e3);for(let e of this.currentSegment.tracks)e.defaultDurationNs!==null&&(e.defaultDuration=this.currentSegment.timestampFactor*e.defaultDurationNs/1e9);let r=new Map(this.currentSegment.tracks.map(e=>[e.id,e]));for(let e of this.currentSegment.cuePoints){let t=r.get(e.trackId);t&&t.cuePoints.push(e)}for(let e of this.currentSegment.tracks){e.cuePoints.sort((e,t)=>e.time-t.time);for(let t=0;t<e.cuePoints.length-1;t++){let n=e.cuePoints[t],r=e.cuePoints[t+1];n.time===r.time&&(e.cuePoints.splice(t+1,1),t--)}}let i=null,a=-1/0;for(let e of this.currentSegment.tracks)e.cuePoints.length>a&&(a=e.cuePoints.length,i=e);for(let e of this.currentSegment.tracks)e.cuePoints.length===0&&(e.cuePoints=i.cuePoints);this.currentSegment=null}async readCluster(e,t){if(t.lastReadCluster?.elementStartPos===e)return t.lastReadCluster;let n=this.reader.requestSliceRange(e,2,16);O(n)&&(n=await n),r(n);let i=e,o=ra(n);r(o);let s=o.id;r(s===L.Cluster);let c=o.size,l=n.filePos;c===void 0&&(c=(await sa(this.reader,l,Ki,t.elementEndPos)).pos-l);let u=this.reader.requestSlice(l,c);O(u)&&(u=await u);let d={segment:t,elementStartPos:i,elementEndPos:l+c,dataStartPos:l,timestamp:-1,trackData:new Map};this.currentCluster=d,u&&(d.elementEndPos=this.readContiguousElements(u,Ki));for(let[,e]of d.trackData){let t=e.track;r(e.blocks.length>0);let n=!1;for(let t=0;t<e.blocks.length;t++){let r=e.blocks[t];r.timestamp+=d.timestamp,n||=r.lacing!==fa.None}e.presentationTimestamps=e.blocks.map((e,t)=>({timestamp:e.timestamp,blockIndex:t})).sort((e,t)=>e.timestamp-t.timestamp);for(let n=0;n<e.presentationTimestamps.length;n++){let r=e.presentationTimestamps[n],i=e.blocks[r.blockIndex];e.firstKeyFrameTimestamp===null&&i.isKeyFrame&&(e.firstKeyFrameTimestamp=i.timestamp),n<e.presentationTimestamps.length-1?i.duration=e.presentationTimestamps[n+1].timestamp-i.timestamp:i.duration===0&&t.defaultDuration!=null&&i.lacing===fa.None&&(i.duration=t.defaultDuration)}n&&(this.expandLacedBlocks(e.blocks,t),e.presentationTimestamps=e.blocks.map((e,t)=>({timestamp:e.timestamp,blockIndex:t})).sort((e,t)=>e.timestamp-t.timestamp));let o=e.blocks[e.presentationTimestamps[0].blockIndex],s=e.blocks[a(e.presentationTimestamps).blockIndex];e.startTimestamp=o.timestamp,e.endTimestamp=s.timestamp+s.duration;let c=w(t.clusterPositionCache,e.startTimestamp,e=>e.startTimestamp);(c===-1||t.clusterPositionCache[c].elementStartPos!==i)&&t.clusterPositionCache.splice(c+1,0,{elementStartPos:d.elementStartPos,startTimestamp:e.startTimestamp})}return t.lastReadCluster=d,d}getTrackDataInCluster(e,t){let n=e.trackData.get(t);if(!n){let r=e.segment.tracks.find(e=>e.id===t);if(!r)return null;n={track:r,startTimestamp:0,endTimestamp:0,firstKeyFrameTimestamp:null,blocks:[],presentationTimestamps:[]},e.trackData.set(t,n)}return n}expandLacedBlocks(e,t){for(let n=0;n<e.length;n++){let i=e[n];if(i.lacing===fa.None)continue;i.decoded||=(i.data=this.decodeBlockData(t,i.data),!0);let a=lu.tempFromBytes(i.data),o=[],s=H(a)+1;switch(i.lacing){case fa.Xiph:{let e=0;for(let t=0;t<s-1;t++){let t=0;for(;a.bufferPos<a.length;){let n=H(a);if(t+=n,n<255){o.push(t),e+=t;break}}}o.push(a.length-(a.bufferPos+e))}break;case fa.FixedSize:{let e=a.length-1,t=Math.floor(e/s);for(let e=0;e<s;e++)o.push(t)}break;case fa.Ebml:{let e=$i(a);r(e!==null);let t=e;o.push(t);let n=t;for(let e=1;e<s-1;e++){let e=a.bufferPos,i=$i(a);r(i!==null);let s=i-((1<<(a.bufferPos-e)*7-1)-1);t+=s,o.push(t),n+=t}o.push(a.length-(a.bufferPos+n))}break;default:r(!1)}r(o.length===s),e.splice(n,1);let c=i.duration||s*(t.defaultDuration??0);for(let t=0;t<s;t++){let r=o[t],l=V(a,r),u=i.timestamp+c*t/s,d=c/s;e.splice(n+t,0,{timestamp:u,duration:d,isKeyFrame:i.isKeyFrame,data:l,lacing:fa.None,decoded:!0,postProcessed:!1,mainAdditional:i.mainAdditional})}n+=s,n--}}async loadSegmentMetadata(e){for(let t of e.seekEntries){if((t.id!==L.Tags||e.tagsSeen)&&(t.id!==L.Attachments||e.attachmentsSeen))continue;let n=this.reader.requestSliceRange(e.dataStartPos+t.segmentPosition,2,16);if(O(n)&&(n=await n),!n)continue;let i=ra(n);if(!i||i.id!==t.id)continue;let{size:a}=i;ua(a),r(!this.currentSegment),this.currentSegment=e;let o=this.reader.requestSlice(n.filePos,a);O(o)&&(o=await o),o&&this.readContiguousElements(o),this.currentSegment=null,t.id===L.Tags?e.tagsSeen=!0:t.id===L.Attachments&&(e.attachmentsSeen=!0)}}readContiguousElements(e,t){for(;e.remainingLength>=2;){let n=e.filePos;if(!this.traverseElement(e,t))return n}return e.filePos}traverseElement(e,t){let n=ra(e);if(!n||t&&t.includes(n.id))return!1;let{id:a,size:o}=n,s=e.filePos;switch(ua(o),a){case L.DocType:this.isWebM=ia(e,o)===`webm`;break;case L.Seek:{if(!this.currentSegment)break;let t={id:-1,segmentPosition:-1};this.currentSegment.seekEntries.push(t),this.readContiguousElements(e.slice(s,o)),(t.id===-1||t.segmentPosition===-1)&&this.currentSegment.seekEntries.pop()}break;case L.SeekID:{let t=this.currentSegment?.seekEntries[this.currentSegment.seekEntries.length-1];if(!t)break;t.id=R(e,o)}break;case L.SeekPosition:{let t=this.currentSegment?.seekEntries[this.currentSegment.seekEntries.length-1];if(!t)break;t.segmentPosition=R(e,o)}break;case L.TimestampScale:if(!this.currentSegment)break;this.currentSegment.timestampScale=R(e,o),this.currentSegment.timestampFactor=1e9/this.currentSegment.timestampScale;break;case L.Duration:if(!this.currentSegment)break;this.currentSegment.duration=oa(e,o);break;case L.TrackEntry:if(!this.currentSegment||(this.currentTrack={id:-1,segment:this.currentSegment,demuxer:this,clusterPositionCache:[],cuePoints:[],disposition:{...Tt,primary:!1},trackBacking:null,codecId:null,codecPrivate:null,defaultDuration:null,defaultDurationNs:null,name:null,languageCode:`eng`,hasLanguageBcp47:!1,decodingInstructions:[],info:null},this.readContiguousElements(e.slice(s,o)),!this.currentTrack))break;if(this.currentTrack.decodingInstructions.some(e=>e.data?.type!==`decompress`||e.scope!==pa.Block||e.data.algorithm!==ma.HeaderStripping)&&(k._warn(`Track #${this.currentTrack.id} has an unsupported content encoding; dropping.`),this.currentTrack=null),this.currentTrack&&this.currentTrack.id!==-1&&this.currentTrack.codecId&&this.currentTrack.info){let e=this.currentTrack.codecId.indexOf(`/`),t=e===-1?this.currentTrack.codecId:this.currentTrack.codecId.slice(0,e);if(this.currentTrack.info.type===`video`&&this.currentTrack.info.width!==-1&&this.currentTrack.info.height!==-1){if(this.currentTrack.info.squarePixelWidth=this.currentTrack.info.width,this.currentTrack.info.squarePixelHeight=this.currentTrack.info.height,this.currentTrack.info.displayWidth!==null&&this.currentTrack.info.displayHeight!==null){let e=this.currentTrack.info.displayWidth*this.currentTrack.info.height,t=this.currentTrack.info.displayHeight*this.currentTrack.info.width;e>0&&t>0&&(e>t?this.currentTrack.info.squarePixelWidth=Math.round(this.currentTrack.info.width*e/t):this.currentTrack.info.squarePixelHeight=Math.round(this.currentTrack.info.height*t/e))}if(this.currentTrack.codecId===la.avc)this.currentTrack.info.codec=`avc`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate;else if(this.currentTrack.codecId===la.hevc)this.currentTrack.info.codec=`hevc`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate;else if(t===la.vp8)this.currentTrack.info.codec=`vp8`;else if(t===la.vp9)this.currentTrack.info.codec=`vp9`;else if(t===la.av1)this.currentTrack.info.codec=`av1`;else if(t===la.prores){let e=this.currentTrack.codecPrivate?f.decode(this.currentTrack.codecPrivate):``;_r.includes(e)&&(this.currentTrack.info.codec=`prores`,this.currentTrack.info.proresFormat=e)}let e=this.currentTrack;this.currentTrack.trackBacking=new ya(e),this.currentSegment.tracks.push(this.currentTrack)}else if(this.currentTrack.info.type===`audio`){t===la.aac?(this.currentTrack.info.codec=`aac`,this.currentTrack.info.aacCodecInfo={isMpeg2:this.currentTrack.codecId.includes(`MPEG2`),objectType:null},this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate):this.currentTrack.codecId===la.mp3?this.currentTrack.info.codec=`mp3`:t===la.opus?(this.currentTrack.info.codec=`opus`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate,this.currentTrack.info.sampleRate=Or):t===la.vorbis?(this.currentTrack.info.codec=`vorbis`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate):t===la.flac?(this.currentTrack.info.codec=`flac`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate):t===la.ac3?(this.currentTrack.info.codec=`ac3`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate):t===la.eac3?(this.currentTrack.info.codec=`eac3`,this.currentTrack.info.codecDescription=this.currentTrack.codecPrivate):t===la.dts?(this.currentTrack.info.codec=`dts`,this.currentTrack.codecId===`A_DTS/EXPRESS`?this.currentTrack.info.dtsFormat=`dtse`:this.currentTrack.codecId===`A_DTS/LOSSLESS`&&(this.currentTrack.info.dtsFormat=`dtsl`)):this.currentTrack.codecId===`A_PCM/INT/LIT`?this.currentTrack.info.bitDepth===8?this.currentTrack.info.codec=`pcm-u8`:this.currentTrack.info.bitDepth===16?this.currentTrack.info.codec=`pcm-s16`:this.currentTrack.info.bitDepth===24?this.currentTrack.info.codec=`pcm-s24`:this.currentTrack.info.bitDepth===32&&(this.currentTrack.info.codec=`pcm-s32`):this.currentTrack.codecId===`A_PCM/INT/BIG`?this.currentTrack.info.bitDepth===8?this.currentTrack.info.codec=`pcm-u8`:this.currentTrack.info.bitDepth===16?this.currentTrack.info.codec=`pcm-s16be`:this.currentTrack.info.bitDepth===24?this.currentTrack.info.codec=`pcm-s24be`:this.currentTrack.info.bitDepth===32&&(this.currentTrack.info.codec=`pcm-s32be`):this.currentTrack.codecId===`A_PCM/FLOAT/IEEE`&&(this.currentTrack.info.bitDepth===32?this.currentTrack.info.codec=`pcm-f32`:this.currentTrack.info.bitDepth===64&&(this.currentTrack.info.codec=`pcm-f64`));let e=this.currentTrack;this.currentTrack.trackBacking=new ba(e),this.currentSegment.tracks.push(this.currentTrack)}}this.currentTrack=null;break;case L.TrackNumber:if(!this.currentTrack)break;this.currentTrack.id=R(e,o);break;case L.TrackType:{if(!this.currentTrack)break;let t=R(e,o);t===1?this.currentTrack.info={type:`video`,width:-1,height:-1,displayWidth:null,displayHeight:null,displayUnit:null,squarePixelWidth:-1,squarePixelHeight:-1,rotation:0,codec:null,codecDescription:null,colorSpace:{...ee},alphaMode:!1,proresFormat:null}:t===2&&(this.currentTrack.info={type:`audio`,numberOfChannels:1,sampleRate:8e3,bitDepth:-1,codec:null,codecDescription:null,aacCodecInfo:null,dtsFormat:null})}break;case L.FlagEnabled:if(!this.currentTrack)break;R(e,o)||(this.currentTrack=null);break;case L.FlagDefault:if(!this.currentTrack)break;this.currentTrack.disposition.default=!!R(e,o);break;case L.FlagForced:if(!this.currentTrack)break;this.currentTrack.disposition.forced=!!R(e,o);break;case L.FlagOriginal:if(!this.currentTrack)break;this.currentTrack.disposition.original=!!R(e,o);break;case L.FlagHearingImpaired:if(!this.currentTrack)break;this.currentTrack.disposition.hearingImpaired=!!R(e,o);break;case L.FlagVisualImpaired:if(!this.currentTrack)break;this.currentTrack.disposition.visuallyImpaired=!!R(e,o);break;case L.FlagCommentary:if(!this.currentTrack)break;this.currentTrack.disposition.commentary=!!R(e,o);break;case L.CodecID:if(!this.currentTrack)break;this.currentTrack.codecId=ia(e,o);break;case L.CodecPrivate:if(!this.currentTrack)break;this.currentTrack.codecPrivate=V(e,o);break;case L.DefaultDuration:if(!this.currentTrack)break;this.currentTrack.defaultDurationNs=R(e,o);break;case L.Name:if(!this.currentTrack)break;this.currentTrack.name=aa(e,o);break;case L.Language:if(!this.currentTrack||this.currentTrack.hasLanguageBcp47)break;this.currentTrack.languageCode=ia(e,o),ke(this.currentTrack.languageCode)||(this.currentTrack.languageCode=`und`);break;case L.LanguageBCP47:{if(!this.currentTrack)break;let t=ia(e,o).split(`-`)[0];t?this.currentTrack.languageCode=t:this.currentTrack.languageCode=`und`,this.currentTrack.hasLanguageBcp47=!0}break;case L.Video:if(this.currentTrack?.info?.type!==`video`)break;this.readContiguousElements(e.slice(s,o));break;case L.PixelWidth:if(this.currentTrack?.info?.type!==`video`)break;this.currentTrack.info.width=R(e,o);break;case L.PixelHeight:if(this.currentTrack?.info?.type!==`video`)break;this.currentTrack.info.height=R(e,o);break;case L.DisplayWidth:if(this.currentTrack?.info?.type!==`video`)break;this.currentTrack.info.displayWidth=R(e,o);break;case L.DisplayHeight:if(this.currentTrack?.info?.type!==`video`)break;this.currentTrack.info.displayHeight=R(e,o);break;case L.DisplayUnit:if(this.currentTrack?.info?.type!==`video`)break;this.currentTrack.info.displayUnit=R(e,o);break;case L.AlphaMode:if(this.currentTrack?.info?.type!==`video`)break;this.currentTrack.info.alphaMode=R(e,o)===1;break;case L.Colour:if(this.currentTrack?.info?.type!==`video`)break;this.readContiguousElements(e.slice(s,o));break;case L.MatrixCoefficients:{if(this.currentTrack?.info?.type!==`video`)break;let t=x[R(e,o)];this.currentTrack.info.colorSpace.matrix=t}break;case L.Range:{if(this.currentTrack?.info?.type!==`video`)break;let t=R(e,o);this.currentTrack.info.colorSpace.fullRange=t===1||t===2?t===2:void 0}break;case L.TransferCharacteristics:{if(this.currentTrack?.info?.type!==`video`)break;let t=y[R(e,o)];this.currentTrack.info.colorSpace.transfer=t}break;case L.Primaries:{if(this.currentTrack?.info?.type!==`video`)break;let t=_[R(e,o)];this.currentTrack.info.colorSpace.primaries=t}break;case L.Projection:if(this.currentTrack?.info?.type!==`video`)break;this.readContiguousElements(e.slice(s,o));break;case L.ProjectionPoseRoll:{if(this.currentTrack?.info?.type!==`video`)break;let t=-oa(e,o);try{this.currentTrack.info.rotation=i(t)}catch{}}break;case L.Audio:if(this.currentTrack?.info?.type!==`audio`)break;this.readContiguousElements(e.slice(s,o));break;case L.SamplingFrequency:if(this.currentTrack?.info?.type!==`audio`)break;this.currentTrack.info.sampleRate=oa(e,o);break;case L.Channels:if(this.currentTrack?.info?.type!==`audio`)break;this.currentTrack.info.numberOfChannels=R(e,o);break;case L.BitDepth:if(this.currentTrack?.info?.type!==`audio`)break;this.currentTrack.info.bitDepth=R(e,o);break;case L.CuePoint:if(!this.currentSegment)break;this.readContiguousElements(e.slice(s,o)),this.currentCueTime=null;break;case L.CueTime:this.currentCueTime=R(e,o);break;case L.CueTrackPositions:{if(this.currentCueTime===null)break;r(this.currentSegment);let t={time:this.currentCueTime,trackId:-1,clusterPosition:-1};this.currentSegment.cuePoints.push(t),this.readContiguousElements(e.slice(s,o)),(t.trackId===-1||t.clusterPosition===-1)&&this.currentSegment.cuePoints.pop()}break;case L.CueTrack:{let t=this.currentSegment?.cuePoints[this.currentSegment.cuePoints.length-1];if(!t)break;t.trackId=R(e,o)}break;case L.CueClusterPosition:{let t=this.currentSegment?.cuePoints[this.currentSegment.cuePoints.length-1];if(!t)break;r(this.currentSegment),t.clusterPosition=this.currentSegment.dataStartPos+R(e,o)}break;case L.Timestamp:if(!this.currentCluster)break;this.currentCluster.timestamp=R(e,o);break;case L.SimpleBlock:{if(!this.currentCluster)break;let t=$i(e);if(t===null)break;let n=this.getTrackDataInCluster(this.currentCluster,t);if(!n)break;let r=pu(e),i=H(e),a=i>>1&3,c=!!(i&128);n.track.info?.type===`audio`&&n.track.info.codec&&(c=!0);let l=V(e,o-(e.filePos-s)),u=n.track.decodingInstructions.length>0;n.blocks.push({timestamp:r,duration:0,isKeyFrame:c,data:l,lacing:a,decoded:!u,postProcessed:!1,mainAdditional:null})}break;case L.BlockGroup:if(!this.currentCluster)break;this.readContiguousElements(e.slice(s,o)),this.currentBlock=null;break;case L.Block:{if(!this.currentCluster)break;let t=$i(e);if(t===null)break;let n=this.getTrackDataInCluster(this.currentCluster,t);if(!n)break;let r=pu(e),i=H(e)>>1&3,a=V(e,o-(e.filePos-s)),c=n.track.decodingInstructions.length>0;this.currentBlock={timestamp:r,duration:0,isKeyFrame:!0,data:a,lacing:i,decoded:!c,postProcessed:!1,mainAdditional:null},n.blocks.push(this.currentBlock)}break;case L.BlockAdditions:this.readContiguousElements(e.slice(s,o));break;case L.BlockMore:if(!this.currentBlock)break;this.currentBlockAdditional={addId:1,data:null},this.readContiguousElements(e.slice(s,o)),this.currentBlockAdditional.data&&this.currentBlockAdditional.addId===1&&(this.currentBlock.mainAdditional=this.currentBlockAdditional.data),this.currentBlockAdditional=null;break;case L.BlockAdditional:if(!this.currentBlockAdditional)break;this.currentBlockAdditional.data=V(e,o);break;case L.BlockAddID:if(!this.currentBlockAdditional)break;this.currentBlockAdditional.addId=R(e,o);break;case L.BlockDuration:if(!this.currentBlock)break;this.currentBlock.duration=R(e,o);break;case L.ReferenceBlock:if(!this.currentBlock)break;this.currentBlock.isKeyFrame=!1;break;case L.Tag:this.currentTagTargetIsMovie=!0,this.readContiguousElements(e.slice(s,o));break;case L.Targets:this.readContiguousElements(e.slice(s,o));break;case L.TargetTypeValue:R(e,o)!==50&&(this.currentTagTargetIsMovie=!1);break;case L.TagTrackUID:case L.TagEditionUID:case L.TagChapterUID:case L.TagAttachmentUID:this.currentTagTargetIsMovie=!1;break;case L.SimpleTag:if(!this.currentTagTargetIsMovie)break;this.currentSimpleTagName=null,this.readContiguousElements(e.slice(s,o));break;case L.TagName:this.currentSimpleTagName=aa(e,o);break;case L.TagString:{if(!this.currentSimpleTagName)break;let t=aa(e,o);this.processTagValue(this.currentSimpleTagName,t)}break;case L.TagBinary:{if(!this.currentSimpleTagName)break;let t=V(e,o);this.processTagValue(this.currentSimpleTagName,t)}break;case L.AttachedFile:{if(!this.currentSegment)break;this.currentAttachedFile={fileUid:null,fileName:null,fileMediaType:null,fileData:null,fileDescription:null},this.readContiguousElements(e.slice(s,o));let t=this.currentSegment.metadataTags;if(this.currentAttachedFile.fileUid&&this.currentAttachedFile.fileData&&(t.raw??={},t.raw[this.currentAttachedFile.fileUid.toString()]=new St(this.currentAttachedFile.fileData,this.currentAttachedFile.fileMediaType??void 0,this.currentAttachedFile.fileName??void 0,this.currentAttachedFile.fileDescription??void 0)),this.currentAttachedFile.fileMediaType?.startsWith(`image/`)&&this.currentAttachedFile.fileData){let e=this.currentAttachedFile.fileName,n=`unknown`;if(e){let t=e.toLowerCase();t.startsWith(`cover.`)?n=`coverFront`:t.startsWith(`back.`)&&(n=`coverBack`)}t.images??=[],t.images.push({data:this.currentAttachedFile.fileData,mimeType:this.currentAttachedFile.fileMediaType,kind:n,name:this.currentAttachedFile.fileName??void 0,description:this.currentAttachedFile.fileDescription??void 0})}this.currentAttachedFile=null}break;case L.FileUID:if(!this.currentAttachedFile)break;this.currentAttachedFile.fileUid=ea(e,o);break;case L.FileName:if(!this.currentAttachedFile)break;this.currentAttachedFile.fileName=aa(e,o);break;case L.FileMediaType:if(!this.currentAttachedFile)break;this.currentAttachedFile.fileMediaType=ia(e,o);break;case L.FileData:if(!this.currentAttachedFile)break;this.currentAttachedFile.fileData=V(e,o);break;case L.FileDescription:if(!this.currentAttachedFile)break;this.currentAttachedFile.fileDescription=aa(e,o);break;case L.ContentEncodings:if(!this.currentTrack)break;this.readContiguousElements(e.slice(s,o)),this.currentTrack.decodingInstructions.sort((e,t)=>t.order-e.order);break;case L.ContentEncoding:this.currentDecodingInstruction={order:0,scope:pa.Block,data:null},this.readContiguousElements(e.slice(s,o)),this.currentDecodingInstruction.data&&this.currentTrack.decodingInstructions.push(this.currentDecodingInstruction),this.currentDecodingInstruction=null;break;case L.ContentEncodingOrder:if(!this.currentDecodingInstruction)break;this.currentDecodingInstruction.order=R(e,o);break;case L.ContentEncodingScope:if(!this.currentDecodingInstruction)break;this.currentDecodingInstruction.scope=R(e,o);break;case L.ContentCompression:if(!this.currentDecodingInstruction)break;this.currentDecodingInstruction.data={type:`decompress`,algorithm:ma.Zlib,settings:null},this.readContiguousElements(e.slice(s,o));break;case L.ContentCompAlgo:if(this.currentDecodingInstruction?.data?.type!==`decompress`)break;this.currentDecodingInstruction.data.algorithm=R(e,o);break;case L.ContentCompSettings:if(this.currentDecodingInstruction?.data?.type!==`decompress`)break;this.currentDecodingInstruction.data.settings=V(e,o);break;case L.ContentEncryption:if(!this.currentDecodingInstruction)break;this.currentDecodingInstruction.data={type:`decrypt`}}return e.filePos=s+o,!0}decodeBlockData(e,t){r(e.decodingInstructions.length>0);let n=t;for(let t of e.decodingInstructions)if(r(t.data),t.data.type===`decompress`)switch(t.data.algorithm){case ma.HeaderStripping:if(t.data.settings&&t.data.settings.length>0){let e=t.data.settings,r=new Uint8Array(e.length+n.length);r.set(e,0),r.set(n,e.length),n=r}}return n}processTagValue(e,t){if(!this.currentSegment?.metadataTags)return;let n=this.currentSegment.metadataTags;if(n.raw??={},n.raw[e]??=t,typeof t==`string`)switch(e.toLowerCase()){case`title`:n.title??=t;break;case`description`:n.description??=t;break;case`artist`:n.artist??=t;break;case`album`:n.album??=t;break;case`album_artist`:n.albumArtist??=t;break;case`genre`:n.genre??=t;break;case`comment`:n.comment??=t;break;case`lyrics`:n.lyrics??=t;break;case`date`:{let e=new Date(t);Number.isNaN(e.getTime())||(n.date??=e)}break;case`track_number`:case`part_number`:{let e=t.split(`/`),r=Number.parseInt(e[0],10),i=e[1]&&Number.parseInt(e[1],10);Number.isInteger(r)&&r>0&&(n.trackNumber??=r),i&&Number.isInteger(i)&&i>0&&(n.tracksTotal??=i)}break;case`disc_number`:case`disc`:{let e=t.split(`/`),r=Number.parseInt(e[0],10),i=e[1]&&Number.parseInt(e[1],10);Number.isInteger(r)&&r>0&&(n.discNumber??=r),i&&Number.isInteger(i)&&i>0&&(n.discsTotal??=i)}}}},va=class{constructor(e){this.internalTrack=e,this.packetToClusterLocation=new WeakMap}getId(){return this.internalTrack.id}getNumber(){let e=this.internalTrack.demuxer,t=this.internalTrack.trackBacking.getType(),n=0;for(let r of e.segments)for(let e of r.tracks)if(e.trackBacking.getType()===t&&n++,e===this.internalTrack)break;return n}getCodec(){throw Error(`Not implemented on base class.`)}getInternalCodecId(){return this.internalTrack.codecId}getName(){return this.internalTrack.name}getLanguageCode(){return this.internalTrack.languageCode}getTimeResolution(){return this.internalTrack.segment.timestampFactor}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getDisposition(){return this.internalTrack.disposition}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){let e=this.internalTrack.segment;if(e.duration<=0)return null;let t=e.duration/e.timestampFactor,n=await this.getFirstPacket({metadataOnly:!0});return t+=n?.timestamp??0,t}async getLiveRefreshInterval(){return null}async getFirstPacket(e){return this.performClusterLookup(null,e=>e.trackData.get(this.internalTrack.id)?{blockIndex:0,correctBlockFound:!0}:{blockIndex:-1,correctBlockFound:!1},-1/0,1/0,e)}intoTimescale(e){return xe(e*this.internalTrack.segment.timestampFactor)}async getPacket(e,t){let n=this.intoTimescale(e);return this.performClusterLookup(null,e=>{let t=e.trackData.get(this.internalTrack.id);if(!t)return{blockIndex:-1,correctBlockFound:!1};let r=w(t.presentationTimestamps,n,e=>e.timestamp);return{blockIndex:r===-1?-1:t.presentationTimestamps[r].blockIndex,correctBlockFound:r!==-1&&n<t.endTimestamp}},n,n,t)}async getNextPacket(e,t){let n=this.packetToClusterLocation.get(e);if(n===void 0)throw Error(`Packet was not created from this track.`);return this.performClusterLookup(n.cluster,e=>{if(e===n.cluster){let t=e.trackData.get(this.internalTrack.id);if(n.blockIndex+1<t.blocks.length)return{blockIndex:n.blockIndex+1,correctBlockFound:!0}}else if(e.trackData.get(this.internalTrack.id))return{blockIndex:0,correctBlockFound:!0};return{blockIndex:-1,correctBlockFound:!1}},-1/0,1/0,t)}async getKeyPacket(e,t){let n=this.intoTimescale(e);return this.performClusterLookup(null,e=>{let t=e.trackData.get(this.internalTrack.id);if(!t)return{blockIndex:-1,correctBlockFound:!1};let r=de(t.presentationTimestamps,e=>t.blocks[e.blockIndex].isKeyFrame&&e.timestamp<=n);return{blockIndex:r===-1?-1:t.presentationTimestamps[r].blockIndex,correctBlockFound:r!==-1&&n<t.endTimestamp}},n,n,t)}async getNextKeyPacket(e,t){let n=this.packetToClusterLocation.get(e);if(n===void 0)throw Error(`Packet was not created from this track.`);return this.performClusterLookup(n.cluster,e=>{if(e===n.cluster){let t=e.trackData.get(this.internalTrack.id).blocks.findIndex((e,t)=>e.isKeyFrame&&t>n.blockIndex);if(t!==-1)return{blockIndex:t,correctBlockFound:!0}}else{let t=e.trackData.get(this.internalTrack.id);if(t&&t.firstKeyFrameTimestamp!==null){let e=t.blocks.findIndex(e=>e.isKeyFrame);return r(e!==-1),{blockIndex:e,correctBlockFound:!0}}}return{blockIndex:-1,correctBlockFound:!1}},-1/0,1/0,t)}async fetchPacketInCluster(e,t,n){if(t===-1)return null;let i=e.trackData.get(this.internalTrack.id).blocks[t];if(r(i),i.decoded||=(i.data=this.internalTrack.demuxer.decodeBlockData(this.internalTrack,i.data),!0),!i.postProcessed){if(this.internalTrack.info?.codec===`prores`&&!(i.data.length>=8&&i.data[4]===105&&i.data[5]===99&&i.data[6]===112&&i.data[7]===102)){let e=new Uint8Array(i.data.length+8);d(e).setUint32(0,e.length,!1),e[4]=105,e[5]=99,e[6]=112,e[7]=102,e.set(i.data,8),i.data=e}i.postProcessed=!0}let a=n.metadataOnly?ti:i.data,o=i.timestamp/this.internalTrack.segment.timestampFactor,s=i.duration/this.internalTrack.segment.timestampFactor,c={};i.mainAdditional&&this.internalTrack.info?.type===`video`&&this.internalTrack.info.alphaMode&&(c.alpha=n.metadataOnly?ti:i.mainAdditional,c.alphaByteLength=i.mainAdditional.byteLength);let l=new I(a,i.isKeyFrame?`key`:`delta`,o,s,e.dataStartPos+t,i.data.byteLength,c);return this.packetToClusterLocation.set(l,{cluster:e,blockIndex:t}),l}async performClusterLookup(e,t,n,i,a){let{demuxer:o,segment:s}=this.internalTrack,c=null,l=null,u=-1;if(e){let{blockIndex:n,correctBlockFound:r}=t(e);if(r)return this.fetchPacketInCluster(e,n,a);n!==-1&&(l=e,u=n)}let d=w(this.internalTrack.cuePoints,n,e=>e.time),f=d===-1?null:this.internalTrack.cuePoints[d],p=w(this.internalTrack.clusterPositionCache,n,e=>e.startTimestamp),m=p===-1?null:this.internalTrack.clusterPositionCache[p],h=Math.max(f?.clusterPosition??0,m?.elementStartPos??0)||null,g;for(e?h===null||e.elementStartPos>=h?(g=e.elementEndPos,c=e):g=h:g=h??s.clusterSeekStartPos;s.elementEndPos===null||g<=s.elementEndPos-2;){if(c){let e=c.trackData.get(this.internalTrack.id);if(e&&e.startTimestamp>i)break}let e=o.reader.requestSliceRange(g,2,16);if(O(e)&&(e=await e),!e)break;let n=g,d=ra(e);if(!d||!Gi.includes(d.id)&&d.id!==L.Void){let e=await ca(o.reader,n,Gi,Math.min(s.elementEndPos??1/0,n+ga));if(e){g=e;continue}break}let f=d.id,p=d.size,m=e.filePos;if(f===L.Cluster){c=await o.readCluster(n,s),p=c.elementEndPos-m;let{blockIndex:e,correctBlockFound:r}=t(c);if(r)return this.fetchPacketInCluster(c,e,a);e!==-1&&(l=c,u=e)}p===void 0&&(r(f!==L.Cluster),p=(await sa(o.reader,m,Ki,s.elementEndPos)).pos-m);let h=m+p;if(s.elementEndPos===null){let e=o.reader.requestSliceRange(h,2,16);if(O(e)&&(e=await e),!e)break;if(ta(e)===L.Segment){s.elementEndPos=h;break}}g=h}if(f&&(!l||l.elementStartPos<f.clusterPosition)){let e=this.internalTrack.cuePoints[d-1];r(!e||e.time<f.time);let n=e?.time??-1/0;return this.performClusterLookup(null,t,n,i,a)}return l?this.fetchPacketInCluster(l,u,a):null}},ya=class extends va{constructor(e){super(e),this.decoderConfigPromise=null,this.internalTrack=e}getType(){return`video`}getCodec(){return this.internalTrack.info.codec}getCodedWidth(){return this.internalTrack.info.width}getCodedHeight(){return this.internalTrack.info.height}getSquarePixelWidth(){return this.internalTrack.info.squarePixelWidth}getSquarePixelHeight(){return this.internalTrack.info.squarePixelHeight}getRotation(){return this.internalTrack.info.rotation}async getColorSpace(){let e=await this.getDecoderConfig();return e?{primaries:e.colorSpace?.primaries,transfer:e.colorSpace?.transfer,matrix:e.colorSpace?.matrix,fullRange:e.colorSpace?.fullRange}:this.internalTrack.info.colorSpace}async canBeTransparent(){return this.internalTrack.info.alphaMode||this.internalTrack.info.codec===`prores`&&(this.internalTrack.info.proresFormat===`ap4h`||this.internalTrack.info.proresFormat===`ap4x`)}async getDecoderConfig(){return this.internalTrack.info.codec?this.decoderConfigPromise??=(async()=>{let e=null;(this.internalTrack.info.codec===`vp9`||this.internalTrack.info.codec===`av1`||this.internalTrack.info.codec===`prores`||this.internalTrack.info.codec===`avc`&&!this.internalTrack.info.codecDescription||this.internalTrack.info.codec===`hevc`&&!this.internalTrack.info.codecDescription)&&(e=await this.getFirstPacket({}));let t={width:this.internalTrack.info.width,height:this.internalTrack.info.height,codec:this.internalTrack.info.codec,codecDescription:this.internalTrack.info.codecDescription,colorSpace:this.internalTrack.info.colorSpace,avcType:1,avcCodecInfo:this.internalTrack.info.codec===`avc`&&e?Yt(e.data):null,hevcCodecInfo:this.internalTrack.info.codec===`hevc`&&e?on(e.data):null,vp9CodecInfo:this.internalTrack.info.codec===`vp9`&&e?yn(e.data):null,av1CodecInfo:this.internalTrack.info.codec===`av1`&&e?Sn(e.data):null,proresCodecInfo:this.internalTrack.info.codec===`prores`&&e?wn(e.data):null,proresFormat:this.internalTrack.info.proresFormat};if(!S(this.internalTrack.info.colorSpace)){let e=wr(t);this.internalTrack.info.colorSpace.primaries??=e.primaries,this.internalTrack.info.colorSpace.transfer??=e.transfer,this.internalTrack.info.colorSpace.matrix??=e.matrix,this.internalTrack.info.colorSpace.fullRange??=e.fullRange}let n={codec:Cr(t),codedWidth:this.internalTrack.info.width,codedHeight:this.internalTrack.info.height,description:this.internalTrack.info.codecDescription??void 0,colorSpace:this.internalTrack.info.colorSpace};return(this.internalTrack.info.width!==this.internalTrack.info.squarePixelWidth||this.internalTrack.info.height!==this.internalTrack.info.squarePixelHeight)&&(n.displayAspectWidth=this.internalTrack.info.squarePixelWidth,n.displayAspectHeight=this.internalTrack.info.squarePixelHeight),n})():null}},ba=class extends va{constructor(e){super(e),this.decoderConfigPromise=null,this.internalTrack=e}getType(){return`audio`}getCodec(){return this.internalTrack.info.codec}getNumberOfChannels(){return this.internalTrack.info.numberOfChannels}getSampleRate(){return this.internalTrack.info.sampleRate}async getDecoderConfig(){return this.internalTrack.info.codec?this.decoderConfigPromise??=(async()=>{if(this.internalTrack.info.codec===`dts`&&!this.internalTrack.info.dtsFormat){let e=await this.getFirstPacket({});this.internalTrack.info.dtsFormat=e&&rr(e.data)}return{codec:Er({codec:this.internalTrack.info.codec,codecDescription:this.internalTrack.info.codecDescription,aacCodecInfo:this.internalTrack.info.aacCodecInfo,dtsFormat:this.internalTrack.info.dtsFormat}),numberOfChannels:this.internalTrack.info.numberOfChannels,sampleRate:this.internalTrack.info.sampleRate,description:this.internalTrack.info.codecDescription??void 0}})():null}},xa=async(e,t,n,r=null)=>{let i=2**16,a=t;for(;n===null||a<n;){let t=n===null?i:Math.min(i,n-a),o=e.requestSliceRange(a,4,t);if(O(o)&&(o=await o),!o||o.length<4)break;for(;o.remainingLength>=4;){let t=o.filePos,n=Yr(W(o),e.fileSize===null?null:e.fileSize-a);if(n.header&&(!r||n.header.sampleRate===r.sampleRate&&n.header.mpegVersionId===r.mpegVersionId&&n.header.layer===r.layer&&$r(n.header.channel)===$r(r.channel)))return{header:n.header,startPos:a};o.filePos=t+n.bytesAdvanced,a=o.filePos}}return null},Sa=class extends ei{constructor(e){super(e),this.metadataPromise=null,this.firstFrameHeader=null,this.firstFrameHeaderPos=null,this.xingFrameHeader=null,this.xingFrameHeaderPos=null,this.loadedSamples=[],this.metadataTags=null,this.xingData=null,this.trackBackings=[],this.readingMutex=new ne,this.lastSampleLoaded=!1,this.lastLoadedPos=0,this.nextTimestampInSamples=0,this.reader=e._reader}async readMetadata(){return this.metadataPromise??=(async()=>{for(;!this.firstFrameHeader&&!this.lastSampleLoaded;)await this.advanceReader();if(!this.firstFrameHeader&&this.xingFrameHeader&&(this.firstFrameHeader=this.xingFrameHeader,this.firstFrameHeaderPos=this.xingFrameHeaderPos),!this.firstFrameHeader)throw Error(`No valid MP3 frame found.`);this.trackBackings=[new Ca(this)]})()}async advanceReader(){if(this.lastLoadedPos===0)for(;;){let e=this.reader.requestSlice(this.lastLoadedPos,10);if(O(e)&&(e=await e),!e){this.lastSampleLoaded=!0;return}let t=Au(e);if(!t)break;this.lastLoadedPos=e.filePos+t.size}let e=await xa(this.reader,this.lastLoadedPos,this.reader.fileSize,this.firstFrameHeader);if(!e){this.lastSampleLoaded=!0;return}let t=e.header;this.lastLoadedPos=e.startPos+t.totalSize-1;let n=Jr(t.mpegVersionId,t.channel),r=this.reader.requestSlice(e.startPos+n,4);if(O(r)&&(r=await r),r){let i=W(r);if(i===1483304551||i===1231971951){if(this.xingFrameHeader||(this.xingFrameHeader=t,this.xingFrameHeaderPos=e.startPos),!this.xingData){let t=this.reader.requestSlice(e.startPos+n+4,12);if(O(t)&&(t=await t),t){let e=d(V(t,12)),n=e.getUint32(0,!1);this.xingData={frameCount:n&Qr.FrameCount?e.getUint32(4,!1):null,fileSize:n&Qr.FileSize?e.getUint32(8,!1):null}}}return}}this.firstFrameHeader||(this.firstFrameHeader=t,this.firstFrameHeaderPos=e.startPos);let i=t.audioSamplesInFrame/this.firstFrameHeader.sampleRate,a={timestamp:this.nextTimestampInSamples/this.firstFrameHeader.sampleRate,duration:i,dataStart:e.startPos,dataSize:t.totalSize};this.loadedSamples.push(a),this.nextTimestampInSamples+=t.audioSamplesInFrame}async getMimeType(){return`audio/mpeg`}async getTrackBackings(){return await this.readMetadata(),this.trackBackings}async getMetadataTags(){let e=await this.readingMutex.acquire();try{if(await this.readMetadata(),this.metadataTags)return this.metadataTags;this.metadataTags={};let e=0,t=!1;for(;;){let n=this.reader.requestSlice(e,10);if(O(n)&&(n=await n),!n)break;let r=Au(n);if(!r)break;t=!0;let i=this.reader.requestSlice(n.filePos,r.size);if(O(i)&&(i=await i),!i)break;ju(i,r,this.metadataTags),e=n.filePos+r.size}if(!t&&this.reader.fileSize!==null&&this.reader.fileSize>=128){let e=this.reader.requestSlice(this.reader.fileSize-128,128);O(e)&&(e=await e),r(e),G(e,3)===`TAG`&&Ou(e,this.metadataTags)}return this.metadataTags}finally{e()}}},Ca=class{constructor(e){this.demuxer=e}getType(){return`audio`}getId(){return 1}getNumber(){return 1}getTimeResolution(){return r(this.demuxer.firstFrameHeader),this.demuxer.firstFrameHeader.sampleRate/this.demuxer.firstFrameHeader.audioSamplesInFrame}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){let e=this.demuxer;if(r(e.firstFrameHeader!==null),r(e.firstFrameHeaderPos!==null),e.xingData){if(e.xingData.frameCount!==null)return e.xingData.frameCount*e.firstFrameHeader.audioSamplesInFrame/e.firstFrameHeader.sampleRate}else if(e.reader.fileSize!==null){let t=qr(e.firstFrameHeader.lowSamplingFrequency,e.firstFrameHeader.layer,e.firstFrameHeader.bitrate,e.firstFrameHeader.sampleRate),n=(e.reader.fileSize-e.firstFrameHeaderPos)/t;return Math.round(n)*e.firstFrameHeader.audioSamplesInFrame/e.firstFrameHeader.sampleRate}return null}async getLiveRefreshInterval(){return null}getName(){return null}getLanguageCode(){return`und`}getCodec(){return`mp3`}getInternalCodecId(){return null}getNumberOfChannels(){return r(this.demuxer.firstFrameHeader),$r(this.demuxer.firstFrameHeader.channel)}getSampleRate(){return r(this.demuxer.firstFrameHeader),this.demuxer.firstFrameHeader.sampleRate}getDisposition(){return{...Tt}}async getDecoderConfig(){return r(this.demuxer.firstFrameHeader),{codec:`mp3`,numberOfChannels:$r(this.demuxer.firstFrameHeader.channel),sampleRate:this.demuxer.firstFrameHeader.sampleRate}}async getPacketAtIndex(e,t){if(e===-1)return null;let n=this.demuxer.loadedSamples[e];if(!n)return null;let r;if(t.metadataOnly)r=ti;else{let e=this.demuxer.reader.requestSlice(n.dataStart,n.dataSize);if(O(e)&&(e=await e),!e)return null;r=V(e,n.dataSize)}return new I(r,`key`,n.timestamp,n.duration,e,n.dataSize)}getFirstPacket(e){return this.getPacketAtIndex(0,e)}async getNextPacket(e,t){let n=await this.demuxer.readingMutex.acquire();try{let n=se(this.demuxer.loadedSamples,e.timestamp,e=>e.timestamp);if(n===-1)throw Error(`Packet was not created from this track.`);let r=n+1;for(;r>=this.demuxer.loadedSamples.length&&!this.demuxer.lastSampleLoaded;)await this.demuxer.advanceReader();return this.getPacketAtIndex(r,t)}finally{n()}}async getPacket(e,t){let n=await this.demuxer.readingMutex.acquire();try{for(;;){let n=w(this.demuxer.loadedSamples,e,e=>e.timestamp);if(n===-1&&this.demuxer.loadedSamples.length>0)return null;if(this.demuxer.lastSampleLoaded||n>=0&&n+1<this.demuxer.loadedSamples.length)return this.getPacketAtIndex(n,t);await this.demuxer.advanceReader()}}finally{n()}}getKeyPacket(e,t){return this.getPacket(e,t)}getNextKeyPacket(e,t){return this.getNextPacket(e,t)}},wa=1399285583,Ta=79764919,Ea=new Uint32Array(256);for(let e=0;e<256;e++){let t=e<<24;for(let e=0;e<8;e++)t=t&2147483648?t<<1^Ta:t<<1;Ea[e]=t>>>0&4294967295}var Da=e=>{let t=d(e),n=t.getUint32(22,!0);t.setUint32(22,0,!0);let r=0;for(let t=0;t<e.length;t++){let n=e[t];r=(r<<8^Ea[r>>>24^n])>>>0}return t.setUint32(22,n,!0),r},Oa=(e,t,n)=>{let i=0,a=null;if(e.length>0){if(t.codec===`vorbis`){r(t.vorbisInfo);let o=t.vorbisInfo.modeBlockflags.length,s=(1<<Ee(o-1))-1<<1,c=(e[0]&s)>>1;if(c>=t.vorbisInfo.modeBlockflags.length)throw Error(`Invalid mode number.`);let l=n,u=t.vorbisInfo.modeBlockflags[c];if(a=t.vorbisInfo.blocksizes[u],u===1){let n=(s|1)+1,r=e[0]&n?1:0;l=t.vorbisInfo.blocksizes[r]}i=l===null?0:l+a>>2}else t.codec===`opus`&&(i=Dn(e).durationInSamples)}return{durationInSamples:i,vorbisBlockSize:a}},ka=e=>{let t=`audio/ogg`;if(e.codecStrings){let n=[...new Set(e.codecStrings)];t+=`; codecs="${n.join(`, `)}"`}return t},Aa=65307,ja=e=>{let t=e.filePos;if(hu(e)!==1399285583)return null;e.skip(1);let n=H(e),r=xu(e),i=hu(e),a=hu(e),o=hu(e),s=H(e),c=new Uint8Array(s);for(let t=0;t<s;t++)c[t]=H(e);let l=27+s,u=c.reduce((e,t)=>e+t,0);return{headerStartPos:t,totalSize:l+u,dataStartPos:t+l,dataSize:u,headerType:n,granulePosition:r,serialNumber:i,sequenceNumber:a,checksum:o,lacingValues:c}},Ma=(e,t)=>{for(;e.filePos<t-3;){let t=hu(e),n=t&255,r=t>>>8&255,i=t>>>16&255,a=t>>>24&255;if(n===79||r===79||i===79||a===79){if(e.skip(-4),t===1399285583)return!0;e.skip(1)}}return!1},Na=class extends ei{constructor(e){super(e),this.metadataPromise=null,this.bitstreams=[],this.trackBackings=[],this.metadataTags={},this.reader=e._reader}async readMetadata(){return this.metadataPromise??=(async()=>{let e=0;for(;;){let t=this.reader.requestSliceRange(e,27,282);if(O(t)&&(t=await t),!t)break;let n=ja(t);if(!n||!(n.headerType&2))break;this.bitstreams.push({serialNumber:n.serialNumber,bosPage:n,description:null,numberOfChannels:-1,sampleRate:-1,codecInfo:{codec:null,vorbisInfo:null,opusInfo:null},lastMetadataPacket:null}),e=n.headerStartPos+n.totalSize}for(let e of this.bitstreams){let t=await this.readPacket(e.bosPage,0);t&&(t.data.byteLength>=7&&t.data[0]===1&&t.data[1]===118&&t.data[2]===111&&t.data[3]===114&&t.data[4]===98&&t.data[5]===105&&t.data[6]===115?await this.readVorbisMetadata(t,e):t.data.byteLength>=8&&t.data[0]===79&&t.data[1]===112&&t.data[2]===117&&t.data[3]===115&&t.data[4]===72&&t.data[5]===101&&t.data[6]===97&&t.data[7]===100&&await this.readOpusMetadata(t,e),e.codecInfo.codec!==null&&this.trackBackings.push(new Pa(e,this)))}})()}async readVorbisMetadata(e,t){let n=await this.findNextPacketStart(e);if(!n)return;let r=await this.readPacket(n.startPage,n.startSegmentIndex);if(!r||(n=await this.findNextPacketStart(r),!n))return;let i=await this.readPacket(n.startPage,n.startSegmentIndex);if(!i||r.data[0]!==3||i.data[0]!==5)return;let a=[],o=e=>{for(;a.push(Math.min(255,e)),!(e<255);)e-=255};o(e.data.length),o(r.data.length);let s=new Uint8Array(1+a.length+e.data.length+r.data.length+i.data.length);s[0]=2,s.set(a,1),s.set(e.data,1+a.length),s.set(r.data,1+a.length+e.data.length),s.set(i.data,1+a.length+e.data.length+r.data.length),t.codecInfo.codec=`vorbis`,t.description=s,t.lastMetadataPacket=i;let c=d(e.data);t.numberOfChannels=c.getUint8(11),t.sampleRate=c.getUint32(12,!0);let l=c.getUint8(28);t.codecInfo.vorbisInfo={blocksizes:[1<<(l&15),1<<(l>>4)],modeBlockflags:On(i.data).modeBlockflags},jn(r.data.subarray(7),this.metadataTags)}async readOpusMetadata(e,t){let n=await this.findNextPacketStart(e);if(!n)return;let r=await this.readPacket(n.startPage,n.startSegmentIndex);if(!r)return;t.codecInfo.codec=`opus`,t.description=e.data,t.lastMetadataPacket=r;let i=Tn(e.data);t.numberOfChannels=i.outputChannelCount,t.sampleRate=Or,t.codecInfo.opusInfo={preSkip:i.preSkip},jn(r.data.subarray(8),this.metadataTags)}async readPacket(e,t){r(t<e.lacingValues.length);let n=0;for(let r=0;r<t;r++)n+=e.lacingValues[r];let i=e,a=n,o=t,s=[];outer:for(;;){let t=this.reader.requestSlice(i.dataStartPos,i.dataSize);O(t)&&(t=await t),r(t);let c=V(t,i.dataSize);for(;;){if(o===i.lacingValues.length){s.push(c.subarray(n,a));break}let e=i.lacingValues[o];if(a+=e,e<255){s.push(c.subarray(n,a));break outer}o++}let l=i.headerStartPos+i.totalSize;for(;;){let t=this.reader.requestSliceRange(l,27,282);if(O(t)&&(t=await t),!t)return null;let n=ja(t);if(!n)return null;if(i=n,i.serialNumber===e.serialNumber)break;l=i.headerStartPos+i.totalSize}n=0,a=0,o=0}let c=s.reduce((e,t)=>e+t.length,0);if(c===0)return null;let l=new Uint8Array(c),u=0;for(let e=0;e<s.length;e++){let t=s[e];l.set(t,u),u+=t.length}return{data:l,endPage:i,endSegmentIndex:o}}async findNextPacketStart(e){if(e.endSegmentIndex<e.endPage.lacingValues.length-1)return{startPage:e.endPage,startSegmentIndex:e.endSegmentIndex+1};if(e.endPage.headerType&4)return null;let t=e.endPage.headerStartPos+e.endPage.totalSize;for(;;){let n=this.reader.requestSliceRange(t,27,282);if(O(n)&&(n=await n),!n)return null;let r=ja(n);if(!r)return null;if(r.serialNumber===e.endPage.serialNumber)return{startPage:r,startSegmentIndex:0};t=r.headerStartPos+r.totalSize}}async getMimeType(){return await this.readMetadata(),ka({codecStrings:(await Promise.all(this.trackBackings.map(e=>e.getDecoderConfig().then(e=>e?.codec??null)))).filter(Boolean)})}async getTrackBackings(){return await this.readMetadata(),this.trackBackings}async getMetadataTags(){return await this.readMetadata(),this.metadataTags}},Pa=class{constructor(e,t){this.bitstream=e,this.demuxer=t,this.encodedPacketToMetadata=new WeakMap,this.sequentialScanCache=[],this.sequentialScanMutex=new ne,this.internalSampleRate=e.codecInfo.codec===`opus`?Or:e.sampleRate}getType(){return`audio`}getId(){return this.bitstream.serialNumber}getNumber(){let e=this.demuxer.trackBackings.findIndex(e=>e.bitstream===this.bitstream);return r(e!==-1),e+1}getNumberOfChannels(){return this.bitstream.numberOfChannels}getSampleRate(){return this.bitstream.sampleRate}getTimeResolution(){return this.bitstream.sampleRate}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){return null}async getLiveRefreshInterval(){return null}getCodec(){return this.bitstream.codecInfo.codec}getInternalCodecId(){return null}async getDecoderConfig(){return r(this.bitstream.codecInfo.codec),{codec:this.bitstream.codecInfo.codec,numberOfChannels:this.bitstream.numberOfChannels,sampleRate:this.bitstream.sampleRate,description:this.bitstream.description??void 0}}getName(){return null}getLanguageCode(){return`und`}getDisposition(){return{...Tt,primary:!1}}granulePositionToTimestampInSamples(e){return this.bitstream.codecInfo.codec===`opus`?(r(this.bitstream.codecInfo.opusInfo),e-this.bitstream.codecInfo.opusInfo.preSkip):e}createEncodedPacketFromOggPacket(e,t,n){if(!e)return null;let{durationInSamples:r,vorbisBlockSize:i}=Oa(e.data,this.bitstream.codecInfo,t.vorbisLastBlocksize),a=new I(n.metadataOnly?ti:e.data,`key`,Math.max(0,t.timestampInSamples)/this.internalSampleRate,r/this.internalSampleRate,e.endPage.headerStartPos+e.endSegmentIndex,e.data.byteLength);return this.encodedPacketToMetadata.set(a,{packet:e,timestampInSamples:t.timestampInSamples,durationInSamples:r,vorbisLastBlockSize:t.vorbisLastBlocksize,vorbisBlockSize:i}),a}async getFirstPacket(e){r(this.bitstream.lastMetadataPacket);let t=await this.demuxer.findNextPacketStart(this.bitstream.lastMetadataPacket);if(!t)return null;let n=0;this.bitstream.codecInfo.codec===`opus`&&(r(this.bitstream.codecInfo.opusInfo),n-=this.bitstream.codecInfo.opusInfo.preSkip);let i=await this.demuxer.readPacket(t.startPage,t.startSegmentIndex);return this.createEncodedPacketFromOggPacket(i,{timestampInSamples:n,vorbisLastBlocksize:null},e)}async getNextPacket(e,t){let n=this.encodedPacketToMetadata.get(e);if(!n)throw Error(`Packet was not created from this track.`);let r=await this.demuxer.findNextPacketStart(n.packet);if(!r)return null;let i=n.timestampInSamples+n.durationInSamples,a=await this.demuxer.readPacket(r.startPage,r.startSegmentIndex);return this.createEncodedPacketFromOggPacket(a,{timestampInSamples:i,vorbisLastBlocksize:n.vorbisBlockSize},t)}async getPacket(e,t){if(this.demuxer.reader.fileSize===null)return this.getPacketSequential(e,t);let n=xe(e*this.internalSampleRate);if(n===0)return this.getFirstPacket(t);if(n<0)return null;r(this.bitstream.lastMetadataPacket);let i=await this.demuxer.findNextPacketStart(this.bitstream.lastMetadataPacket);if(!i)return null;let a=i.startPage,o=this.demuxer.reader.fileSize,s=[a];outer:for(;a.headerStartPos+a.totalSize<o;){let e=a.headerStartPos,t=Math.floor((e+o)/2),i=t;for(;;){let e=Math.min(i+Aa,o-27),c=this.demuxer.reader.requestSlice(i,e-i);if(O(c)&&(c=await c),r(c),!Ma(c,e)){o=t+27;continue outer}let l=this.demuxer.reader.requestSliceRange(c.filePos,27,282);O(l)&&(l=await l),r(l);let u=ja(l);r(u);let d=!1;if(u.serialNumber===this.bitstream.serialNumber)d=!0;else{let e=this.demuxer.reader.requestSlice(u.headerStartPos,u.totalSize);O(e)&&(e=await e),r(e),d=Da(V(e,u.totalSize))===u.checksum}if(!d){i=u.headerStartPos+4;continue}if(d&&u.serialNumber!==this.bitstream.serialNumber){i=u.headerStartPos+u.totalSize;continue}if(u.granulePosition===-1){i=u.headerStartPos+u.totalSize;continue}this.granulePositionToTimestampInSamples(u.granulePosition)>n?o=u.headerStartPos:(a=u,s.push(u));continue outer}}let c=i.startPage;for(let e of s){if(e.granulePosition===a.granulePosition)break;(!c||e.headerStartPos>c.headerStartPos)&&(c=e)}let l=c,u=[l];for(;l.serialNumber!==this.bitstream.serialNumber||l.granulePosition!==a.granulePosition;){let e=l.headerStartPos+l.totalSize,t=this.demuxer.reader.requestSliceRange(e,27,282);O(t)&&(t=await t),r(t);let n=ja(t);r(n),l=n,l.serialNumber===this.bitstream.serialNumber&&u.push(l)}r(l.granulePosition!==-1);let d=null,f,p,m=l,h=0;if(l.headerStartPos===i.startPage.headerStartPos)f=this.granulePositionToTimestampInSamples(0),p=!0,d=0;else{f=0,p=!1;for(let e=l.lacingValues.length-1;e>=0;e--)if(l.lacingValues[e]<255){d=e+1;break}if(d===null)throw Error(`Invalid page with granule position: no packets end on this page.`);h=d-1;let e={data:ti,endPage:m,endSegmentIndex:h};if(await this.demuxer.findNextPacketStart(e)){let e=Ia(u,l,d);r(e);let t=Fa(u,e.page,e.segmentIndex);t&&(l=t.page,d=t.segmentIndex)}else for(;;){let e=Ia(u,l,d);if(!e)break;let t=Fa(u,e.page,e.segmentIndex);if(!t)break;if(l=t.page,d=t.segmentIndex,e.page.headerStartPos!==m.headerStartPos){m=e.page,h=e.segmentIndex;break}}}let g=null,_=null;for(;l!==null;){r(d!==null);let e=await this.demuxer.readPacket(l,d);if(!e)break;if(!(l.headerStartPos===i.startPage.headerStartPos&&d<i.startSegmentIndex)){let i=this.createEncodedPacketFromOggPacket(e,{timestampInSamples:f,vorbisLastBlocksize:_?.vorbisBlockSize??null},t);r(i);let a=this.encodedPacketToMetadata.get(i);if(r(a),!p&&e.endPage.headerStartPos===m.headerStartPos&&e.endSegmentIndex===h?(f=this.granulePositionToTimestampInSamples(l.granulePosition),p=!0,i=this.createEncodedPacketFromOggPacket(e,{timestampInSamples:f-a.durationInSamples,vorbisLastBlocksize:_?.vorbisBlockSize??null},t),r(i),a=this.encodedPacketToMetadata.get(i),r(a)):f+=a.durationInSamples,g=i,_=a,p&&(Math.max(f,0)>n||Math.max(a.timestampInSamples,0)===n))break}let a=await this.demuxer.findNextPacketStart(e);if(!a)break;l=a.startPage,d=a.startSegmentIndex}return g}async getPacketSequential(e,t){let n=await this.sequentialScanMutex.acquire();try{let n=xe(e*this.internalSampleRate);e=n/this.internalSampleRate;let i=w(this.sequentialScanCache,n,e=>e.timestampInSamples),o;if(i!==-1){let e=this.sequentialScanCache[i];o=this.createEncodedPacketFromOggPacket(e.packet,{timestampInSamples:e.timestampInSamples,vorbisLastBlocksize:e.vorbisLastBlockSize},t)}else o=await this.getFirstPacket(t);let s=0;for(;o&&o.timestamp<e;){let n=await this.getNextPacket(o,t);if(!n||n.timestamp>e)break;if(o=n,s++,s===100){s=0;let e=this.encodedPacketToMetadata.get(o);r(e),this.sequentialScanCache.length>0&&r(a(this.sequentialScanCache).timestampInSamples<=e.timestampInSamples),this.sequentialScanCache.push(e)}}return o}finally{n()}}getKeyPacket(e,t){return this.getPacket(e,t)}getNextKeyPacket(e,t){return this.getNextPacket(e,t)}},Fa=(e,t,n)=>{let i=t,a=n;outer:for(;;){for(a--;a>=0;a--)if(i.lacingValues[a]<255){a++;break outer}if(r(a===-1),!(i.headerType&1)){a=0;break}let t=ue(e,e=>e.headerStartPos<i.headerStartPos);if(!t)return null;i=t,a=i.lacingValues.length}if(r(a!==-1),a===i.lacingValues.length){let t=e[e.indexOf(i)+1];r(t),i=t,a=0}return{page:i,segmentIndex:a}},Ia=(e,t,n)=>{if(n>0)return{page:t,segmentIndex:n-1};let r=ue(e,e=>e.headerStartPos<t.headerStartPos);return r?{page:r,segmentIndex:r.lacingValues.length-1}:null},La;(function(e){e[e.PCM=1]=`PCM`,e[e.IEEE_FLOAT=3]=`IEEE_FLOAT`,e[e.ALAW=6]=`ALAW`,e[e.MULAW=7]=`MULAW`,e[e.EXTENSIBLE=65534]=`EXTENSIBLE`})(La||={});var Ra=class extends ei{constructor(e){super(e),this.metadataPromise=null,this.dataStart=-1,this.dataSize=-1,this.audioInfo=null,this.trackBackings=[],this.lastKnownPacketIndex=0,this.metadataTags={},this.reader=e._reader}async readMetadata(){return this.metadataPromise??=(async()=>{let e=this.reader.requestSlice(0,12);O(e)&&(e=await e),r(e);let t=G(e,4),n=t!==`RIFX`,i=t===`RF64`,a=mu(e,n),o=i?this.reader.fileSize:Math.min(a+8,this.reader.fileSize??1/0);if(G(e,4)!==`WAVE`)throw Error(`Invalid WAVE file - wrong format`);let s=0,c=null,l=e.filePos;for(;o===null||l<o;){let e=this.reader.requestSlice(l,8);if(O(e)&&(e=await e),!e)break;let t=G(e,4),r=mu(e,n),a=e.filePos;if(i&&s===0&&t!==`ds64`)throw Error(`Invalid RF64 file: First chunk must be "ds64".`);if(t===`fmt `)await this.parseFmtChunk(a,r,n);else if(t===`data`){if(c??=r,this.dataStart=e.filePos,this.dataSize=Math.min(c,(o??1/0)-this.dataStart),this.reader.fileSize===null)break}else if(t===`ds64`){let e=this.reader.requestSlice(a,r);if(O(e)&&(e=await e),!e)break;let t=vu(e,n);c=vu(e,n),o=Math.min(t+8,this.reader.fileSize??1/0)}else t===`LIST`?await this.parseListChunk(a,r,n):(t===`ID3 `||t===`id3 `)&&await this.parseId3Chunk(a,r);l=a+r+(r&1),s++}if(!this.audioInfo)throw Error(`Invalid WAVE file - missing "fmt " chunk`);if(this.dataStart===-1)throw Error(`Invalid WAVE file - missing "data" chunk`);let u=this.audioInfo.blockSizeInBytes;this.dataSize=Math.floor(this.dataSize/u)*u,this.trackBackings.push(new Ba(this))})()}async parseFmtChunk(e,t,n){let r=this.reader.requestSlice(e,t);if(O(r)&&(r=await r),!r)return;let i=du(r,n),a=du(r,n),o=mu(r,n);r.skip(4);let s=du(r,n),c;if(c=t===14?8:du(r,n),t>=18&&i!==357){let e=du(r,n),a=t-18;if(Math.min(a,e)>=22&&i===La.EXTENSIBLE){r.skip(6);let e=V(r,16);i=e[0]|e[1]<<8}}if((i===La.MULAW||i===La.ALAW)&&(c=8),i!==La.PCM&&i!==La.IEEE_FLOAT&&i!==La.ALAW&&i!==La.MULAW)throw Error(`Unsupported WAVE codec (format tag ${i}). Only integer/float PCM, A-law, and μ-law are supported.`);if(i===La.PCM&&![8,16,24,32].includes(c))throw Error(`Unsupported WAVE PCM bit depth (${c}). Only 8, 16, 24, and 32 bits are supported.`);if(i===La.IEEE_FLOAT&&![32,64].includes(c))throw Error(`Unsupported WAVE float bit depth (${c}). Only 32 and 64 bits are supported.`);this.audioInfo={format:i,numberOfChannels:a,sampleRate:o,sampleSizeInBytes:Math.ceil(c/8),blockSizeInBytes:s}}async parseListChunk(e,t,n){let r=this.reader.requestSlice(e,t);if(O(r)&&(r=await r),!r)return;let i=G(r,4);if(i!==`INFO`&&i!==`INF0`)return;let a=r.filePos;for(;a<=e+t-8;){r.filePos=a;let e=G(r,4),t=mu(r,n),i=V(r,t),o=0;for(let e=0;e<i.length&&i[e]!==0;e++)o++;let s=String.fromCharCode(...i.subarray(0,o));switch(this.metadataTags.raw??={},this.metadataTags.raw[e]=s,e){case`INAM`:case`TITL`:this.metadataTags.title??=s;break;case`TIT3`:this.metadataTags.description??=s;break;case`IART`:this.metadataTags.artist??=s;break;case`IPRD`:this.metadataTags.album??=s;break;case`IPRT`:case`ITRK`:case`TRCK`:{let e=s.split(`/`),t=Number.parseInt(e[0],10),n=e[1]&&Number.parseInt(e[1],10);Number.isInteger(t)&&t>0&&(this.metadataTags.trackNumber??=t),n&&Number.isInteger(n)&&n>0&&(this.metadataTags.tracksTotal??=n)}break;case`ICRD`:case`IDIT`:{let e=new Date(s);Number.isNaN(e.getTime())||(this.metadataTags.date??=e)}break;case`YEAR`:{let e=Number.parseInt(s,10);Number.isInteger(e)&&e>0&&(this.metadataTags.date??=new Date(e,0,1))}break;case`IGNR`:case`GENR`:this.metadataTags.genre??=s;break;case`ICMT`:case`CMNT`:case`COMM`:this.metadataTags.comment??=s}a+=8+t+(t&1)}}async parseId3Chunk(e,t){let n=this.reader.requestSlice(e,t);if(O(n)&&(n=await n),!n)return;let r=Au(n);if(r){let i=t-10;r.size=Math.min(r.size,i),r.size>0&&ju(n.slice(e+10,r.size),r,this.metadataTags)}}getCodec(){if(r(this.audioInfo),this.audioInfo.format===La.MULAW)return`ulaw`;if(this.audioInfo.format===La.ALAW)return`alaw`;if(this.audioInfo.format===La.PCM){if(this.audioInfo.sampleSizeInBytes===1)return`pcm-u8`;if(this.audioInfo.sampleSizeInBytes===2)return`pcm-s16`;if(this.audioInfo.sampleSizeInBytes===3)return`pcm-s24`;if(this.audioInfo.sampleSizeInBytes===4)return`pcm-s32`}if(this.audioInfo.format===La.IEEE_FLOAT){if(this.audioInfo.sampleSizeInBytes===4)return`pcm-f32`;if(this.audioInfo.sampleSizeInBytes===8)return`pcm-f64`}r(!1)}async getMimeType(){return`audio/wav`}async getTrackBackings(){return await this.readMetadata(),this.trackBackings}async getMetadataTags(){return await this.readMetadata(),this.metadataTags}},za=2048,Ba=class{constructor(e){this.demuxer=e}getType(){return`audio`}getId(){return 1}getNumber(){return 1}getCodec(){return this.demuxer.getCodec()}getInternalCodecId(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.format}async getDecoderConfig(){let e=this.demuxer.getCodec();return e?(r(this.demuxer.audioInfo),{codec:e,numberOfChannels:this.demuxer.audioInfo.numberOfChannels,sampleRate:this.demuxer.audioInfo.sampleRate}):null}getNumberOfChannels(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.numberOfChannels}getSampleRate(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.sampleRate}getTimeResolution(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.sampleRate}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){return r(this.demuxer.dataSize!==-1),this.demuxer.dataSize/this.demuxer.audioInfo.blockSizeInBytes/this.demuxer.audioInfo.sampleRate}async getLiveRefreshInterval(){return null}getName(){return null}getLanguageCode(){return`und`}getDisposition(){return{...Tt}}async getPacketAtIndex(e,t){r(e>=0),r(this.demuxer.audioInfo);let n=e*za*this.demuxer.audioInfo.blockSizeInBytes;if(n>=this.demuxer.dataSize)return null;let i=Math.min(za*this.demuxer.audioInfo.blockSizeInBytes,this.demuxer.dataSize-n);if(this.demuxer.reader.fileSize===null){let e=this.demuxer.reader.requestSlice(this.demuxer.dataStart+n,i);if(O(e)&&(e=await e),!e)return null}let a;if(t.metadataOnly)a=ti;else{let e=this.demuxer.reader.requestSlice(this.demuxer.dataStart+n,i);O(e)&&(e=await e),r(e),a=V(e,i)}let o=e*za/this.demuxer.audioInfo.sampleRate,s=i/this.demuxer.audioInfo.blockSizeInBytes/this.demuxer.audioInfo.sampleRate;return this.demuxer.lastKnownPacketIndex=Math.max(e,this.demuxer.lastKnownPacketIndex),new I(a,`key`,o,s,e,i)}getFirstPacket(e){return this.getPacketAtIndex(0,e)}async getPacket(e,t){r(this.demuxer.audioInfo);let n=Math.floor(Math.min(e*this.demuxer.audioInfo.sampleRate/za,(this.demuxer.dataSize-1)/(za*this.demuxer.audioInfo.blockSizeInBytes)));if(n<0)return null;let i=await this.getPacketAtIndex(n,t);if(i)return i;if(n===0)return null;r(this.demuxer.reader.fileSize===null);let a=await this.getPacketAtIndex(this.demuxer.lastKnownPacketIndex,t);for(;a;){let e=await this.getNextPacket(a,t);if(!e)break;a=e}return a}getNextPacket(e,t){r(this.demuxer.audioInfo);let n=Math.round(e.timestamp*this.demuxer.audioInfo.sampleRate/za);return this.getPacketAtIndex(n+1,t)}getKeyPacket(e,t){return this.getPacket(e,t)}getNextKeyPacket(e,t){return this.getNextPacket(e,t)}},Va=e=>{let t=e.filePos,n=new A(V(e,9));if(n.readBits(12)!==4095||(n.skipBits(1),n.readBits(2)!==0))return null;let r=n.readBits(1),i=n.readBits(2)+1,a=n.readBits(4);if(a===15)return null;n.skipBits(1);let o=n.readBits(3);if(o===0)throw Error(`ADTS frames with channel configuration 0 are not supported.`);n.skipBits(1),n.skipBits(1),n.skipBits(1),n.skipBits(1);let s=n.readBits(13);n.skipBits(11);let c=n.readBits(2)+1;if(c!==1)throw Error(`ADTS frames with more than one AAC frame are not supported.`);let l=null;return r===1?e.filePos-=2:l=n.readBits(16),{objectType:i,samplingFrequencyIndex:a,channelConfiguration:o,frameLength:s,numberOfAacFrames:c,crcCheck:l,startPos:t}},Ha=1024,Ua=class extends ei{constructor(e){super(e),this.metadataPromise=null,this.firstFrameHeader=null,this.loadedSamples=[],this.metadataTags=null,this.trackBackings=[],this.readingMutex=new ne,this.lastSampleLoaded=!1,this.lastLoadedPos=0,this.nextTimestampInSamples=0,this.reader=e._reader}async readMetadata(){return this.metadataPromise??=(async()=>{for(;!this.firstFrameHeader&&!this.lastSampleLoaded;)await this.advanceReader();r(this.firstFrameHeader),this.trackBackings=[new Wa(this)]})()}async advanceReader(){if(this.lastLoadedPos===0)for(;;){let e=this.reader.requestSlice(this.lastLoadedPos,10);if(O(e)&&(e=await e),!e){this.lastSampleLoaded=!0;return}let t=Au(e);if(!t)break;this.lastLoadedPos=e.filePos+t.size}let e=this.reader.requestSliceRange(this.lastLoadedPos,7,9);if(O(e)&&(e=await e),!e){this.lastSampleLoaded=!0;return}let t=Va(e);if(!t){this.lastSampleLoaded=!0;return}if(this.reader.fileSize!==null&&t.startPos+t.frameLength>this.reader.fileSize){this.lastSampleLoaded=!0;return}this.firstFrameHeader||=t;let n=Dt[t.samplingFrequencyIndex];r(n!==void 0);let i=Ha/n,a={timestamp:this.nextTimestampInSamples/n,duration:i,dataStart:t.startPos,dataSize:t.frameLength};this.loadedSamples.push(a),this.nextTimestampInSamples+=Ha,this.lastLoadedPos=t.startPos+t.frameLength}async getMimeType(){return`audio/aac`}async getTrackBackings(){return await this.readMetadata(),this.trackBackings}async getMetadataTags(){let e=await this.readingMutex.acquire();try{if(await this.readMetadata(),this.metadataTags)return this.metadataTags;this.metadataTags={};let e=0;for(;;){let t=this.reader.requestSlice(e,10);if(O(t)&&(t=await t),!t)break;let n=Au(t);if(!n)break;let r=this.reader.requestSlice(t.filePos,n.size);if(O(r)&&(r=await r),!r)break;ju(r,n,this.metadataTags),e=t.filePos+n.size}return this.metadataTags}finally{e()}}},Wa=class{constructor(e){this.demuxer=e}getType(){return`audio`}getId(){return 1}getNumber(){return 1}getTimeResolution(){return this.getSampleRate()/Ha}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){return null}async getLiveRefreshInterval(){return null}getName(){return null}getLanguageCode(){return`und`}getCodec(){return`aac`}getInternalCodecId(){return r(this.demuxer.firstFrameHeader),this.demuxer.firstFrameHeader.objectType}getNumberOfChannels(){r(this.demuxer.firstFrameHeader);let e=Ot[this.demuxer.firstFrameHeader.channelConfiguration];return r(e!==void 0),e}getSampleRate(){r(this.demuxer.firstFrameHeader);let e=Dt[this.demuxer.firstFrameHeader.samplingFrequencyIndex];return r(e!==void 0),e}getDisposition(){return{...Tt}}async getDecoderConfig(){return r(this.demuxer.firstFrameHeader),{codec:`mp4a.40.${this.demuxer.firstFrameHeader.objectType}`,numberOfChannels:this.getNumberOfChannels(),sampleRate:this.getSampleRate()}}async getPacketAtIndex(e,t){if(e===-1)return null;let n=this.demuxer.loadedSamples[e];if(!n)return null;let r;if(t.metadataOnly)r=ti;else{let e=this.demuxer.reader.requestSlice(n.dataStart,n.dataSize);if(O(e)&&(e=await e),!e)return null;r=V(e,n.dataSize)}return new I(r,`key`,n.timestamp,n.duration,e,n.dataSize)}getFirstPacket(e){return this.getPacketAtIndex(0,e)}async getNextPacket(e,t){let n=await this.demuxer.readingMutex.acquire();try{let n=se(this.demuxer.loadedSamples,e.timestamp,e=>e.timestamp);if(n===-1)throw Error(`Packet was not created from this track.`);let r=n+1;for(;r>=this.demuxer.loadedSamples.length&&!this.demuxer.lastSampleLoaded;)await this.demuxer.advanceReader();return this.getPacketAtIndex(r,t)}finally{n()}}async getPacket(e,t){let n=await this.demuxer.readingMutex.acquire();try{for(;;){let n=w(this.demuxer.loadedSamples,e,e=>e.timestamp);if(n===-1&&this.demuxer.loadedSamples.length>0)return null;if(this.demuxer.lastSampleLoaded||n>=0&&n+1<this.demuxer.loadedSamples.length)return this.getPacketAtIndex(n,t);await this.demuxer.advanceReader()}}finally{n()}}getKeyPacket(e,t){return this.getPacket(e,t)}getNextKeyPacket(e,t){return this.getNextPacket(e,t)}},Ga=e=>e===0?null:e===1?192:e>=2&&e<=5?144*2**e:e===6?`uncommon-u8`:e===7?`uncommon-u16`:e>=8&&e<=15?2**e:null,Ka=(e,t)=>{switch(e){case 0:return t;case 1:return 88200;case 2:return 176400;case 3:return 192e3;case 4:return 8e3;case 5:return 16e3;case 6:return 22050;case 7:return 24e3;case 8:return 32e3;case 9:return 44100;case 10:return 48e3;case 11:return 96e3;case 12:return`uncommon-u8`;case 13:return`uncommon-u16`;case 14:return`uncommon-u16-10`;default:return null}},qa=e=>{let t=0,n=new A(V(e,1));for(;n.readBits(1)===1;)t++;if(t===0)return n.readBits(7);let r=[],i=t-1,a=new A(V(e,i)),o=8-t-1;for(let e=0;e<o;e++)r.unshift(n.readBits(1));for(let e=0;e<i;e++)for(let e=0;e<8;e++){let t=a.readBits(1);e<2||r.unshift(t)}return r.reduce((e,t,n)=>e|t<<n,0)},Ja=(e,t)=>{if(t===`uncommon-u16`)return U(e)+1;if(t===`uncommon-u8`)return H(e)+1;if(typeof t==`number`)return t;E(t),r(!1)},Ya=(e,t)=>t===`uncommon-u16`?U(e):t===`uncommon-u16-10`?U(e)*10:t===`uncommon-u8`?H(e):typeof t==`number`?t:null,Xa=e=>{let t=0;for(let n of e){t^=n;for(let e=0;e<8;e++)t&128?t=t<<1^7:t<<=1,t&=255}return t},Za=class extends ei{constructor(e){super(e),this.loadedSamples=[],this.metadataPromise=null,this.trackBacking=null,this.metadataTags={},this.audioInfo=null,this.lastLoadedPos=null,this.blockingBit=null,this.readingMutex=new ne,this.lastSampleLoaded=!1,this.reader=e._reader}async getMetadataTags(){return await this.readMetadata(),this.metadataTags}async getTrackBackings(){return await this.readMetadata(),r(this.trackBacking),[this.trackBacking]}async getMimeType(){return`audio/flac`}async readMetadata(){return this.metadataPromise??=(async()=>{let e=0;for(;;){let t=this.reader.requestSlice(e,10);if(O(t)&&(t=await t),!t){this.lastSampleLoaded=!0;return}let n=Au(t);if(!n)break;let i=this.reader.requestSlice(t.filePos,n.size);O(i)&&(i=await i),r(i),ju(i,n,this.metadataTags),e=t.filePos+n.size}for(e+=4;this.reader.fileSize===null||e<this.reader.fileSize;){let t=this.reader.requestSlice(e,4);if(O(t)&&(t=await t),e+=4,t===null)throw Error(`Metadata block at position ${e} is too small! Corrupted file.`);r(t);let n=H(t),i=fu(t),a=!!(n&128);switch(n&127){case An.STREAMINFO:{let t=this.reader.requestSlice(e,i);if(O(t)&&(t=await t),r(t),t===null)throw Error(`StreamInfo block at position ${e} is too small! Corrupted file.`);let n=V(t,34),a=new A(n),o=a.readBits(16),s=a.readBits(16),c=a.readBits(24),l=a.readBits(24),u=a.readBits(20),d=a.readBits(3)+1;a.readBits(5);let f=a.readBits(36);a.skipBits(128);let p=new Uint8Array(42);p.set(new Uint8Array([102,76,97,67]),0),p.set(new Uint8Array([128,0,0,34]),4),p.set(n,8),this.audioInfo={numberOfChannels:d,sampleRate:u,totalSamples:f,minimumBlockSize:o,maximumBlockSize:s,minimumFrameSize:c,maximumFrameSize:l,description:p},this.trackBacking=new Qa(this);break}case An.VORBIS_COMMENT:{let t=this.reader.requestSlice(e,i);O(t)&&(t=await t),r(t),jn(V(t,i),this.metadataTags);break}case An.PICTURE:{let t=this.reader.requestSlice(e,i);O(t)&&(t=await t),r(t);let n=W(t),a=W(t),o=f.decode(V(t,a)),s=W(t),c=f.decode(V(t,s));t.skip(16);let l=W(t),u=V(t,l);this.metadataTags.images??=[],this.metadataTags.images.push({data:u,mimeType:o,kind:n===3?`coverFront`:n===4?`coverBack`:`unknown`,description:c});break}}if(e+=i,a){this.lastLoadedPos=e;break}}if(!this.audioInfo)throw Error(`Missing STREAMINFO metadata block! Corrupted FLAC file.`)})()}async readNextFlacFrame({startPos:e,isFirstPacket:t}){r(this.audioInfo);let n=this.audioInfo.maximumBlockSize*this.audioInfo.numberOfChannels*4+16+2,i=this.audioInfo.minimumFrameSize||10,a=(this.audioInfo.maximumFrameSize||n)+16,o=await this.reader.requestSliceRange(e,16,a);if(!o)return null;let s=this.readFlacFrameHeader({slice:o,isFirstPacket:t});if(!s)return null;for(o.filePos=e+i;;){if(o.filePos>o.end-6)return{num:s.num,blockSize:s.blockSize,sampleRate:s.sampleRate,size:o.end-e,isLastFrame:!0};if(H(o)===255){let t=o.filePos;if(H(o)!==(this.blockingBit===1?249:248)){o.filePos=t;continue}o.skip(-2);let n=o.filePos-e,r=this.readFlacFrameHeader({slice:o,isFirstPacket:!1});if(!r){o.filePos=t;continue}if(this.blockingBit===0){if(r.num-s.num!==1){o.filePos=t;continue}}else if(r.num-s.num!==s.blockSize){o.filePos=t;continue}return{num:s.num,blockSize:s.blockSize,sampleRate:s.sampleRate,size:n,isLastFrame:!1}}}}readFlacFrameHeader({slice:e,isFirstPacket:t}){let n=e.filePos,i=new A(V(e,4));if(i.readBits(15)!==32764)return null;if(this.blockingBit===null){r(t);let e=i.readBits(1);this.blockingBit=e}else if(this.blockingBit===1){if(r(!t),i.readBits(1)!==1)return null}else if(this.blockingBit===0){if(r(!t),i.readBits(1)!==0)return null}else throw Error(`Invalid blocking bit`);let a=Ga(i.readBits(4));if(!a)return null;r(this.audioInfo);let o=Ka(i.readBits(4),this.audioInfo.sampleRate);if(!o||(i.readBits(4),i.readBits(3),i.readBits(1)!==0))return null;let s=qa(e),c=Ja(e,a),l=Ya(e,o);if(l===null||l!==this.audioInfo.sampleRate)return null;let u=e.filePos-n,d=H(e);return e.skip(-u),e.skip(-1),d===Xa(V(e,u))?{num:s,blockSize:c,sampleRate:l}:null}async advanceReader(){await this.readMetadata(),r(this.lastLoadedPos!==null),r(this.audioInfo);let e=this.lastLoadedPos,t=await this.readNextFlacFrame({startPos:e,isFirstPacket:this.loadedSamples.length===0});if(!t){this.lastSampleLoaded=!0;return}let n=this.loadedSamples[this.loadedSamples.length-1],i={blockOffset:n?n.blockOffset+n.blockSize:0,blockSize:t.blockSize,byteOffset:e,byteSize:t.size};if(this.lastLoadedPos+=t.size,this.loadedSamples.push(i),t.isLastFrame){this.lastSampleLoaded=!0;return}}},Qa=class{constructor(e){this.demuxer=e}getType(){return`audio`}getId(){return 1}getNumber(){return 1}getCodec(){return`flac`}getInternalCodecId(){return null}getNumberOfChannels(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.numberOfChannels}getSampleRate(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.sampleRate}getName(){return null}getLanguageCode(){return`und`}getTimeResolution(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.sampleRate}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){return r(this.demuxer.audioInfo),this.demuxer.audioInfo.totalSamples===0?null:this.demuxer.audioInfo.totalSamples/this.demuxer.audioInfo.sampleRate}async getLiveRefreshInterval(){return null}getDisposition(){return{...Tt}}async getDecoderConfig(){return r(this.demuxer.audioInfo),{codec:`flac`,numberOfChannels:this.demuxer.audioInfo.numberOfChannels,sampleRate:this.demuxer.audioInfo.sampleRate,description:this.demuxer.audioInfo.description}}async getPacket(e,t){if(r(this.demuxer.audioInfo),e<0)return null;let n=await this.demuxer.readingMutex.acquire();try{for(;;){let n=w(this.demuxer.loadedSamples,e,e=>e.blockOffset/this.demuxer.audioInfo.sampleRate);if(n===-1){await this.demuxer.advanceReader();continue}let r=this.demuxer.loadedSamples[n];if(r.blockOffset/this.demuxer.audioInfo.sampleRate+r.blockSize/this.demuxer.audioInfo.sampleRate<=e){if(this.demuxer.lastSampleLoaded)return this.getPacketAtIndex(this.demuxer.loadedSamples.length-1,t);await this.demuxer.advanceReader();continue}return this.getPacketAtIndex(n,t)}}finally{n()}}async getNextPacket(e,t){let n=await this.demuxer.readingMutex.acquire();try{let n=e.sequenceNumber+1;if(this.demuxer.lastSampleLoaded&&n>=this.demuxer.loadedSamples.length)return null;for(;n>=this.demuxer.loadedSamples.length&&!this.demuxer.lastSampleLoaded;)await this.demuxer.advanceReader();return this.getPacketAtIndex(n,t)}finally{n()}}getKeyPacket(e,t){return this.getPacket(e,t)}getNextKeyPacket(e,t){return this.getNextPacket(e,t)}async getPacketAtIndex(e,t){let n=this.demuxer.loadedSamples[e];if(!n)return null;let i;if(t.metadataOnly)i=ti;else{let e=this.demuxer.reader.requestSlice(n.byteOffset,n.byteSize);if(O(e)&&(e=await e),!e)return null;i=V(e,n.byteSize)}r(this.demuxer.audioInfo);let a=n.blockOffset/this.demuxer.audioInfo.sampleRate,o=n.blockSize/this.demuxer.audioInfo.sampleRate;return new I(i,`key`,a,o,e,n.byteSize)}async getFirstPacket(e){for(;this.demuxer.loadedSamples.length===0&&!this.demuxer.lastSampleLoaded;)await this.demuxer.advanceReader();return this.getPacketAtIndex(0,e)}},$a=9e4,eo=e=>{let t=`video/MP2T`,n=[...new Set(e.filter(Boolean))];return n.length>0&&(t+=`; codecs="${n.join(`, `)}"`),t},to=`PES packet is missing PTS where it was expected. PES packets without PTS are not currently supported. If you think this file should be supported, please report it.`,no=5,ro=1212435798,io=1212436562,ao=1146376960,oo=new Set([133,134,162]),so=new Set,co=class extends ei{constructor(e){super(e),this.metadataPromise=null,this.elementaryStreams=[],this.trackBackingEntries=[],this.packetOffset=0,this.packetStride=-1,this.sectionEndPositions=[],this.seekChunkSize=5242880,this.minReferencePointByteDistance=-1,this.reader=e._reader}async readMetadata(){return this.metadataPromise??=(async()=>{let e=this.reader.requestSlice(0,205);O(e)&&(e=await e),r(e);let t=V(e,205);if(t[0]===71&&t[188]===71)this.packetOffset=0,this.packetStride=188;else if(t[0]===71&&t[204]===71)this.packetOffset=0,this.packetStride=204;else if(t[4]===71&&t[196]===71)this.packetOffset=4,this.packetStride=192;else throw Error(`Unreachable.`);this.minReferencePointByteDistance=256*this.packetStride;let n=this.packetOffset,i=null,a=!1,o=!1;for(;;){let e=await this.readPacketHeader(n);if(!e)break;if(e.payloadUnitStartIndicator===0){n+=this.packetStride;continue}if(o&&!this.elementaryStreams.some(t=>t.pid===e.pid)){n+=this.packetStride;continue}let t=await this.readSection(n,!0,!o);if(!t)break;let s=!1;if(!o&&t.pid!==0&&(t.payload[0]!==0||t.payload[1]!==0||t.payload[2]!==1)){let e=new A(t.payload),n=e.readAlignedByte();e.skipBits(8*n),s=e.readBits(8)===2}if(t.pid===0&&!a){let e=new A(t.payload),n=e.readAlignedByte();e.skipBits(8*n),e.skipBits(14);let r=e.readBits(10);for(e.skipBits(40);8*(r+3)-e.pos>32;){let t=e.readBits(16);e.skipBits(3);let n=e.readBits(13);if(t!==0){if(i!==null)throw Error(`Only files with a single program are supported.`);i=n}}if(i===null)throw Error(`Program Association Table must link to a Program Map Table.`);a=!0}else if((t.pid===i||s)&&!o){let e=new A(t.payload),n=e.readAlignedByte();e.skipBits(8*n),e.skipBits(12);let r=e.readBits(12);e.skipBits(43),e.readBits(13),e.skipBits(6);let i=e.readBits(10),a=e.pos+8*i,s=!1;for(;e.pos<a;){let t=e.readBits(8),n=e.readBits(8),r=e.pos+8*n;if(t===no&&n>=4){let t=e.readBits(32);s||=t===ro||t===io}e.pos=r}for(e.pos=a;8*(r+3)-e.pos>32;){let t=e.readBits(8);e.skipBits(3);let n=e.readBits(13);e.skipBits(6);let r=e.readBits(10),i=e.pos+8*r,a=!1,o=!1,c=!1;for(;e.pos<i;){let t=e.readBits(8),n=e.readBits(8),r=e.pos+8*n;if(t===106)a=!0;else if(t===122||t===204)o=!0;else if(t===123)c=!0;else if(t===no&&n>=4){let t=e.readBits(32);c||=(t&4294967040)===ao}e.pos=r}let l=null,u=s&&oo.has(t)?130:t;switch(u){case 27:case 36:l={type:`video`,codec:t===27?`avc`:`hevc`,decoderConfig:null,avcCodecInfo:null,hevcCodecInfo:null,colorSpace:{primaries:null,transfer:null,matrix:null,fullRange:null},width:-1,height:-1,squarePixelWidth:-1,squarePixelHeight:-1,reorderSize:-1};break;case 3:case 4:case 15:case 129:case 135:case 130:case 138:{let e;e=u===3||u===4?`mp3`:u===15?`aac`:u===129?`ac3`:u===135?`eac3`:`dts`,l={type:`audio`,codec:e,decoderConfig:null,aacCodecInfo:null,dtsFormat:null,numberOfChannels:-1,sampleRate:-1}}break;case 6:o?l={type:`audio`,codec:`eac3`,decoderConfig:null,aacCodecInfo:null,dtsFormat:null,numberOfChannels:-1,sampleRate:-1}:a?l={type:`audio`,codec:`ac3`,decoderConfig:null,aacCodecInfo:null,dtsFormat:null,numberOfChannels:-1,sampleRate:-1}:c&&(l={type:`audio`,codec:`dts`,decoderConfig:null,aacCodecInfo:null,dtsFormat:null,numberOfChannels:-1,sampleRate:-1});break;default:so.has(t)||(k._warn(`Note: MPEG-TS streams with stream_type 0x${t.toString(16)} are not currently supported.`),so.add(t))}l&&this.elementaryStreams.push({demuxer:this,pid:n,streamType:t,initialized:!1,firstSection:null,canBeTrustedWithKeyPackets:!1,info:l,referencePesPackets:[]})}o=!0}else{let e=this.elementaryStreams.find(e=>e.pid===t.pid);outer:if(e&&!e.initialized){let n=uo(t,!0);if(!n)throw Error(`Couldn't read first PES packet for Elementary Stream with PID ${e.pid}`);if(e.firstSection=t,e.canBeTrustedWithKeyPackets=t.randomAccessIndicator===1,this.input._initInput){let n=(await this.input._initInput._getDemuxer()).elementaryStreams.find(n=>n.pid===t.pid&&n.info.codec===e.info.codec);if(n){e.info=n.info,e.initialized=!0;break outer}}let i=new go(e,n);if(e.info.type===`video`){for(;;){let t=i;if(t.suppliedPacket=null,await i.markNextPacket(),e.info.codec===`avc`){if(!i.suppliedPacket)throw Error(`Invalid AVC video stream; could not extract AVCDecoderConfigurationRecord from any packet.`);if(e.info.avcCodecInfo=Yt(i.suppliedPacket.data),!e.info.avcCodecInfo)continue;let t=e.info.avcCodecInfo.sequenceParameterSets[0];r(t);let n=$t(t);e.info.width=n.displayWidth,e.info.height=n.displayHeight;let a=n.pixelAspectRatio.num,o=n.pixelAspectRatio.den;a>0&&o>0&&(a>o?(e.info.squarePixelWidth=Math.round(e.info.width*a/o),e.info.squarePixelHeight=e.info.height):(e.info.squarePixelWidth=e.info.width,e.info.squarePixelHeight=Math.round(e.info.height*o/a))),e.info.colorSpace={primaries:_[n.colourPrimaries],transfer:y[n.transferCharacteristics],matrix:x[n.matrixCoefficients],fullRange:!!n.fullRangeFlag},e.info.reorderSize=n.maxDecFrameBuffering;break}if(e.info.codec===`hevc`){if(!i.suppliedPacket)throw Error(`Invalid HEVC video stream; could not extract HVCDecoderConfigurationRecord from first packet.`);if(e.info.hevcCodecInfo=on(i.suppliedPacket.data),!e.info.hevcCodecInfo)continue;let t=e.info.hevcCodecInfo.arrays.find(e=>e.nalUnitType===M.SPS_NUT).nalUnits[0];r(t);let n=an(t);e.info.width=n.displayWidth,e.info.height=n.displayHeight,n.pixelAspectRatio.num>n.pixelAspectRatio.den?(e.info.squarePixelWidth=Math.round(e.info.width*n.pixelAspectRatio.num/n.pixelAspectRatio.den),e.info.squarePixelHeight=e.info.height):(e.info.squarePixelWidth=e.info.width,e.info.squarePixelHeight=Math.round(e.info.height*n.pixelAspectRatio.den/n.pixelAspectRatio.num)),e.info.colorSpace={primaries:_[n.colourPrimaries],transfer:y[n.transferCharacteristics],matrix:x[n.matrixCoefficients],fullRange:!!n.fullRangeFlag},e.info.reorderSize=n.maxDecFrameBuffering;break}throw Error(`Unhandled.`)}e.info.decoderConfig={codec:Cr({width:e.info.width,height:e.info.height,codec:e.info.codec,codecDescription:null,colorSpace:e.info.colorSpace,avcType:1,avcCodecInfo:e.info.avcCodecInfo,hevcCodecInfo:e.info.hevcCodecInfo,vp9CodecInfo:null,av1CodecInfo:null,proresFormat:null}),codedWidth:e.info.width,codedHeight:e.info.height,colorSpace:e.info.colorSpace},(e.info.width!==e.info.squarePixelWidth||e.info.height!==e.info.squarePixelHeight)&&(e.info.decoderConfig.displayAspectWidth=e.info.squarePixelWidth,e.info.decoderConfig.displayAspectHeight=e.info.squarePixelHeight),e.initialized=!0}else{if(await i.markNextPacket(),!i.suppliedPacket)throw Error(`Couldn't parse first media packet for Elementary Stream with PID ${e.pid}`);if(e.info.codec===`aac`){let t=Va(lu.tempFromBytes(i.suppliedPacket.data));if(!t)throw Error(`Invalid AAC audio stream; could not read ADTS frame header from first packet.`);e.info.aacCodecInfo={isMpeg2:!1,objectType:t.objectType},e.info.numberOfChannels=Ot[t.channelConfiguration],e.info.sampleRate=Dt[t.samplingFrequencyIndex]}else if(e.info.codec===`mp3`){let t=Yr(W(lu.tempFromBytes(i.suppliedPacket.data)),i.suppliedPacket.data.byteLength);if(!t.header)throw Error(`Invalid MP3 audio stream; could not read frame header from first packet.`);e.info.numberOfChannels=$r(t.header.channel),e.info.sampleRate=t.header.sampleRate}else if(e.info.codec===`ac3`){let t=Pn(i.suppliedPacket.data);if(!t)throw Error(`Invalid AC-3 audio stream; could not read sync frame from first packet.`);if(t.fscod===3)throw Error(`Invalid AC-3 audio stream; reserved sample rate code found in first packet.`);e.info.numberOfChannels=Nn[t.acmod]+t.lfeon,e.info.sampleRate=Rt[t.fscod]}else if(e.info.codec===`eac3`){let t=Bn(i.suppliedPacket.data);if(!t)throw Error(`Invalid E-AC-3 audio stream; could not read sync frame from first packet.`);let n=Hn(t);if(n===null)throw Error(`Invalid E-AC-3 audio stream; reserved sample rate code found in first packet.`);e.info.numberOfChannels=Un(t),e.info.sampleRate=n}else if(e.info.codec===`dts`){let t=nr(i.suppliedPacket.data);if(!t)throw Error(`Invalid DTS audio stream; could not read frame header from first packet.`);e.info.numberOfChannels=t.numberOfChannels,e.info.sampleRate=t.sampleRate,t.core&&(e.info.dtsFormat=t.hasExtensions?`dtsh`:`dtsc`)}else throw Error(`Unhandled.`);e.info.decoderConfig={codec:Er({codec:e.info.codec,codecDescription:null,aacCodecInfo:e.info.aacCodecInfo,dtsFormat:e.info.dtsFormat}),numberOfChannels:e.info.numberOfChannels,sampleRate:e.info.sampleRate},e.initialized=!0}}}if(o&&this.elementaryStreams.every(e=>e.initialized))break;n+=this.packetStride}if(!o)throw Error(a?`No Program Map Table found in the file.`:`No Program Association Table found in the file.`);for(let e of this.elementaryStreams)e.initialized&&(e.info.type===`video`?this.trackBackingEntries.push(new po(e)):this.trackBackingEntries.push(new mo(e)))})()}async getTrackBackings(){return await this.readMetadata(),this.trackBackingEntries}async getMetadataTags(){return{}}async getMimeType(){return await this.readMetadata(),eo(await Promise.all(this.trackBackingEntries.map(e=>e.getDecoderConfig().then(e=>e?.codec??null))))}async readSection(e,t,n=!1){let r=e,i=e,a=[],o=0,s=null,c=!0,l=0;for(;;){let e=await this.readPacket(i);if(i+=this.packetStride,!e)break;if(s){if(e.pid!==s.pid){if(n)break;continue}if(e.payloadUnitStartIndicator===1)break}else{if(e.payloadUnitStartIndicator===0)break;s=e}let u=!!(e.adaptationFieldControl&2),d=!!(e.adaptationFieldControl&1),f=0;if(u&&(f=1+e.body[0],e===s&&f>1&&(l=e.body[1]>>6&1)),d&&(f===0?(a.push(e.body),o+=e.body.byteLength):(a.push(e.body.subarray(f)),o+=e.body.byteLength-f)),r=i,!t&&o>=64){c=!1;break}if(se(this.sectionEndPositions,r,e=>e)!==-1){c=!1;break}}if(c){let e=w(this.sectionEndPositions,r,e=>e);this.sectionEndPositions.splice(e+1,0,r)}if(!s)return null;let u;if(a.length===1)u=a[0];else{let e=a.reduce((e,t)=>e+t.length,0);u=new Uint8Array(e);let t=0;for(let e of a)u.set(e,t),t+=e.length}return{startPos:e,endPos:t?r:null,pid:s.pid,payload:u,randomAccessIndicator:l}}async readPacketHeader(e){let t=this.reader.requestSlice(e,4);if(O(t)&&(t=await t),!t)return null;if(H(t)!==71)throw Error(`Invalid TS packet sync byte. Likely an internal bug, please report this file.`);let n=U(t);n>>15;let r=n>>14&1;n>>13&1;let i=n&8191,a=H(t);a>>6;let o=a>>4&3;return a&15,{payloadUnitStartIndicator:r,pid:i,adaptationFieldControl:o}}async readPacket(e){let t=this.reader.requestSlice(e,188);if(O(t)&&(t=await t),!t)return null;let n=V(t,188);if(n[0]!==71)throw Error(`Invalid TS packet sync byte. Likely an internal bug, please report this file.`);let r=(n[1]<<8)+n[2];r>>15;let i=r>>14&1;r>>13&1;let a=r&8191,o=n[3];o>>6;let s=o>>4&3;return o&15,{payloadUnitStartIndicator:i,pid:a,adaptationFieldControl:s,body:n.subarray(4)}}},lo=(e,t)=>{if(e.payload.byteLength<3)return null;let n=new A(e.payload);if(n.readBits(24)!==1)return null;let r=n.readBits(8);if(n.skipBits(16),r===188||r===190||r===191||r===240||r===241||r===255||r===242||r===248)return null;n.skipBits(8);let i=n.readBits(2);n.skipBits(14);let a=null;if(i===2||i===3)a=0,n.skipBits(4),a+=n.readBits(3)*(1<<30),n.skipBits(1),a+=n.readBits(15)*32768,n.skipBits(1),a+=n.readBits(15);else if(t)throw Error(to);return{sectionStartPos:e.startPos,sectionEndPos:e.endPos,pts:a,randomAccessIndicator:e.randomAccessIndicator}},uo=(e,t)=>{r(e.endPos!==null);let n=lo(e,t);if(!n)return null;let i=new A(e.payload);i.skipBits(32);let a=i.readBits(16);i.skipBits(16);let o=i.readBits(8),s=i.pos+8*o;i.pos=s;let c=s/8;r(Number.isInteger(c));let l=e.payload.subarray(c,a>0?6+a:e.payload.byteLength);return{...n,data:l}},fo=class e{constructor(e){this.elementaryStream=e,this.packetBuffers=new WeakMap,this.packetSectionStarts=new WeakMap}getId(){return this.elementaryStream.pid}getNumber(){let t=this.elementaryStream.demuxer,n=this.elementaryStream.info.type,i=0;for(let a of t.trackBackingEntries)if(a.getType()===n&&i++,r(a instanceof e),a.elementaryStream===this.elementaryStream)break;return i}getCodec(){throw Error(`Not implemented on base class.`)}getInternalCodecId(){return this.elementaryStream.streamType}getName(){return null}getLanguageCode(){return`und`}getDisposition(){return{...Tt,primary:!1}}getTimeResolution(){return $a}isRelativeToUnixEpoch(){return!1}getUnixTimeForTimestamp(){return null}getPairingMask(){return 1n}getBitrate(){return null}getAverageBitrate(){return null}async getDurationFromMetadata(){return null}async getLiveRefreshInterval(){return null}createEncodedPacket(e,t,n){let r;return r=this.allPacketsAreKeyPackets()||e.randomAccessIndicator===1?`key`:`delta`,new I(n.metadataOnly?ti:e.data,r,e.pts/$a,Math.max(t/$a,0),e.sequenceNumber,e.data.byteLength)}async getFirstPacket(e){let t=this.elementaryStream.firstSection;r(t);let n=uo(t,!0);r(n);let i=new go(this.elementaryStream,n),a=new _o(this,i),o=await a.readNext();if(!o)return null;let s=this.createEncodedPacket(o.packet,o.duration,e);return this.packetBuffers.set(s,a),this.packetSectionStarts.set(s,o.packet.sectionStartPos),s}async getNextPacket(e,t){let n=this.packetBuffers.get(e);if(n){let r=await n.readNext();if(!r)return null;this.packetBuffers.delete(e);let i=this.createEncodedPacket(r.packet,r.duration,t);return this.packetBuffers.set(i,n),this.packetSectionStarts.set(i,r.packet.sectionStartPos),i}let i=this.packetSectionStarts.get(e);if(i===void 0)throw Error(`Packet was not created from this track.`);let a=await this.elementaryStream.demuxer.readSection(i,!0);r(a);let o=uo(a,!0);r(o);let s=new go(this.elementaryStream,o);n=new _o(this,s);let c=e.sequenceNumber;for(;;){let e=await n.readNext();if(!e)return null;if(e.packet.sequenceNumber>c){let r=this.createEncodedPacket(e.packet,e.duration,t);return this.packetBuffers.set(r,n),this.packetSectionStarts.set(r,e.packet.sectionStartPos),r}}}async getNextKeyPacket(e,t){let n=e;for(;;){if(n=await this.getNextPacket(n,t),!n)return null;if(n.type===`key`)return n}}getPacket(e,t){return this.doPacketLookup(e,!1,t)}getKeyPacket(e,t){return this.doPacketLookup(e,!0,t)}async doPacketLookup(e,t,n){let i=xe(e*$a),o=this.elementaryStream.demuxer,{reader:s,seekChunkSize:c}=o,l=this.elementaryStream.pid,u=async(e,t,n)=>{let r=e;for(;r<t;){let e=await o.readPacketHeader(r);if(!e)return null;if(e.pid===l&&e.payloadUnitStartIndicator===1){let e=await o.readSection(r,n);if(!e)return null;let t=lo(e,!1);if(t&&t.pts!==null)return{pesPacketHeader:t,section:e}}r+=o.packetStride}return null},d=this.elementaryStream.firstSection;r(d);let f=lo(d,!0);if(r(f),i<f.pts)return null;let p,m=this.elementaryStream.referencePesPackets,h=w(m,i,e=>e.pts),g=h===-1?null:m[h];if(g&&i-g.pts<45e3)p=g.sectionStartPos;else{let e=0;if(s.fileSize!==null){let t=Math.ceil(s.fileSize/c);if(t>1){let n=0,r=t-1;for(e=n;n<=r;){let t=Math.floor((n+r)/2),a=we(t*c,o.packetStride)+f.sectionStartPos,s=await u(a,a+c,!1);if(!s){r=t-1;continue}s.pesPacketHeader.pts<=i?(e=t,n=t+1):r=t-1}}}p=we(e*c,o.packetStride)+f.sectionStartPos}let _=(await u(p,s.fileSize??1/0,!1))?.pesPacketHeader??null;_||=f;let v=this.getReorderSize(),y=async(e,t)=>{let s=await o.readSection(e,!0);r(s);let c=uo(s,!0);r(c);let l=new go(this.elementaryStream,c),u=new _o(this,l);for(;!((a(u.presentationOrderPackets)?.pts??-1/0)>=i||!await u.readNextPacket()););let d=de(u.presentationOrderPackets,t);if(d===-1)return null;let f=u.presentationOrderPackets[d],p=d===0?0:f.pts-u.presentationOrderPackets[d-1].pts;for(;u.decodeOrderPackets[0]!==f;)u.decodeOrderPackets.shift();u.lastDuration=p;let m=await u.readNext();r(m);let h=this.createEncodedPacket(m.packet,m.duration,n);return this.packetBuffers.set(h,u),this.packetSectionStarts.set(h,m.packet.sectionStartPos),h};if(!t||this.allPacketsAreKeyPackets()){outer:for(;;){let e=_.sectionStartPos+o.packetStride;for(;;){let t=await o.readPacketHeader(e);if(!t)break outer;if(t.pid===l&&t.payloadUnitStartIndicator===1){let t=await o.readSection(e,!1);if(t){let e=lo(t,!1);if(e&&e.pts!==null){if(e.pts>i)break outer;_=e,ho(this.elementaryStream,_);break}}}e+=o.packetStride}}outer:for(let e=0;e<v+1;e++){let e=_.sectionStartPos-o.packetStride;for(;e>=o.packetOffset;){let t=await o.readPacketHeader(e);if(!t)break outer;if(t.pid===l&&t.payloadUnitStartIndicator===1){let t=await o.readSection(e,!1);if(t){let e=lo(t,!1);if(e&&e.pts!==null){_=e;break}}}e-=o.packetStride}}return y(_.sectionStartPos,e=>e.pts<=i)}{let e=p,t=null,n=!this.elementaryStream.canBeTrustedWithKeyPackets;for(;;){let a=null,p=e<=f.sectionStartPos,m,h=null;if(p)m=f,h=d;else{let t=await u(e,s.fileSize??1/0,n);m=t?.pesPacketHeader??null,h=t?.section??null}let g=!1,_=0;outer:for(;m&&!(t!==null&&m.sectionStartPos>=t);){if(m.pts<=i){let e;if(this.elementaryStream.canBeTrustedWithKeyPackets)e=m.randomAccessIndicator===1;else{r(h);let t=uo(h,!0);r(t);let n=new go(this.elementaryStream,t);await n.markNextPacket(),e=n.suppliedPacket?.randomAccessIndicator===1}e&&(a=m)}if(m.pts>i&&(g=!0),g&&(_++,_>v))break;let e=m.sectionStartPos+o.packetStride;for(;;){let t=await o.readPacketHeader(e);if(!t)break outer;if(t.pid===l&&t.payloadUnitStartIndicator===1){let t=await o.readSection(e,n);if(t){let e=lo(t,!1);if(e&&e.pts!==null){m=e,h=t,ho(this.elementaryStream,m);break}}}e+=o.packetStride}}if(a){let e=a;if(_===0)outer:for(let t=0;t<v;t++){let t=e.sectionStartPos-o.packetStride;for(;t>=o.packetOffset;){let r=await o.readPacketHeader(t);if(!r)break outer;if(r.pid===l&&r.payloadUnitStartIndicator===1){let r=await o.readSection(t,n);if(r){let t=lo(r,!1);if(t&&t.pts!==null){e=t;break}}}t-=o.packetStride}}let t=await y(e.sectionStartPos,e=>e.pts<=i&&e.randomAccessIndicator===1);return r(t),t}if(p)return null;t=e,e=Math.max(we(e-f.sectionStartPos-c,o.packetStride)+f.sectionStartPos,f.sectionStartPos)}}}},po=class extends fo{getType(){return`video`}getCodec(){return this.elementaryStream.info.codec}getCodedWidth(){return this.elementaryStream.info.width}getCodedHeight(){return this.elementaryStream.info.height}getSquarePixelWidth(){return this.elementaryStream.info.squarePixelWidth}getSquarePixelHeight(){return this.elementaryStream.info.squarePixelHeight}getRotation(){return 0}async getColorSpace(){return this.elementaryStream.info.colorSpace}async canBeTransparent(){return!1}async getDecoderConfig(){return r(this.elementaryStream.info.decoderConfig),this.elementaryStream.info.decoderConfig}allPacketsAreKeyPackets(){return!1}getReorderSize(){return this.elementaryStream.info.reorderSize}},mo=class extends fo{getType(){return`audio`}getCodec(){return this.elementaryStream.info.codec}getNumberOfChannels(){return this.elementaryStream.info.numberOfChannels}getSampleRate(){return this.elementaryStream.info.sampleRate}async getDecoderConfig(){return r(this.elementaryStream.info.decoderConfig),this.elementaryStream.info.decoderConfig}allPacketsAreKeyPackets(){return!0}getReorderSize(){return 0}},ho=(e,t)=>{let n=e.referencePesPackets,r=w(n,t.sectionStartPos,e=>e.sectionStartPos);if(r>=0){let i=n[r];if(t.pts<=i.pts)return!1;let a=e.demuxer.minReferencePointByteDistance;if(t.sectionStartPos-i.sectionStartPos<a)return!1;if(r<n.length-1){let e=n[r+1];if(e.pts<t.pts||e.sectionStartPos-t.sectionStartPos<a)return!1}}return n.splice(r+1,0,t),!0},go=class{constructor(e,t){this.currentPos=0,this.pesPackets=[],this.currentPesPacketIndex=0,this.currentPesPacketPos=0,this.endPos=0,this.lastSuppliedPesPacket=null,this.nextPts=null,this.suppliedPacket=null,this.elementaryStream=e,this.pid=e.pid,this.demuxer=e.demuxer,this.startingPesPacket=t}ensureBuffered(e){let t=this.endPos-this.currentPos;return t>=e?e:this.bufferData(e-t).then(()=>Math.min(this.endPos-this.currentPos,e))}getCurrentPesPacket(){let e=this.pesPackets[this.currentPesPacketIndex];return r(e),e}async bufferData(e){let t=this.endPos+e;for(;this.endPos<t;){let e;if(this.pesPackets.length===0)e=this.startingPesPacket;else{let t=a(this.pesPackets).sectionEndPos;for(r(t!==null);;){let n=await this.demuxer.readPacketHeader(t);if(!n)return;if(n.pid===this.pid){let n=await this.demuxer.readSection(t,!0);if(!n)return;let r=uo(n,!1);if(r){e=r;break}}t+=this.demuxer.packetStride}}this.pesPackets.push(e),this.endPos+=e.data.byteLength}}readBytes(e){let t=this.getCurrentPesPacket(),n=this.currentPos-this.currentPesPacketPos,r=n+e;if(this.currentPos+=e,r<=t.data.byteLength)return t.data.subarray(n,r);let i=new Uint8Array(e);i.set(t.data.subarray(n));let a=t.data.byteLength-n;for(;;){this.advanceCurrentPacket();let t=this.getCurrentPesPacket(),n=e-a;if(n<=t.data.byteLength){i.set(t.data.subarray(0,n),a);break}i.set(t.data,a),a+=t.data.byteLength}return i}readU8(){let e=this.getCurrentPesPacket(),t=this.currentPos-this.currentPesPacketPos;return this.currentPos++,t<e.data.byteLength?e.data[t]:(this.advanceCurrentPacket(),e=this.getCurrentPesPacket(),e.data[0])}seekTo(e){if(e!==this.currentPos){if(e<this.currentPos)for(;e<this.currentPesPacketPos;){this.currentPesPacketIndex--;let e=this.getCurrentPesPacket();this.currentPesPacketPos-=e.data.byteLength}else for(;;){let t=this.getCurrentPesPacket();if(e<this.currentPesPacketPos+t.data.byteLength)break;this.currentPesPacketPos+=t.data.byteLength,this.currentPesPacketIndex++}this.currentPos=e}}skip(e){this.seekTo(this.currentPos+e)}advanceCurrentPacket(){this.currentPesPacketPos+=this.getCurrentPesPacket().data.byteLength,this.currentPesPacketIndex++}async markNextPacket(){r(!this.suppliedPacket);let e=this.elementaryStream;if(e.info.type===`video`){let t=e.info.codec,n=1024;if(t!==`avc`&&t!==`hevc`)throw Error(`Unhandled.`);let r=t===`avc`?1:2,i=null,a=!1,o=0;for(;;){let e=this.ensureBuffered(n);if(O(e)&&(e=await e),e===0)break;let c=this.currentPos,l=this.readBytes(e),u=l.byteLength,d=0;for(;d<u;){let e=l.indexOf(0,d);if(e===-1||e>=u)break;d=e;let n=c+d;if(d+3>=u){this.seekTo(n);break}let f=l[d+1],p=l[d+2],m=l[d+3],h=0;if(f===0&&p===0&&m===1?h=4:f===0&&p===1&&(h=3),h===0){d++;continue}let g=n;i??=g;let _=d+h,v=_+r;if(v+(t===`avc`?6:1)>u){this.seekTo(n);break}let y=l[_],b,x,S;if(t===`avc`)b=Ut(y),x=b===j.NON_IDR_SLICE||b===j.SLICE_DPA||b===j.IDR,S=b===j.SEI||b===j.SPS||b===j.PPS||b===j.AUD;else{if(b=rn(y),((y&1)<<5|l[_+1]>>3)>0){d+=h;continue}x=b<=M.RASL_R||b>=M.BLA_W_LP&&b<=21,S=b>=M.VPS_NUT&&b<=37||b===M.PREFIX_SEI_NUT||b>=41&&b<=44||b>=48&&b<=55}let C=!1;if(x){let e;if(t===`avc`){let t=s(new A(l.subarray(v,v+6)));e=!a||t<=o,o=t}else e=l[v]>>7==1;e&&(a?C=!0:a=!0)}else S&&a&&(C=!0);if(C){let e=g-i;return this.seekTo(i),this.supplyPacket(e,0)}d+=h}if(e<n)break}if(i!==null&&this.endPos>i){let e=this.endPos-i;return this.seekTo(i),this.supplyPacket(e,0)}}else{let t=e.info.codec;for(;;){let n=this.ensureBuffered(128);O(n)&&(n=await n);let i=this.currentPos;for(;this.currentPos-i<n;){let n=this.readU8();if(t===`aac`){if(n!==255)continue;this.skip(-1);let t=this.currentPos,r=this.ensureBuffered(9);if(O(r)&&(r=await r),r<9)return;let i=this.readBytes(9),a=Va(lu.tempFromBytes(i));if(a){this.seekTo(t);let n=this.ensureBuffered(a.frameLength);return O(n)&&(n=await n),this.supplyPacket(n,Math.round(Ha*$a/e.info.sampleRate))}this.seekTo(t+1)}else if(t===`mp3`){if(n!==255)continue;this.skip(-1);let t=this.currentPos,r=this.ensureBuffered(4);if(O(r)&&(r=await r),r<4)return;let i=Yr(d(this.readBytes(4)).getUint32(0),null);if(i.header){this.seekTo(t);let n=this.ensureBuffered(i.header.totalSize);O(n)&&(n=await n);let r=i.header.audioSamplesInFrame*$a/e.info.sampleRate;return this.supplyPacket(n,Math.round(r))}this.seekTo(t+1)}else if(t===`ac3`){if(n!==11)continue;this.skip(-1);let t=this.currentPos,i=this.ensureBuffered(5);if(O(i)&&(i=await i),i<5)return;let a=this.readBytes(5);if(a[0]!==11||a[1]!==119){this.seekTo(t+1);continue}let o=a[4]>>6,s=a[4]&63;if(o===3||s>37){this.seekTo(t+1);continue}let c=Fn[3*s+o];r(c!==void 0),this.seekTo(t),i=this.ensureBuffered(c),O(i)&&(i=await i);let l=Math.round(In*$a/e.info.sampleRate);return this.supplyPacket(i,l)}else if(t===`eac3`){if(n!==11)continue;this.skip(-1);let t=this.currentPos,r=this.ensureBuffered(5);if(O(r)&&(r=await r),r<5)return;let i=this.readBytes(5);if(i[0]!==11||i[1]!==119){this.seekTo(t+1);continue}let a=(((i[2]&7)<<8|i[3])+1)*2,o=zn[i[4]>>6==3?3:i[4]>>4&3];this.seekTo(t),r=this.ensureBuffered(a),O(r)&&(r=await r);let s=o*256,c=Math.round(s*$a/e.info.sampleRate);return this.supplyPacket(r,c)}else if(t===`dts`){if(n!==127&&n!==100)continue;this.skip(-1);let t=this.currentPos,r=this.ensureBuffered(18);if(O(r)&&(r=await r),r<18)return;let i=this.readBytes(18),a=ir(i),o=a?null:ar(i);if(!a&&!o){this.seekTo(t+1);continue}if(o&&!o.asset){this.seekTo(t);let e=Math.min(o.frameSize,Wn),n=this.ensureBuffered(e);O(n)&&(n=await n),o=ar(this.readBytes(n))??o}let s=a?a.frameSize:o.frameSize;if(a){let e=Math.ceil(a.frameSize/4)*4;for(;;){this.seekTo(t);let n=e+10,r=this.ensureBuffered(n);if(O(r)&&(r=await r),r<n)break;this.seekTo(t+e);let i=ar(this.readBytes(10));if(!i)break;e+=i.frameSize,s=e}}let c=a?.sampleCount??o.asset?.sampleCount;if(c===void 0){this.seekTo(t+1);continue}this.seekTo(t),r=this.ensureBuffered(s),O(r)&&(r=await r);let l=Math.round(c*$a/e.info.sampleRate);return this.supplyPacket(r,l)}else throw Error(`Unhandled.`)}if(n<128)break}}}supplyPacket(e,t){let n=this.getCurrentPesPacket(),i;if(this.lastSuppliedPesPacket===n)r(this.nextPts!==null),i=this.nextPts;else{if(n.pts===null)throw Error(to);i=n.pts,ho(this.elementaryStream,n)}this.lastSuppliedPesPacket=n,this.nextPts=i+t;let a=n.sectionStartPos,o=a+(this.currentPos-this.currentPesPacketPos),s=this.readBytes(e),c=n.randomAccessIndicator;if(c===0&&!this.elementaryStream.canBeTrustedWithKeyPackets){if(this.elementaryStream.info.type===`audio`)c=1;else if(this.elementaryStream.info.decoderConfig){let e=kn(this.elementaryStream.info.codec,this.elementaryStream.info.decoderConfig,s)===`key`;c=Number(e)}}this.suppliedPacket={pts:i,data:s,sequenceNumber:o,sectionStartPos:a,randomAccessIndicator:c},this.pesPackets.splice(0,this.currentPesPacketIndex),this.currentPesPacketIndex=0}},_o=class{constructor(e,t){this.decodeOrderPackets=[],this.reorderBuffer=[],this.presentationOrderPackets=[],this.reachedEnd=!1,this.lastDuration=0,this.backing=e,this.context=t,this.reorderSize=e.getReorderSize(),r(this.reorderSize>=0)}async readNext(){if(this.decodeOrderPackets.length===0&&!await this.readNextPacket())return null;await this.ensureCurrentPacketHasNext();let e=this.decodeOrderPackets[0],t=this.presentationOrderPackets.indexOf(e);r(t!==-1);let n;for(t===this.presentationOrderPackets.length-1?n=this.lastDuration:(n=this.presentationOrderPackets[t+1].pts-e.pts,this.lastDuration=n),this.decodeOrderPackets.shift();this.presentationOrderPackets.length>0;){let e=this.presentationOrderPackets[0];if(this.decodeOrderPackets.includes(e))break;this.presentationOrderPackets.shift()}return{packet:e,duration:n}}async readNextPacket(){if(this.reachedEnd)return!1;let e;return this.context.suppliedPacket||await this.context.markNextPacket(),e=this.context.suppliedPacket,this.context.suppliedPacket=null,e?(this.decodeOrderPackets.push(e),this.processPacketThroughReorderBuffer(e),!0):(this.reachedEnd=!0,this.flushReorderBuffer(),!1)}async ensureCurrentPacketHasNext(){let e=this.decodeOrderPackets[0];for(r(e);;){let t=this.presentationOrderPackets.indexOf(e);if(t!==-1&&t<=this.presentationOrderPackets.length-2||!await this.readNextPacket())break}}processPacketThroughReorderBuffer(e){if(this.reorderBuffer.push(e),this.reorderBuffer.length>this.reorderSize){let e=0;for(let t=1;t<this.reorderBuffer.length;t++)this.reorderBuffer[t].pts<this.reorderBuffer[e].pts&&(e=t);let t=this.reorderBuffer[e];this.presentationOrderPackets.push(t),this.reorderBuffer.splice(e,1)}}flushReorderBuffer(){this.reorderBuffer.sort((e,t)=>e.pts-t.pts),this.presentationOrderPackets.push(...this.reorderBuffer),this.reorderBuffer.length=0}},vo=`application/vnd.apple.mpegurl`,yo=`#EXT-X-STREAM-INF:`,bo=`#EXT-X-I-FRAME-STREAM-INF:`,xo=`#EXT-X-MEDIA:`,So=`#EXTINF:`,Co=`#EXT-X-MAP:`,wo=`#EXT-X-KEY:`,To=`#EXT-X-MEDIA-SEQUENCE:`,Eo=`#EXT-X-BYTERANGE:`,Do=`#EXT-X-PROGRAM-DATE-TIME:`,Oo=`#EXT-X-TARGETDURATION:`,ko=e=>e.length===0||e.startsWith(`#`)&&!e.startsWith(`#EXT`),Ao=class{constructor(e){this._attributes={};let t=``,n=``,r=!1,i=!1;for(let a=0;a<e.length;a++){let o=e[a];o===`"`?i=!i:o===`=`&&!r&&!i?r=!0:o===`,`&&!i?(t&&(this._attributes[t.trim().toLowerCase()]=n),t=``,n=``,r=!1):r?n+=o:t+=o}t&&(this._attributes[t.trim().toLowerCase()]=n)}get(e){return this._attributes[e.toLowerCase()]??null}getAsNumber(e){let t=this.get(e);if(t===null)return null;let n=Number(t);return Number.isFinite(n)?n:null}merge(e){Object.assign(this._attributes,e._attributes)}},jo=class{constructor(e,t,n){this.nextInputCacheAge=0,this.inputCache=[],this.trackBackingsPromise=null,this.firstSegment=null,this.firstSegmentFirstTimestamps=new WeakMap,this.firstTimestampCache=new WeakMap,this.input=e,this.path=t,this.trackDeclarations=n}async getDurationFromMetadata(e){let t=await this.getSegmentAt(1/0,{skipLiveWait:e.skipLiveWait});return t?t.timestamp+t.duration:null}async getUnixTimeForTimestamp(e){let t=await this.getSegmentAt(e,{});if(t??=await this.getFirstSegment({}),!t||t.unixEpochTimestamp===null)return null;let n=e-t.timestamp;return t.unixEpochTimestamp+n}async getTrackBackings(){return this.trackBackingsPromise??=(async()=>{let e=[];if(this.trackDeclarations){for(let t of this.trackDeclarations)if(t.type===`video`){let n=et(e,e=>e.getType()===`video`)+1;e.push(new No(this,t,n))}else if(t.type===`audio`){let n=et(e,e=>e.getType()===`audio`)+1;e.push(new Po(this,t,n))}}else{if(this.firstSegment=await this.getFirstSegment({}),!this.firstSegment)return[];let t=await this.getInputForSegment(this.firstSegment).getTracks();for(let n of t)if(n.type===`video`){let t=et(e,e=>e.getType()===`video`)+1;e.push(new No(this,{id:e.length+1,type:`video`},t))}else if(n.type===`audio`){let t=et(e,e=>e.getType()===`audio`)+1;e.push(new Po(this,{id:e.length+1,type:`audio`},t))}}return e})()}async getFirstTimestampForInput(e){let t=this.firstTimestampCache.get(e);if(t!==void 0)return t;let n=await e.getFirstTimestamp();return this.firstTimestampCache.set(e,n),n}async getMediaOffset(e,t){let n=e.firstSegment??e,r;if(this.firstSegmentFirstTimestamps.has(n))r=this.firstSegmentFirstTimestamps.get(n);else{let e=this.getInputForSegment(n);r=await this.getFirstTimestampForInput(e),this.firstSegmentFirstTimestamps.set(n,r)}if(n===e)return n.timestamp-r;let i=await this.getFirstTimestampForInput(t),a=e.timestamp-n.timestamp,o=i-r-a;return Math.abs(o)<=Math.min(.25,a)?n.timestamp-r:e.timestamp-i}dispose(){for(let e of this.inputCache)e.input.dispose();this.inputCache.length=0}},Mo=class{constructor(e,t,n){this.packetInfos=new WeakMap,this.hydrationPromise=null,this.firstInputTrack=null,this.firstSegment=null,this.segmentedInput=e,this.decl=t,this.number=n}hydrate(){return this.hydrationPromise??=(async()=>{if(this.segmentedInput.firstSegment??=await this.segmentedInput.getFirstSegment({}),!this.segmentedInput.firstSegment)throw Error(`Missing first segment, can't retrieve track.`);let e=this.segmentedInput.firstSegment,t=null;for(;e&&(t=(await this.segmentedInput.getInputForSegment(e).getTracks()).find(e=>e.type===this.decl.type&&e.number===this.number)??null,!t);)e=await this.segmentedInput.getNextSegment(e,{});if(!t)throw Error(`No matching track found in underlying media data.`);this.firstInputTrack=t,this.firstSegment=e})()}getId(){return this.decl.id}getType(){return this.decl.type}getNumber(){return this.number}delegate(e){return this.firstInputTrack?e():this.hydrate().then(e)}async getDecoderConfig(){return this.delegate(()=>this.firstInputTrack._backing.getDecoderConfig())}getHasOnlyKeyPackets(){return this.delegate(()=>this.firstInputTrack._backing.getHasOnlyKeyPackets?.()??null)}getPairingMask(){return 1n}getCodec(){return this.delegate(()=>this.firstInputTrack._backing.getCodec())}getInternalCodecId(){return this.delegate(()=>this.firstInputTrack._backing.getInternalCodecId())}getDisposition(){return this.delegate(()=>this.firstInputTrack._backing.getDisposition())}getLanguageCode(){return this.delegate(()=>this.firstInputTrack._backing.getLanguageCode())}getName(){return this.delegate(()=>this.firstInputTrack._backing.getName())}getTimeResolution(){return this.delegate(()=>this.firstInputTrack._backing.getTimeResolution())}async isRelativeToUnixEpoch(){return await this.hydrate(),r(this.segmentedInput.firstSegment),this.segmentedInput.firstSegment.unixEpochTimestamp===this.segmentedInput.firstSegment.timestamp}getUnixTimeForTimestamp(e){return this.segmentedInput.getUnixTimeForTimestamp(e)}getBitrate(){return this.delegate(()=>this.firstInputTrack._backing.getBitrate())}getAverageBitrate(){return this.delegate(()=>this.firstInputTrack._backing.getAverageBitrate())}getDurationFromMetadata(e){return this.segmentedInput.getDurationFromMetadata(e)}getLiveRefreshInterval(){return this.segmentedInput.getLiveRefreshInterval()}async createAdjustedPacket(e,t,n){r(e.sequenceNumber>=0),r(this.segmentedInput.firstSegment);let i=await this.segmentedInput.getMediaOffset(t,n.input),a=t.timestamp-this.segmentedInput.firstSegment.timestamp,o=e.clone({timestamp:Ce(e.timestamp+i,await n.getTimeResolution()),sequenceNumber:Math.floor(1e8*a)+e.sequenceNumber});return this.packetInfos.set(o,{segment:t,track:n,sourcePacket:e}),o}async getFirstPacket(e){await this.hydrate(),r(this.firstInputTrack),r(this.firstSegment);let t=this.firstInputTrack,n=this.firstSegment;for(;;){if(t){let r=await t._backing.getFirstPacket(e);if(r)return this.createAdjustedPacket(r,n,t)}if(n=await this.segmentedInput.getNextSegment(n,{skipLiveWait:e.skipLiveWait}),!n)break;t=(await this.segmentedInput.getInputForSegment(n).getTracks()).find(e=>e.type===this.firstInputTrack.type&&e.number===this.firstInputTrack.number)??null}return null}getNextPacket(e,t){return this._getNextInternal(e,t,!1)}getNextKeyPacket(e,t){return this._getNextInternal(e,t,!0)}async _getNextInternal(e,t,n){let r=this.packetInfos.get(e);if(!r)throw Error(`Packet was not created from this track.`);let i=n?await r.track._backing.getNextKeyPacket(r.sourcePacket,t):await r.track._backing.getNextPacket(r.sourcePacket,t);if(i)return this.createAdjustedPacket(i,r.segment,r.track);let a=r.segment;for(;;){let e=await this.segmentedInput.getNextSegment(a,{skipLiveWait:t.skipLiveWait});if(!e)return null;let n=(await this.segmentedInput.getInputForSegment(e).getTracks()).find(e=>e.type===r.track.type&&e.number===r.track.number);if(!n){a=e;continue}let i=await n._backing.getFirstPacket(t);return i?this.createAdjustedPacket(i,e,n):null}}getPacket(e,t){return this._getPacketInternal(e,t,!1)}getKeyPacket(e,t){return this._getPacketInternal(e,t,!0)}async _getPacketInternal(e,t,n){let r=await this.segmentedInput.getSegmentAt(e,{skipLiveWait:t.skipLiveWait});if(!r)return null;for(await this.hydrate();r;){let i=this.segmentedInput.getInputForSegment(r),a=(await i.getTracks()).find(e=>e.type===this.firstInputTrack.type&&e.number===this.firstInputTrack.number);if(!a){r=await this.segmentedInput.getPreviousSegment(r,{skipLiveWait:t.skipLiveWait});continue}let o=e-await this.segmentedInput.getMediaOffset(r,i),s=n?await a._backing.getKeyPacket(o,t):await a._backing.getPacket(o,t);if(!s){r=await this.segmentedInput.getPreviousSegment(r,{skipLiveWait:t.skipLiveWait});continue}return this.createAdjustedPacket(s,r,a)}return null}},No=class extends Mo{getType(){return`video`}getCodec(){return this.delegate(()=>this.firstInputTrack._backing.getCodec())}getCodedWidth(){return this.delegate(()=>this.firstInputTrack._backing.getCodedWidth())}getCodedHeight(){return this.delegate(()=>this.firstInputTrack._backing.getCodedHeight())}getSquarePixelWidth(){return this.delegate(()=>this.firstInputTrack._backing.getSquarePixelWidth())}getSquarePixelHeight(){return this.delegate(()=>this.firstInputTrack._backing.getSquarePixelHeight())}getRotation(){return this.delegate(()=>this.firstInputTrack._backing.getRotation())}async getColorSpace(){return this.delegate(()=>this.firstInputTrack._backing.getColorSpace())}async canBeTransparent(){return this.delegate(()=>this.firstInputTrack._backing.canBeTransparent())}async getDecoderConfig(){return this.delegate(()=>this.firstInputTrack._backing.getDecoderConfig())}},Po=class extends Mo{getType(){return`audio`}getCodec(){return this.delegate(()=>this.firstInputTrack._backing.getCodec())}getNumberOfChannels(){return this.delegate(()=>this.firstInputTrack._backing.getNumberOfChannels())}getSampleRate(){return this.delegate(()=>this.firstInputTrack._backing.getSampleRate())}async getDecoderConfig(){return this.delegate(()=>this.firstInputTrack._backing.getDecoderConfig())}},Fo=t(n(((e,t)=>{t.exports={}}))(),1);Ze();var Io=Fo===void 0?void 0:Fo,Lo=1/0,Ro=null;typeof FinalizationRegistry<`u`&&(Ro=new FinalizationRegistry(e=>{e()}));var zo=class extends gt{constructor(){super(),this._disposed=!1,this._refCount=0,this._usedForHls=!1,this._refFinalizationRegistry=null,this._sizePromise=null,this.onread=null,typeof FinalizationRegistry<`u`&&(this._refFinalizationRegistry=new FinalizationRegistry(e=>{e._decrementRefCount()}))}async getSizeOrNull(){if(this._disposed)throw new su;return this._sizePromise??=(async()=>{let e=this._getFileSize();return e===void 0?(await this._read(0,1,0,Lo),e=this._getFileSize(),r(e!==void 0),e):e})()}async getSize(){if(this._disposed)throw new su;let e=await this.getSizeOrNull();if(e===null)throw Error(`Cannot determine the size of an unsized source.`);return e}slice(e,t){if(!Number.isInteger(e)||e<0)throw TypeError(`offset must be a non-negative integer.`);if(t!==void 0&&(!Number.isInteger(t)||t<0))throw TypeError(`length, when provided, must be a non-negative integer.`);return new as(this,e,t)}_dispatchRead(e,t){this.onread?.(e,t),this._emit(`read`,{start:e,end:t})}ref(){return new Bo(this)}_incrementRefCount(){this._refCount++}_decrementRefCount(){this._refCount--,this._refCount===0&&(this._dispose(),this._disposed=!0)}},Bo=class{constructor(e){if(this._freed=!1,e._disposed)throw Error(`Cannot ref a disposed source.`);e._incrementRefCount(),e._refFinalizationRegistry?.register(this,e,this),this._source=e}get source(){if(!this._source)throw Error(`Can't get source; ref has already been freed.`);return this._source}get freed(){return this._freed}free(){if(this._freed)throw Error(`Illegal operation: double free on SourceRef.`);let e=this.source;r(e._refCount>0),e._decrementRefCount(),e._refFinalizationRegistry?.unregister(this),this._freed=!0,this._source=null}[Symbol.dispose](){this.freed||this.free()}},Vo=class extends zo{constructor(e,t){if(typeof e!=`string`)throw TypeError(`rootPath must be a string.`);if(typeof t!=`function`)throw TypeError(`requestHandler must be a function.`);super(),this.rootPath=e,this.requestHandler=t}_resolveRequest(e){let t=this.requestHandler(e),n=e=>{if(!(e instanceof zo||e instanceof Bo))throw TypeError(`requestHandler must return or resolve to a Source or SourceRef.`);let t=e instanceof zo?e.ref():e;return t.source._usedForHls||=this._usedForHls,t};return O(t)?t.then(n):n(t)}},Ho=(e,t)=>e.path===t.path,Uo=class extends Vo{constructor(){super(...arguments),this._root=null,this._rootRequest=null}_read(e,t,n,i){if(!this._root){if(!this._rootRequest){let e=this._resolveRequest({path:this.rootPath,isRoot:!0}),t=e=>{let t=e instanceof zo?e.ref():e;return this._root=t,this._rootRequest=null,t};O(e)?this._rootRequest=e.then(t):(t(e),r(this._root))}if(this._rootRequest)return this._rootRequest.then(r=>r.source._read(e,t,n,i))}return this._root.source._read(e,t,n,i)}_getFileSize(){if(this._root)return this._root.source._getFileSize()}_dispose(){this._root?this._root.free():this._rootRequest&&this._rootRequest.then(e=>e.free())}},Wo=class extends zo{constructor(e){if(!(e instanceof ArrayBuffer)&&!(typeof SharedArrayBuffer<`u`&&e instanceof SharedArrayBuffer)&&!ArrayBuffer.isView(e))throw TypeError(`buffer must be an ArrayBuffer, SharedArrayBuffer, or ArrayBufferView.`);super(),this._onreadCalled=!1,this._bytes=u(e),this._view=d(e)}_getFileSize(){return this._bytes.byteLength}_read(){return this._onreadCalled||=(this._dispatchRead(0,this._bytes.byteLength),!0),{bytes:this._bytes,view:this._view,offset:0}}_dispose(){}},Go=typeof FinalizationRegistry<`u`?new FinalizationRegistry(e=>{e.cancel().catch(()=>{})}):null,Ko=class extends zo{constructor(e,t={}){if(!(e instanceof Blob))throw TypeError(`blob must be a Blob.`);if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(t.maxCacheSize!==void 0&&(!Qe(t.maxCacheSize)||t.maxCacheSize<0))throw TypeError(`options.maxCacheSize, when provided, must be a non-negative number.`);if(t.useStreamReader!==void 0&&typeof t.useStreamReader!=`boolean`)throw TypeError(`options.useStreamReader, when provided, must be a boolean.`);super(),this._readers=new WeakMap,this._blob=e,this._options=t,this._orchestrator=new is({maxCacheSize:t.maxCacheSize??8*2**20,maxWorkerCount:4,runWorker:this._runWorker.bind(this),onIdleWorkerRemoved:e=>{let t=this._readers.get(e);t&&(this._readers.delete(e),Go?.unregister(e),t.cancel().catch(()=>{}))},prefetchProfile:rs.fileSystem}),this._orchestrator.fileSize=e.size}_getFileSize(){return this._orchestrator.fileSize}_read(e,t,n,r){return this._orchestrator.read(e,t,n,r)}async _runWorker(e){r(e.strictTarget);let t=this._readers.get(e);for(t===void 0&&((`stream`in this._blob)&&!Le()&&this._options.useStreamReader!==!1?(t=this._blob.slice(e.currentPos).stream().getReader(),Go?.register(e,t,e)):t=null,this._readers.set(e,t));e.currentPos<e.targetPos&&!e.aborted;)if(t){let{done:n,value:r}=await t.read();if(n)throw this._orchestrator.onWorkerFinished(e),Error(`Blob reader stopped unexpectedly before all requested data was read.`);if(e.aborted)break;this._dispatchRead(e.currentPos,e.currentPos+r.length),this._orchestrator.supplyWorkerData(e,r)}else{let t=await this._blob.slice(e.currentPos,e.targetPos).arrayBuffer();if(e.aborted)break;this._dispatchRead(e.currentPos,e.currentPos+t.byteLength),this._orchestrator.supplyWorkerData(e,new Uint8Array(t))}this._orchestrator.signalWorkerStoppedRunning(e),e.aborted&&await t?.cancel()}_dispose(){this._orchestrator.dispose()}},qo=.5*2**20,Jo=((e,t,n)=>{if(t instanceof Error&&(t.message.includes(`Failed to fetch`)||t.message.includes(`Load failed`)||t.message.includes(`NetworkError when attempting to fetch resource`))&&typeof window<`u`){let e=null;try{typeof window<`u`&&window.location!==void 0&&(e=new URL(n instanceof Request?n.url:n,window.location.href).origin)}catch{}if((!(typeof navigator<`u`&&typeof navigator.onLine==`boolean`)||navigator.onLine)&&e!==null&&e!==window.location.origin)return k._warn(`Request will not be retried because a CORS error was suspected due to different origins. You can modify this behavior by providing your own function for the 'getRetryDelay' option.`),null}return Math.min(2**(e-2),16)}),Yo=new Set,Xo=class e extends Vo{constructor(t,n={}){if(typeof t!=`string`&&!(t instanceof URL)&&!(typeof Request<`u`&&t instanceof Request))throw TypeError(`url must be a string, URL or Request.`);if(!n||typeof n!=`object`)throw TypeError(`options must be an object.`);if(n.requestInit!==void 0&&(!n.requestInit||typeof n.requestInit!=`object`))throw TypeError(`options.requestInit, when provided, must be an object.`);if(n.getRetryDelay!==void 0&&typeof n.getRetryDelay!=`function`)throw TypeError(`options.getRetryDelay, when provided, must be a function.`);if(n.maxCacheSize!==void 0&&(!Qe(n.maxCacheSize)||n.maxCacheSize<0))throw TypeError(`options.maxCacheSize, when provided, must be a non-negative number.`);if(n.parallelism!==void 0&&(!Number.isInteger(n.parallelism)||n.parallelism<1))throw TypeError(`options.parallelism, when provided, must be a positive number.`);if(n.fetchFn!==void 0&&typeof n.fetchFn!=`function`)throw TypeError(`options.fetchFn, when provided, must be a function.`);let r=t instanceof Request?t.url:t instanceof URL?t.href:t;super(r,t=>new e(t.path,this._options)),this._offset=0,this._length=null,this._fileSizeDetermined=!1,this._sequentialBacking=null,this._url=t,this._options=n,this._getRetryDelay=n.getRetryDelay??Jo,this._requestInit={...n.requestInit};let i=null;if(n.requestInit?.headers){let e={...Me(n.requestInit.headers)},t=Object.keys(e).find(e=>e.toLowerCase()===`range`);t!==void 0&&(i=e[t],delete e[t],this._requestInit.headers=e)}if(t instanceof Request){let e=t.headers.get(`Range`);if(e!==null){i??=e;let n=new Request(t);n.headers.delete(`Range`),this._url=n}}if(i!==null){let e=Qo(i);e&&(this._offset=e.offset,this._length=e.length)}this._orchestrator=new is({maxCacheSize:n.maxCacheSize??64*2**20,maxWorkerCount:n.parallelism??2,runWorker:this._runWorker.bind(this),prefetchProfile:rs.network})}_getFileSize(){if(!this._fileSizeDetermined)return this._length===null?void 0:this._length;let e=this._sequentialBacking?this._sequentialBacking._endIndex:this._orchestrator.fileSize;return e===null?this._length===null?null:this._length:D(e-this._offset,0,this._length??1/0)}_read(e,t,n,r){if(this._length!==null&&t>this._length)return null;let i=this._offset,a=this._sequentialBacking?this._sequentialBacking._read(i+e,i+t):this._orchestrator.read(i+e,i+t,Math.max(i+n,i),i+Math.min(r,this._length??1/0)),o=e=>e?(e.offset-=this._offset,e):null;return O(a)?a.then(o):o(a)}async _runWorker(e){for(;;){let t=new AbortController,n=await Ne(this._options.fetchFn??fetch,this._url,je(this._requestInit,{headers:{Range:`bytes=${e.currentPos}-`},signal:t.signal}),this._getRetryDelay,()=>this._disposed);if(!n.ok)throw Error(`Error fetching ${String(this._url)}: ${n.status} ${n.statusText}`);n.redirected&&(this.rootPath=n.url);outer:if(this._orchestrator.fileSize===null){let t=n.headers.get(`Content-Range`);if(t){let e=/\/(\d+)/.exec(t);if(e){this._orchestrator.supplyFileSize(Number(e[1]));break outer}}let r=n.headers.get(`Content-Length`);if(r){let t=n.status===206?e.currentPos:0;this._orchestrator.supplyFileSize(t+Number(r))}}if(this._fileSizeDetermined=!0,!n.body)throw Error(`Missing HTTP response body stream. The used fetch function must provide the response body as a ReadableStream.`);if(n.status!==206){if(this._sequentialBacking){n.body.cancel();return}if(!this._usedForHls){let e=new URL(this._url instanceof Request?this._url.url:this._url,typeof window<`u`?window.location.href:void 0);e.origin!==`null`&&!(e.pathname.endsWith(`.m3u8`)||e.pathname.endsWith(`.m3u`))&&(Yo.has(e.origin)||(k._warn(`HTTP server (origin ${e.origin}) did not respond to a range request with 206 Partial Content, meaning the resource will now be streamed sequentially, with old data being evicted from the cache. Reads into evicted regions will throw. To enable efficient media file streaming across a network, please make sure your server supports range requests. Alternatively, set maxCacheSize to Infinity in the UrlSource options to keep the entire resource in memory.`),Yo.add(e.origin)))}this._transitionToSequentialMode(n.body);return}let r=n.body.getReader();for(;;){if(e.currentPos>=e.targetPos||e.aborted){t.abort(),this._orchestrator.signalWorkerStoppedRunning(e);return}let n;try{n=await r.read()}catch(e){if(this._disposed)throw e;let t=this._getRetryDelay(1,e,this._url);if(t!==null){k._error(`Error while reading response stream. Attempting to resume.`,e),await mt(1e3*t);break}throw e}if(e.aborted)continue;let{done:i,value:a}=n;if(i){if(e.currentPos>=e.targetPos){this._orchestrator.onWorkerFinished(e);return}if(e.strictTarget)break;this._orchestrator.onWorkerFinished(e);return}this._dispatchRead(e.currentPos,e.currentPos+a.length),this._orchestrator.supplyWorkerData(e,a)}}}_transitionToSequentialMode(e){let t=e.getReader(),n=0,i=0,a=new ns(new ReadableStream({pull:async e=>{for(;;){let r;try{r=await t.read()}catch(e){if(this._disposed)throw e;let r=this._getRetryDelay(1,e,this._url);if(r===null)throw e;k._error(`Error while reading response stream. Attempting to resume.`,e),await mt(1e3*r);let a=await Ne(this._options.fetchFn??fetch,this._url,je(this._requestInit,{headers:{Range:`bytes=${n}-`}}),this._getRetryDelay,()=>this._disposed);if(!a.ok)throw Error(`Error fetching ${String(this._url)}: ${a.status} ${a.statusText}`);if(!a.body)throw Error(`Missing HTTP response body stream. The used fetch function must provide the response body as a ReadableStream.`);t=a.body.getReader(),i=a.status===206?0:n;continue}if(r.done){e.close();return}let a=r.value;if(i>0){let e=Math.min(i,a.length);i-=e,a=a.subarray(e)}if(a.length!==0){n+=a.length,e.enqueue(a);return}}},cancel:()=>t.cancel()}),{maxCacheSize:this._orchestrator.options.maxCacheSize});a._endIndex=this._orchestrator.fileSize,a._cacheMissErrorMessage=`Attempted to read data from an already-evicted part of the cache. Because the HTTP server did not honor the range request, data can only be read sequentially, with old data being evicted from the cache. To fix this issue, either ensure your server responds to range requests with 206 Partial Content, or set maxCacheSize to Infinity in the UrlSource options. Note that the latter will store the entire file in the cache if needed, no matter how large.`,a.on(`read`,({start:e,end:t})=>this._dispatchRead(e,t)),this._sequentialBacking=a;let o=new Set;for(let e of this._orchestrator.workers){for(let t of e.pendingSlices)o.add(t);e.aborted=!0,e.pendingSlices.length=0}for(let e of this._orchestrator.queuedReads)for(let t of e.pendingSlices)o.add(t);this._orchestrator.workers.length=0,this._orchestrator.queuedReads.length=0;for(let e of o){let t=a._read(e.start,e.start+e.bytes.length);O(t)?t.then(t=>{t?(r(t.offset===e.start),e.resolve(t.bytes)):e.resolve(null)},t=>e.reject(t)):(r(t===null),e.resolve(null))}}_dispose(){this._orchestrator.dispose(),this._sequentialBacking&&(this._sequentialBacking._disposed=!0,this._sequentialBacking._dispose())}},Zo=/^bytes=(\d+)-(\d*)$/,Qo=e=>{let t=Zo.exec(e.trim());if(!t)return null;let n=Number(t[1]),r=t[2]===``?null:Number(t[2]);return r!==null&&r<n?null:{offset:n,length:r===null?null:r-n+1}},$o=class e extends Vo{constructor(t,n={}){if(typeof t!=`string`)throw TypeError(`filePath must be a string.`);if(!n||typeof n!=`object`)throw TypeError(`options must be an object.`);if(n.maxCacheSize!==void 0&&(!Qe(n.maxCacheSize)||n.maxCacheSize<0))throw TypeError(`options.maxCacheSize, when provided, must be a non-negative number.`);if(!Io.fs)throw Error(`FilePathSource is only available in server-side environments (Node.js, Bun, Deno).`);super(t,t=>new e(t.path,n)),this._fileHandle=null,this._customSource=new es({getSize:async()=>{let e=await Io.fs.open(t,`r`);return this._fileHandle=e,Ro?.register(this,()=>{e.close()},this),(await e.stat()).size},read:async(e,t)=>{r(this._fileHandle);let n=new Uint8Array(t-e);return await this._fileHandle.read(n,0,t-e,e),n},maxCacheSize:n.maxCacheSize,prefetchProfile:`fileSystem`})}_read(e,t,n,r){return this._customSource._read(e,t,n,r)}_getFileSize(){return this._customSource._getFileSize()}_dispose(){this._customSource._dispose(),this._fileHandle&&(this._fileHandle.close(),this._fileHandle=null,Ro?.unregister(this))}},es=class extends zo{constructor(e){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(typeof e.getSize!=`function`)throw TypeError(`options.getSize must be a function.`);if(typeof e.read!=`function`)throw TypeError(`options.read must be a function.`);if(e.dispose!==void 0&&typeof e.dispose!=`function`)throw TypeError(`options.dispose, when provided, must be a function.`);if(e.maxCacheSize!==void 0&&(!Qe(e.maxCacheSize)||e.maxCacheSize<0))throw TypeError(`options.maxCacheSize, when provided, must be a non-negative number.`);if(e.prefetchProfile&&![`none`,`fileSystem`,`network`].includes(e.prefetchProfile))throw TypeError(`options.prefetchProfile, when provided, must be one of 'none', 'fileSystem' or 'network'.`);super(),this._options=e,this._orchestrator=new is({maxCacheSize:e.maxCacheSize??8*2**20,maxWorkerCount:2,prefetchProfile:rs[e.prefetchProfile??`none`],runWorker:this._runWorker.bind(this)})}_getFileSize(){return this._orchestrator.fileSize??void 0}_read(e,t,n,r){if(this._orchestrator.fileSize!==null)return this._orchestrator.read(e,t,n,r);let i=this._options.getSize();if(O(i))return i.then(i=>{if(!Number.isInteger(i)||i<0)throw TypeError(`options.getSize must return or resolve to a non-negative integer.`);return this._orchestrator.fileSize=i,this._orchestrator.read(e,t,n,r)});if(!Number.isInteger(i)||i<0)throw TypeError(`options.getSize must return or resolve to a non-negative integer.`);return this._orchestrator.fileSize=i,this._orchestrator.read(e,t,n,r)}async _runWorker(e){for(;e.currentPos<e.targetPos&&!e.aborted;){let t=e.currentPos,n=e.targetPos,r=this._options.read(e.currentPos,n);if(O(r)&&(r=await r),e.aborted)break;if(r instanceof Uint8Array){if(r=u(r),r.length!==n-e.currentPos)throw Error(`options.read returned a Uint8Array with unexpected length: Requested ${n-e.currentPos} bytes, but got ${r.length}.`);this._dispatchRead(e.currentPos,e.currentPos+r.length),this._orchestrator.supplyWorkerData(e,r)}else if(r instanceof ReadableStream){let i=r.getReader();for(;e.currentPos<n&&!e.aborted;){let{done:r,value:a}=await i.read();if(r){if(e.currentPos<n)throw Error(`ReadableStream returned by options.read ended before supplying enough data. Requested ${n-t} bytes, but got ${e.currentPos-t}`);break}if(!(a instanceof Uint8Array))throw TypeError(`ReadableStream returned by options.read must yield Uint8Array chunks.`);if(e.aborted)break;let o=u(a);this._dispatchRead(e.currentPos,e.currentPos+o.length),this._orchestrator.supplyWorkerData(e,o)}}else throw TypeError(`options.read must return or resolve to a Uint8Array or a ReadableStream.`)}this._orchestrator.signalWorkerStoppedRunning(e)}_dispose(){this._orchestrator.dispose(),this._options.dispose?.()}},ts=es,ns=class extends zo{constructor(e,t={}){if(!(e instanceof ReadableStream))throw TypeError(`stream must be a ReadableStream.`);if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(t.maxCacheSize!==void 0&&(!Qe(t.maxCacheSize)||t.maxCacheSize<0))throw TypeError(`options.maxCacheSize, when provided, must be a non-negative number.`);super(),this._reader=null,this._cache=[],this._pendingSlices=[],this._currentIndex=0,this._targetIndex=0,this._maxRequestedIndex=0,this._endIndex=null,this._pulling=!1,this._cacheMissErrorMessage=`Attempted to read data from an already-evicted part of the cache. With ReadableStreamSource, you must access the data more sequentially or increase the size of its cache.`,this._stream=e,this._maxCacheSize=t.maxCacheSize??32*2**20}_getFileSize(){return this._endIndex}_read(e,t){if(this._endIndex!==null&&t>this._endIndex)return null;this._maxRequestedIndex=Math.max(this._maxRequestedIndex,t);let n=w(this._cache,e,e=>e.start),r=n===-1?null:this._cache[n];if(r&&r.start<=e&&t<=r.end)return{bytes:r.bytes,view:r.view,offset:r.start};let i=e,a=new Uint8Array(t-e);if(n!==-1)for(let r=n;r<this._cache.length;r++){let n=this._cache[r];if(n.start>=t)break;let o=Math.max(e,n.start);o>i&&this._throwDueToCacheMiss();let s=Math.min(t,n.end);o<s&&(a.set(n.bytes.subarray(o-n.start,s-n.start),o-e),i=s)}if(i===t)return{bytes:a,view:d(a),offset:e};this._currentIndex>i&&this._throwDueToCacheMiss();let{promise:o,resolve:s,reject:c}=T();return this._pendingSlices.push({start:e,end:t,bytes:a,resolve:s,reject:c}),this._targetIndex=Math.max(this._targetIndex,t),this._pulling||(this._pulling=!0,this._pull().catch(e=>{if(this._pulling=!1,this._pendingSlices.length>0)this._pendingSlices.forEach(t=>t.reject(e)),this._pendingSlices.length=0;else throw e})),o}_throwDueToCacheMiss(){throw Error(this._cacheMissErrorMessage)}async _pull(){for(this._reader??=this._stream.getReader();this._currentIndex<this._targetIndex&&!this._disposed;){let{done:e,value:t}=await this._reader.read();if(e){for(let e of this._pendingSlices)e.resolve(null);this._pendingSlices.length=0,this._endIndex=this._currentIndex;break}let n=this._currentIndex,r=this._currentIndex+t.byteLength;this._dispatchRead(n,r);for(let e=0;e<this._pendingSlices.length;e++){let i=this._pendingSlices[e],a=Math.max(n,i.start),o=Math.min(r,i.end);a<o&&(i.bytes.set(t.subarray(a-n,o-n),a-i.start),o===i.end&&(i.resolve({bytes:i.bytes,view:d(i.bytes),offset:i.start}),this._pendingSlices.splice(e,1),e--))}for(this._cache.push({start:n,end:r,bytes:t,view:d(t),age:0});this._cache.length>0;){let e=this._cache[0];if(this._maxRequestedIndex-e.end<=this._maxCacheSize)break;this._cache.shift()}this._currentIndex+=t.byteLength}this._pulling=!1}_dispose(){for(let e of this._pendingSlices)e.reject(new su);this._pendingSlices.length=0,this._cache.length=0,this._reader?.cancel()}},rs={none:(e,t)=>({start:e,end:t}),fileSystem:(e,t)=>{let n=2**16;return e=Math.floor((e-n)/n)*n,t=Math.ceil((t+n)/n)*n,{start:e,end:t}},network:(e,t,n)=>{let r=2**16;e=Math.max(0,Math.floor((e-r)/r)*r);for(let r of n){let n=8*2**20,i=Math.max((r.startPos+r.targetPos)/2,r.targetPos-n);if(Ge(e,t,i,r.targetPos)){let e=r.targetPos-r.startPos,i=Math.ceil((e+1)/n)*n,a=2**Math.ceil(Math.log2(e+1)),o=Math.min(a,i);t=Math.max(t,r.startPos+o)}}return t=Math.max(t,e+qo),{start:e,end:t}}},is=class{constructor(e){this.options=e,this.fileSize=null,this.nextAge=0,this.workers=[],this.cache=[],this.currentCacheSize=0,this.disposed=!1,this.queuedReads=[]}read(e,t,n,i){r(!this.disposed);let a=this.options.prefetchProfile(e,t,this.workers),o=Math.max(a.start,n),s=Math.min(a.end,this.fileSize??1/0,i);r(o<=e&&t<=s);let c=null,l=w(this.cache,e,e=>e.start),u=l===-1?null:this.cache[l];u&&u.start<=e&&t<=u.end&&(u.age=this.nextAge++,c={bytes:u.bytes,view:u.view,offset:u.start});let f=w(this.cache,o,e=>e.start),p=c?null:new Uint8Array(t-e),m=0,h=o,g=[];if(f!==-1){for(let n=f;n<this.cache.length;n++){let i=this.cache[n];if(i.start>=s)break;if(i.end<=o)continue;let a=Math.max(o,i.start),c=Math.min(s,i.end);if(r(a<=c),h<a&&g.push({start:h,end:a}),h=c,p){let n=Math.max(e,i.start),r=Math.min(t,i.end);if(n<r){let t=n-e;p.set(i.bytes.subarray(n-i.start,r-i.start),t),t===m&&(m=r-e)}}i.age=this.nextAge++}h<s&&g.push({start:h,end:s})}else g.push({start:o,end:s});if(p&&m>=p.length&&(c={bytes:p,view:d(p),offset:e}),g.length===0)return r(c),c;let{promise:_,resolve:v,reject:y}=T(),b=[];for(let n of g){let r=Math.max(e,n.start),i=Math.min(t,n.end);r===n.start&&i===n.end?b.push(n):r<i&&b.push({start:r,end:i})}let x=p&&{start:e,bytes:p,holes:b,resolve:v,reject:y};outer:for(let e of g){for(let t of this.workers)if(this.checkHoleAgainstWorker(t,e,x?[x]:[])){this.checkQueuedReadsAgainstWorker(t);continue outer}let t=e.end<s||this.fileSize!==null,n=this.createWorker(e.start,e.end,t);if(n)x&&(n.pendingSlices=[x]),this.runWorker(n);else{let n=w(this.queuedReads,e.start,e=>e.hole.start),r=n===-1?null:this.queuedReads[n];for(r&&e.start<=r.hole.end?(r.hole.end=Math.max(r.hole.end,e.end),r.strictTarget&&=t,x&&r.pendingSlices.push(x)):(n++,r={hole:{start:e.start,end:e.end},strictTarget:t,pendingSlices:x?[x]:[],age:this.nextAge++},this.queuedReads.splice(n,0,r));n+1<this.queuedReads.length;){let e=this.queuedReads[n+1];if(e.hole.start>r.hole.end)break;r.hole.end=Math.max(r.hole.end,e.hole.end),r.pendingSlices.push(...e.pendingSlices),r.strictTarget&&=e.strictTarget,r.age=Math.min(r.age,e.age),this.queuedReads.splice(n+1,1)}}}return c?_.catch(e=>{if(!this.disposed)throw e}):(r(p),c=_.then(t=>t&&{bytes:t,view:d(t),offset:e})),c}checkHoleAgainstWorker(e,t,n){if(Ge(t.start-2**17,t.start,e.currentPos,e.targetPos)){e.targetPos=Math.max(e.targetPos,t.end);for(let t=0;t<n.length;t++){let r=n[t];e.pendingSlices.includes(r)||e.pendingSlices.push(r)}return e.running||this.runWorker(e),!0}return!1}checkQueuedReadsAgainstWorker(e){let t=!1;for(let n=0;n<this.queuedReads.length;n++){let r=this.queuedReads[n];if(this.checkHoleAgainstWorker(e,r.hole,r.pendingSlices))this.queuedReads.splice(n,1),n--,t=!0;else if(t)break}}createWorker(e,t,n){if(this.workers.length>=this.options.maxWorkerCount){let e=null,t=null;for(let n=0;n<this.workers.length;n++){let r=this.workers[n];!r.running&&r.pendingSlices.length===0&&(!e||r.age<e.age)&&(t=n,e=r)}if(e)r(t!==null),r(e.pendingSlices.length===0),this.workers.splice(t,1),this.options.onIdleWorkerRemoved?.(e);else return null}let i={startPos:e,currentPos:e,targetPos:t,strictTarget:n,running:!1,aborted:this.disposed,pendingSlices:[],age:this.nextAge++};return this.workers.push(i),i}runWorker(e){r(!e.running),r(e.currentPos<e.targetPos),e.running=!0,e.age=this.nextAge++,this.options.runWorker(e).catch(t=>{if(e.running=!1,e.pendingSlices.length>0)e.pendingSlices.forEach(e=>e.reject(t)),e.pendingSlices.length=0;else if(!e.aborted&&!this.disposed)throw t}).finally(()=>{if(!e.running&&this.queuedReads.length>0){let e=0;for(let t=1;t<this.queuedReads.length;t++)this.queuedReads[t].age<this.queuedReads[e].age&&(e=t);let t=this.queuedReads[e],n=this.createWorker(t.hole.start,t.hole.end,t.strictTarget);if(!n)return;this.queuedReads.splice(e,1),n.pendingSlices=t.pendingSlices,this.runWorker(n)}})}supplyWorkerData(e,t){r(!e.aborted);let n=e.currentPos,i=n+t.length;this.insertIntoCache({start:n,end:i,bytes:t,view:d(t),age:this.nextAge++}),e.currentPos+=t.length,e.currentPos>e.targetPos&&(e.targetPos=e.currentPos,this.checkQueuedReadsAgainstWorker(e));for(let r=0;r<e.pendingSlices.length;r++){let a=e.pendingSlices[r],o=Math.max(n,a.start),s=Math.min(i,a.start+a.bytes.length);o<s&&a.bytes.set(t.subarray(o-n,s-n),o-a.start);for(let e=0;e<a.holes.length;e++){let t=a.holes[e];n<=t.start&&i>t.start&&(t.start=i),t.end<=t.start&&(a.holes.splice(e,1),e--)}a.holes.length===0&&(a.resolve(a.bytes),e.pendingSlices.splice(r,1),r--)}for(let t=0;t<this.workers.length;t++){let r=this.workers[t];e===r||r.running||Ge(n,i,r.currentPos,r.targetPos)&&(this.workers.splice(t,1),this.options.onIdleWorkerRemoved?.(r),t--)}}supplyFileSize(e){r(this.fileSize===null),this.fileSize=e;for(let t of this.workers){t.targetPos=Math.min(t.targetPos,e),t.strictTarget=!0;for(let n=0;n<t.pendingSlices.length;n++){let r=t.pendingSlices[n];for(let i of r.holes)if(i.end>e){r.resolve(null),t.pendingSlices.splice(n,1),n--;break}}}for(let t=0;t<this.queuedReads.length;t++){let n=this.queuedReads[t];if(n.hole.start>=e){for(let e of n.pendingSlices)e.resolve(null);this.queuedReads.splice(t,1),t--}else if(n.hole.end>e){n.hole.end=e,n.strictTarget=!0;for(let t=0;t<n.pendingSlices.length;t++){let r=n.pendingSlices[t];r.start>=e&&(r.resolve(null),n.pendingSlices.splice(t,1),t--)}}}}signalWorkerStoppedRunning(e){e.running=!1,e.aborted||(e.pendingSlices.length=0)}onWorkerFinished(e){let t=this.workers.indexOf(e);r(t!==-1),e.running=!1,this.workers.splice(t,1),this.options.onIdleWorkerRemoved?.(e),this.fileSize===null&&this.supplyFileSize(e.currentPos);for(let t of e.pendingSlices)t.resolve(null)}insertIntoCache(e){if(this.options.maxCacheSize===0)return;let t=w(this.cache,e.start,e=>e.start)+1;if(t>0){let n=this.cache[t-1];if(n.end>=e.end)return;if(n.end>e.start){let r=new Uint8Array(e.end-n.start);r.set(n.bytes,0),r.set(e.bytes,e.start-n.start),this.currentCacheSize+=e.end-n.end,n.bytes=r,n.view=d(r),n.end=e.end,t--,e=n}else this.cache.splice(t,0,e),this.currentCacheSize+=e.bytes.length}else this.cache.splice(t,0,e),this.currentCacheSize+=e.bytes.length;for(let n=t+1;n<this.cache.length;n++){let t=this.cache[n];if(e.end<=t.start)break;if(e.end>=t.end){this.cache.splice(n,1),this.currentCacheSize-=t.bytes.length,n--;continue}let r=new Uint8Array(t.end-e.start);r.set(e.bytes,0),r.set(t.bytes,t.start-e.start),this.currentCacheSize-=e.end-t.start,e.bytes=r,e.view=d(r),e.end=t.end,this.cache.splice(n,1);break}for(;this.currentCacheSize>this.options.maxCacheSize;){let e=0,t=this.cache[0];for(let n=1;n<this.cache.length;n++){let r=this.cache[n];r.age<t.age&&(e=n,t=r)}if(this.currentCacheSize-t.bytes.length<=this.options.maxCacheSize)break;this.cache.splice(e,1),this.currentCacheSize-=t.bytes.length}}dispose(){for(let e of this.workers){for(let t of e.pendingSlices)t.reject(new su);e.pendingSlices.length=0,e.aborted=!0,e.running||this.options.onIdleWorkerRemoved?.(e)}for(let e of this.queuedReads)for(let t of e.pendingSlices)t.reject(new su);this.workers.length=0,this.cache.length=0,this.queuedReads.length=0,this.disposed=!0}},as=class extends zo{constructor(e,t,n){if(super(),this._ref=null,e._disposed)throw Error(`Cannot create a slice of a disposed source.`);this._baseSource=e,this._offset=t,this._length=n??null}_getFileSize(){let e=this._baseSource._getFileSize();return e===void 0?this._length===null?void 0:this._length:e===null?this._length===null?null:this._length:D(e-this._offset,0,this._length??1/0)}_read(e,t,n,r){if(this._length!==null&&t>this._length)return null;let i=this._baseSource._read(this._offset+e,this._offset+t,this._offset+n,this._offset+r),a=e=>e?(e.offset-=this._offset,e):null;return O(i)?i.then(a):a(i)}_dispose(){this._ref?.free()}ref(){return this._ref??=this._baseSource.ref(),super.ref()}},os=function(e,t,n){if(t!=null){if(typeof t!=`object`&&typeof t!=`function`)throw TypeError(`Object expected.`);var r,i;if(n){if(!Symbol.asyncDispose)throw TypeError(`Symbol.asyncDispose is not defined.`);r=t[Symbol.asyncDispose]}if(r===void 0){if(!Symbol.dispose)throw TypeError(`Symbol.dispose is not defined.`);r=t[Symbol.dispose],n&&(i=r)}if(typeof r!=`function`)throw TypeError(`Object not disposable.`);i&&(r=function(){try{i.call(this)}catch(e){return Promise.reject(e)}}),e.stack.push({value:t,dispose:r,async:n})}else n&&e.stack.push({async:!0});return t},ss=(function(e){return function(t){function n(n){t.error=t.hasError?new e(n,t.error,`An error was suppressed during disposal.`):n,t.hasError=!0}var r,i=0;function a(){for(;r=t.stack.pop();)try{if(!r.async&&i===1)return i=0,t.stack.push(r),Promise.resolve().then(a);if(r.dispose){var e=r.dispose.call(r.value);if(r.async)return i|=2,Promise.resolve(e).then(a,function(e){return n(e),a()})}else i|=1}catch(e){n(e)}if(i===1)return t.hasError?Promise.reject(t.error):Promise.resolve();if(t.hasError)throw t.error}return a()}})(typeof SuppressedError==`function`?SuppressedError:function(e,t,n){var r=Error(n);return r.name=`SuppressedError`,r.error=e,r.suppressed=t,r}),cs=/^0[xX][0-9a-fA-F]+$/,ls=/^data:.*;base64,/i,us=class extends jo{constructor(e,t,n,r){super(e.input,t,n),this.segments=[],this.nextLines=null,this.currentUpdateSegmentsPromise=null,this.streamHasEnded=!1,this.lastSegmentUpdateTime=-1/0,this.refreshInterval=5,this.rootPath=t,this.demuxer=e,this.nextLines=r}runUpdateSegments(){return this.currentUpdateSegmentsPromise??=(async()=>{try{let e=this.getRemainingWaitTimeMs();e>0&&await mt(e),this.lastSegmentUpdateTime=performance.now(),await this.updateSegments()}finally{this.currentUpdateSegmentsPromise=null}})()}getRemainingWaitTimeMs(){let e=performance.now()-this.lastSegmentUpdateTime,t=Math.max(0,1e3*this.refreshInterval-e);return t<=50?0:t}async updateSegments(){let e=this.nextLines;if(this.nextLines=null,!e){let t={stack:[],error:void 0,hasError:!1};try{let n=os(t,await this.demuxer.input._getSourceUncached({path:this.rootPath,isRoot:!1}),!1),i=await new cu(n.source).requestEntireFile();r(i),e=wu(i,i.length,{ignore:ko}),n.source instanceof Vo&&(this.rootPath=n.source.rootPath)}catch(e){t.error=e,t.hasError=!0}finally{ss(t)}}let t=this.input._formatOptions.hls?.offsetTimestampsByDateTime!==!1,n=!1,i=0,o=null,s=null,c=null,l=0,u=null,f=null,p=null,m=null,h=null,g=null,_=!1,v=a(this.segments)??null,y=e=>{let t=e.indexOf(`@`),n=Number(t===-1?e:e.slice(0,t));if(!Number.isInteger(n)||n<0)throw Error(`Invalid #EXT-X-BYTERANGE length '${e}'.`);let r=null;if(t!==-1&&(r=Number(e.slice(t+1)),!Number.isInteger(r)||r<0))throw Error(`Invalid #EXT-X-BYTERANGE offset '${e}'.`);return{length:n,offset:r}},b=e=>{l=e,v&&(r(v.sequenceNumber!==null),v.sequenceNumber<e&&(i=v.timestamp+v.duration,u=v.firstSegment,f=v.initSegment,h=v.lastProgramDateTimeSeconds,o=v.unixEpochTimestamp===null?null:v.unixEpochTimestamp+v.duration,v=null))};for(let r=0;r<e.length;r++){let x=e[r];if(!n){if(x!==`#EXTM3U`)throw Error(`Invalid M3U8 file; expected first line to be #EXTM3U.`);n=!0;continue}if(!x.startsWith(`#`)){if(!v){if(s===null)throw Error(`Invalid M3U8 file; a segment must be preceded by an #EXTINF tag.`);let e=c;if(e&&e.method===`AES-128`&&!e.iv){let t=new Uint8Array(16),n=d(t);n.setUint32(8,Math.floor(l/2**32)),n.setUint32(12,l),e={...e,iv:t}}let t={path:$e(this.rootPath,x),offset:m?.offset??0,length:m?.length??null},n={timestamp:i,unixEpochTimestamp:o,firstSegment:u,sequenceNumber:l,location:t,duration:s,encryption:e,initSegment:f,lastProgramDateTimeSeconds:h};u??=n,i+=s,o!==null&&(o+=s),this.segments.push(n)}s=null,m===null?p=null:m=null,b(l+1)}if(x.startsWith(`#EXTINF:`)){if(v){_=!0;continue}_||=(h===null&&l>0&&g!==null&&(i=l*g),!0);let e=x.slice(So.length),t=e.indexOf(`,`),n=t===-1?e:e.slice(0,t),r=Number(n);if(!Number.isFinite(r)||r<0)throw Error(`Invalid #EXTINF tag duration '${n}'.`);s=r}else if(x.startsWith(`#EXT-X-MAP:`)){let e=new Ao(x.slice(Co.length)),t=e.get(`uri`);if(!t)throw Error(`Invalid #EXT-X-MAP tag; missing URI attribute.`);let n=e.get(`byterange`),r=null;if(n!==null&&(r=y(n)),r&&r.offset===null)throw Error(`Invalid #EXT-X-MAP tag; BYTERANGE attribute must have a specified offset.`);if(!v){let e={path:$e(this.rootPath,t),offset:r?.offset??0,length:r?.length??null};if(c?.method===`AES-128`&&!c.iv)throw Error(`IV attribute must be set on #EXT-X-KEY tag preceding the #EXT-X-MAP tag.`);f={timestamp:i,unixEpochTimestamp:o,firstSegment:null,sequenceNumber:null,location:e,duration:0,encryption:c,initSegment:null,lastProgramDateTimeSeconds:h}}s=null,m===null?p=null:m=null}else if(x.startsWith(`#EXT-X-KEY:`)){let e=new Ao(x.slice(wo.length)),t=e.get(`method`);if(t===`NONE`)c=null;else if(t===`AES-128`){let t=e.get(`uri`);if(!t)throw Error(`Invalid #EXT-X-KEY: AES-128 requires a URI attribute.`);let n=null,r=e.get(`iv`);if(r){if(!cs.test(r))throw Error(`Unsupported IV format '${r}'.`);let e=r.slice(2);e=e.padStart(32,`0`),n=new Uint8Array(16);for(let t=0;t<16;t++){let r=-32+t;n[t]=parseInt(e.slice(r,r+2),16)}}let i=e.get(`keyformat`)??`identity`;if(i!==`identity`)throw Error(`For AES-128 encryption, only the 'identity' KEYFORMAT is currently supported. If you think other formats should be supported, please raise an issue.`);c={method:`AES-128`,keyUri:$e(this.rootPath,t),iv:n,keyFormat:i}}else if(t===`SAMPLE-AES`||t===`SAMPLE-AES-CTR`){let n=e.get(`uri`);if(!n)throw Error(`Invalid #EXT-X-KEY: ${t} requires a URI attribute.`);if((e.get(`keyformat`)??`identity`)===`identity`)throw Error(`For SAMPLE-AES and SAMPLE-AES-CTR encryption, the 'identity' KEYFORMAT is not supported. If you think this format should be supported, please raise an issue.`);let r=null;if(ls.test(n)){let e=n.indexOf(`,`),t=Je(n.slice(e+1));if(t.length>=8&&t[4]===112&&t[5]===115&&t[6]===115&&t[7]===104){let e=d(t).getUint32(0);r=ri(t.subarray(8,Math.min(e,t.length)))}}c={method:t,psshBox:r}}else throw Error(`Unsupported encryption method '${t}'. If you think this method should be supported, please raise an issue.`)}else if(x.startsWith(`#EXT-X-MEDIA-SEQUENCE:`)){let e=x.slice(To.length),t=Number(e);if(!Number.isInteger(t)||t<0)throw Error(`Invalid EXT-X-MEDIA-SEQUENCE value '${e}'.`);b(t)}else if(x.startsWith(`#EXT-X-BYTERANGE:`)){let e=y(x.slice(Eo.length));if(e.offset===null){if(p===null)throw Error(`Invalid M3U8 file; #EXT-X-BYTERANGE without offset requires a previous byte range.`);e.offset=p}m=e,p=e.offset+e.length}else if(x.startsWith(`#EXT-X-PROGRAM-DATE-TIME:`)){if(v)continue;let e=x.slice(Do.length),n=Date.parse(e);if(!Number.isFinite(n))continue;let r=n/1e3;if(h===r)continue;if(h===null&&this.segments.length>0){let e=a(this.segments),n=r-(e.timestamp+e.duration);for(let e of this.segments)e.unixEpochTimestamp=e.timestamp+n,t&&(e.timestamp=e.unixEpochTimestamp)}h=r,o=r,t&&(i=r)}else if(x===`#EXT-X-DISCONTINUITY`)u=null;else if(x.startsWith(`#EXT-X-TARGETDURATION:`)){let e=x.slice(Oo.length),t=Number(e);if(!Number.isFinite(t)||t<0)throw Error(`Invalid EXT-X-TARGETDURATION value '${e}'.`);this.refreshInterval=t,g=t}else if(x===`#EXT-X-ENDLIST`){this.streamHasEnded=!0;break}else x.startsWith(`#EXT-X-PLAYLIST-TYPE:`)&&x.slice(21).toLowerCase()===`vod`&&(this.streamHasEnded=!0)}if(!n)throw Error(`Invalid M3U8 file; no #EXTM3U header.`)}async getFirstSegment(){return this.segments.length===0&&await this.runUpdateSegments(),this.segments[0]??null}async getSegmentAt(e,t){this.segments.length===0&&await this.runUpdateSegments();let n=!!t.skipLiveWait&&this.getRemainingWaitTimeMs()>0;for(;;){let r=w(this.segments,e,e=>e.timestamp);if(r===-1)return null;if(r<this.segments.length-1||this.streamHasEnded||n)return this.segments[r];let i=this.segments[r];if(e<i.timestamp+i.duration)return i;await this.runUpdateSegments(),t.skipLiveWait&&(n=!0)}}async getNextSegment(e,t){let n=this.segments.indexOf(e);r(n!==-1);let i=n+1,a=!!t.skipLiveWait&&this.getRemainingWaitTimeMs()>0;for(;;){if(i<this.segments.length)return this.segments[i];if(this.streamHasEnded||a)return null;await this.runUpdateSegments(),t.skipLiveWait&&(a=!0)}}async getPreviousSegment(e){let t=this.segments.indexOf(e);return r(t!==-1),this.segments[t-1]??null}getInputForSegment(e){let t=e,n=this.inputCache.find(e=>e.segment===t);if(n)return n.age=this.nextInputCacheAge++,n.input;let i=null;(t.initSegment||t.firstSegment)&&(i=this.getInputForSegment(t.initSegment??t.firstSegment));let a={...this.input._formatOptions,isobmff:{...this.input._formatOptions.isobmff,resolveKeyId:this.input._formatOptions.isobmff?.resolveKeyId&&(e=>{if(!t.encryption||t.encryption.method!==`SAMPLE-AES`&&t.encryption.method!==`SAMPLE-AES-CTR`||!t.encryption.psshBox)return this.input._formatOptions.isobmff.resolveKeyId(e);let n=e.psshBoxes,{psshBox:r}=t.encryption;return(r.keyIds===null||r.keyIds.includes(e.keyId))&&!n.some(e=>ii(e,r))&&(n=[...n,r]),this.input._formatOptions.isobmff.resolveKeyId({...e,psshBoxes:n})})}},o=new au({source:new Uo(t.location.path,async e=>{r(e.isRoot);let n={...e,isRoot:!1},i,a=t.location.offset>0||t.location.length!==null;if(!t.encryption||t.encryption.method===`SAMPLE-AES`||t.encryption.method===`SAMPLE-AES-CTR`){if(i=await this.input._getSourceCached(n),a){let e=i.source.slice(t.location.offset,t.location.length??void 0).ref();i.free(),i=e}}else if(t.encryption.method===`AES-128`){let e=t.encryption;r(e.iv);let o=await this.input._getSourceCached(n);if(a){let e=o.source.slice(t.location.offset,t.location.length??void 0).ref();o.free(),o=e}i=new ns(xi(new cu(o.source),async()=>{let t={stack:[],error:void 0,hasError:!1};try{let n=await new cu(os(t,await this.input._getSourceCached({path:e.keyUri,isRoot:!1},2),!1).source).requestSlice(0,16);if(!n)throw Error(`Invalid AES-128 key; expected at least 16 bytes of data.`);return{key:V(n,16),iv:e.iv}}catch(e){t.error=e,t.hasError=!0}finally{ss(t)}},()=>{o.free()})).ref()}else r(!1);return i}),formats:this.input._formats.filter(e=>!(e instanceof As)),initInput:i??void 0,formatOptions:a});if(o._onFormatDetermined=e=>{if((t.encryption?.method===`SAMPLE-AES`||t.encryption?.method===`SAMPLE-AES-CTR`)&&!e._isIsobmff)throw Error(`The SAMPLE-AES and SAMPLE-AES-CTR encryption methods are currently only supported for ISOBMFF files.`)},this.inputCache.push({segment:t,input:o,age:this.nextInputCacheAge++}),this.inputCache.length>4){let e=tt(this.inputCache,e=>e.age);r(e!==-1),this.inputCache.splice(e,1)}return o}async getLiveRefreshInterval(){return this.getRemainingWaitTimeMs()===0&&await this.runUpdateSegments(),this.streamHasEnded?null:this.refreshInterval}},ds=class extends ei{constructor(e){super(e),this.metadataPromise=null,this.trackBackings=null,this.internalTracks=null,this.segmentedInputs=[],this.hasMasterPlaylist=!0}readMetadata(){return this.metadataPromise??=(async()=>{r(this.input._rootSource instanceof Vo);let e=await this.input._reader.requestEntireFile();r(e);let t=wu(e,e.length,{ignore:ko}),{rootPath:n}=this.input._rootSource,i=[],a=[];for(let e=1;e<t.length;e++){let r=t[e];if(r.startsWith(`#EXT-X-STREAM-INF:`)){let a=e,o=t[++e];if(o===void 0)throw Error(`Incorrect M3U8 file; a line must follow the #EXT-X-STREAM-INF tag.`);let s=$e(n,o),c=new Ao(r.slice(yo.length));if(c.getAsNumber(`bandwidth`)===null)throw Error(`Invalid M3U8 file; #EXT-X-STREAM-INF tag requires a BANDWIDTH attribute with a valid numerical value.`);i.push({fullPath:s,attributes:c,lineNumber:a,hasOnlyKeyPackets:!1})}else if(r.startsWith(`#EXT-X-I-FRAME-STREAM-INF:`)){let t=new Ao(r.slice(bo.length)),a=t.get(`uri`);if(a===null)throw Error(`Invalid M3U8 file; #EXT-X-I-FRAME-STREAM-INF tag requires a URI attribute.`);if(t.getAsNumber(`bandwidth`)===null)throw Error(`Invalid M3U8 file; #EXT-X-I-FRAME-STREAM-INF tag requires a BANDWIDTH attribute with a valid numerical value.`);let o=$e(n,a);i.push({fullPath:o,attributes:t,lineNumber:e,hasOnlyKeyPackets:!0})}else if(r.startsWith(`#EXT-X-MEDIA:`)){let t=new Ao(r.slice(xo.length));if(t.get(`type`)===null)throw Error(`Invalid M3U8 file; #EXT-X-MEDIA tag requires a TYPE attribute.`);if(t.get(`group-id`)===null)throw Error(`Invalid M3U8 file; #EXT-X-MEDIA tag requires a GROUP-ID attribute.`);let i=null,o=t.get(`uri`);o!==null&&(i=$e(n,o)),a.push({fullPath:i,attributes:t,lineNumber:e})}else if(r!==`#EXT-X-I-FRAMES-ONLY`&&r.startsWith(`#EXTINF:`)){let e=new us(this,n,null,t);this.segmentedInputs=[e],this.hasMasterPlaylist=!1,this.trackBackings=await e.getTrackBackings();return}}let o=[...new Set(a.filter(e=>e.attributes.get(`type`).toLowerCase()===`video`).map(e=>e.attributes.get(`group-id`)))],s=[...new Set(a.filter(e=>e.attributes.get(`type`).toLowerCase()===`audio`).map(e=>e.attributes.get(`group-id`)))],c=await Promise.all(i.map(async(e,t)=>{let i=[],c=e.attributes.get(`codecs`),l;if(c)l=c.split(`,`).map(e=>e.trim());else{let t=await this.getSegmentedInputForPath(e.fullPath).getTrackBackings(),n=await Promise.all(t.map(async e=>({track:e,codec:await e.getCodec()})));l=await Promise.all(n.filter(e=>e.codec!==null).map(e=>e.track.getDecoderConfig().then(e=>e.codec)))}let u=e.attributes.get(`video`),d=e.attributes.get(`audio`),f=l.some(e=>N.includes(jr(e))),p=l.some(e=>F.includes(jr(e)));if(u!==null&&!f){if(!o.includes(u))throw Error(`Invalid M3U8 file; variant stream references video group "${u}" which is not defined in any #EXT-X-MEDIA tags.`);let e=a.find(e=>{let t=e.attributes.get(`group-id`),n=e.attributes.get(`type`);return t===u&&n.toLowerCase()===`video`});outer:if(e){let t=e.attributes.get(`uri`);if(t===null)break outer;let i=$e(n,t),a=(await this.getSegmentedInputForPath(i).getTrackBackings()).find(e=>e.getType()===`video`);if(!a||await a.getCodec()===null)break outer;let o=await a.getDecoderConfig().then(e=>e?.codec??null);r(o!==null),l.push(o)}}if(d!==null&&!p){if(!s.includes(d))throw Error(`Invalid M3U8 file; variant stream references audio group "${d}" which is not defined in any #EXT-X-MEDIA tags.`);let e=a.find(e=>{let t=e.attributes.get(`group-id`),n=e.attributes.get(`type`);return t===d&&n.toLowerCase()===`audio`});outer:if(e){let t=e.attributes.get(`uri`);if(t===null)break outer;let i=$e(n,t),a=(await this.getSegmentedInputForPath(i).getTrackBackings()).find(e=>e.getType()===`audio`);if(!a||await a.getCodec()===null)break outer;let o=await a.getDecoderConfig().then(e=>e?.codec??null);r(o!==null),l.push(o)}}l=[...new Set(l)];let m=null,h=null,g=e.attributes.getAsNumber(`bandwidth`);r(g!==null);let _=e.attributes.getAsNumber(`average-bandwidth`),v=e.attributes.get(`name`);for(let n of l){let r=jr(n);if(r!==null){if(N.includes(r)){if(m!==null)throw Error(`Unsupported M3U8 file; multiple video codecs found in the CODECS attribute of a variant stream.`);m=n;let r=e.attributes.get(`video`);if(r===null){let n=e.attributes.get(`resolution`),r=null,a=null;if(n){let e=n.match(/^(\d+)x(\d+)$/);e&&(r=Number(e[1]),a=Number(e[2]))}i.push({id:-1,demuxer:this,backingTrack:null,default:!0,autoselect:!0,languageCode:`und`,lineNumber:e.lineNumber,fullPath:e.fullPath,fullCodecString:m,pairingMask:1n<<BigInt(t),peakBitrate:g,averageBitrate:_,name:v,hasOnlyKeyPackets:e.hasOnlyKeyPackets,info:{type:`video`,width:r,height:a}})}else{if(!o.includes(r))throw Error(`Invalid M3U8 file; variant stream references video group "${r}" which is not defined in any #EXT-X-MEDIA tags.`);for(let n of a){let a=n.attributes.get(`group-id`),o=n.attributes.get(`type`);if(a!==r||o.toLowerCase()!==`video`)continue;let s=n.attributes.get(`resolution`)??e.attributes.get(`resolution`),c=null,l=null;if(s){let e=s.match(/^(\d+)x(\d+)$/);e&&(c=Number(e[1]),l=Number(e[2]))}i.push({id:-1,demuxer:this,backingTrack:null,default:hs(n.attributes),autoselect:hs(n.attributes)||gs(n.attributes),languageCode:_s(n.attributes.get(`language`)),lineNumber:n.lineNumber,fullPath:n.fullPath??e.fullPath,fullCodecString:m,pairingMask:1n<<BigInt(t),peakBitrate:null,averageBitrate:null,name:n.attributes.get(`name`),hasOnlyKeyPackets:e.hasOnlyKeyPackets,info:{type:`video`,width:c,height:l}})}}}else if(F.includes(r)){if(h!==null)throw Error(`Unsupported M3U8 file; multiple audio codecs found in the CODECS attribute of a variant stream.`);h=n;let r=e.attributes.get(`audio`);if(r===null){let n=e.attributes.get(`channels`),r=n===null?null:Number(n.split(`/`)[0]);i.push({id:-1,demuxer:this,backingTrack:null,default:!0,autoselect:!0,languageCode:`und`,lineNumber:e.lineNumber,fullPath:e.fullPath,fullCodecString:h,pairingMask:1n<<BigInt(t),peakBitrate:g,averageBitrate:_,name:v,hasOnlyKeyPackets:e.hasOnlyKeyPackets,info:{type:`audio`,numberOfChannels:r!==null&&Number.isInteger(r)&&r>0?r:null}})}else{if(!s.includes(r))throw Error(`Invalid M3U8 file; variant stream references audio group "${r}" which is not defined in any #EXT-X-MEDIA tags.`);for(let n of a){let a=n.attributes.get(`group-id`),o=n.attributes.get(`type`);if(a!==r||o.toLowerCase()!==`audio`)continue;let s=n.attributes.get(`channels`)??e.attributes.get(`channels`),c=s===null?null:Number(s.split(`/`)[0]);i.push({id:-1,demuxer:this,backingTrack:null,default:hs(n.attributes),autoselect:hs(n.attributes)||gs(n.attributes),languageCode:_s(n.attributes.get(`language`)),lineNumber:n.lineNumber,fullPath:n.fullPath??e.fullPath,fullCodecString:h,pairingMask:1n<<BigInt(t),peakBitrate:null,averageBitrate:null,name:n.attributes.get(`name`),hasOnlyKeyPackets:e.hasOnlyKeyPackets,info:{type:`audio`,numberOfChannels:c!==null&&Number.isInteger(c)&&c>0?c:null}})}}}}}return i})),l=[],u=e=>{let t=l.find(t=>t.fullPath===e.fullPath&&t.info.type===e.info.type);t?(t.pairingMask|=e.pairingMask,t.default||=e.default,t.autoselect||=e.autoselect,t.lineNumber=Math.min(t.lineNumber,e.lineNumber),e.peakBitrate!==null&&(t.peakBitrate=Math.max(t.peakBitrate??-1/0,e.peakBitrate)),e.averageBitrate!==null&&(t.averageBitrate=Math.max(t.averageBitrate??-1/0,e.averageBitrate)),t.languageCode===`und`&&(t.languageCode=e.languageCode)):(e.id=l.length+1,l.push(e))};for(let e of c)for(let t of e)u(t);l.sort((e,t)=>e.lineNumber-t.lineNumber),this.trackBackings=[];for(let e of l)e.info.type===`video`?this.trackBackings.push(new ps(e)):this.trackBackings.push(new ms(e));this.internalTracks=l})()}async getTrackBackings(){return await this.readMetadata(),r(this.trackBackings),this.trackBackings}getSegmentedInputForPath(e){let t=this.segmentedInputs.find(t=>t.path===e);if(t)return t;let n=null;return this.internalTracks&&(n=this.internalTracks.filter(t=>t.fullPath===e).map(e=>({id:e.id,type:e.info.type}))),t=new us(this,e,n,null),this.segmentedInputs.push(t),t}async getMetadataTags(){return{}}async getMimeType(){return vo}dispose(){if(this.segmentedInputs){for(let e of this.segmentedInputs)e.dispose();this.segmentedInputs.length=0}}},fs=class{constructor(e){this.internalTrack=e,this.hydrationPromise=null}hydrate(){return this.hydrationPromise??=(async()=>{let e=this.internalTrack.demuxer.getSegmentedInputForPath(this.internalTrack.fullPath),t=null,n=(await e.getTrackBackings()).filter(e=>e.getType()===this.getType());if(n.length===1)t=n[0];else if(this instanceof ps){for(let e of n)if(await e.getCodec()===this.getCodec()){t=e;break}}else{r(this instanceof ms);for(let e of n)if(await e.getCodec()===this.getCodec()){t=e;break}}if(!t)throw Error(`Could not find matching track in underlying media data.`);this.internalTrack.backingTrack=t})()}delegate(e){return this.internalTrack.backingTrack?e():this.hydrate().then(e)}getCodec(){throw Error(`Not implemented on base class.`)}getDisposition(){return{...Tt,default:this.internalTrack.autoselect,primary:this.internalTrack.default}}getId(){return this.internalTrack.id}getPairingMask(){return this.internalTrack.pairingMask}getInternalCodecId(){return null}getLanguageCode(){return this.internalTrack.languageCode}getName(){return this.internalTrack.name}getNumber(){r(this.internalTrack.demuxer.internalTracks);let e=this.internalTrack.info.type,t=0;for(let n of this.internalTrack.demuxer.internalTracks)if(n.info.type===e&&t++,n===this.internalTrack)break;return t}getTimeResolution(){return this.delegate(()=>this.internalTrack.backingTrack.getTimeResolution())}isRelativeToUnixEpoch(){return this.delegate(()=>this.internalTrack.backingTrack.isRelativeToUnixEpoch())}getUnixTimeForTimestamp(e){return this.delegate(()=>this.internalTrack.backingTrack.getUnixTimeForTimestamp(e))}getBitrate(){return this.internalTrack.peakBitrate}getAverageBitrate(){return this.internalTrack.averageBitrate}async getDurationFromMetadata(e){return await this.hydrate(),this.internalTrack.backingTrack.getDurationFromMetadata(e)}async getLiveRefreshInterval(){return await this.hydrate(),this.internalTrack.backingTrack.getLiveRefreshInterval()}getHasOnlyKeyPackets(){return this.internalTrack.hasOnlyKeyPackets||null}async getFirstPacket(e){return await this.hydrate(),this.internalTrack.backingTrack.getFirstPacket(e)}async getPacket(e,t){return await this.hydrate(),this.internalTrack.backingTrack.getPacket(e,t)}async getKeyPacket(e,t){return await this.hydrate(),this.internalTrack.backingTrack.getKeyPacket(e,t)}async getNextPacket(e,t){return await this.hydrate(),this.internalTrack.backingTrack.getNextPacket(e,t)}async getNextKeyPacket(e,t){return await this.hydrate(),this.internalTrack.backingTrack.getNextKeyPacket(e,t)}},ps=class extends fs{constructor(e){super(e)}get backingVideoTrack(){return this.internalTrack.backingTrack}getType(){return`video`}getCodec(){return jr(this.internalTrack.fullCodecString)}getCodedWidth(){return this.delegate(()=>this.backingVideoTrack.getCodedWidth())}getCodedHeight(){return this.delegate(()=>this.backingVideoTrack.getCodedHeight())}getSquarePixelWidth(){return this.delegate(()=>this.backingVideoTrack.getSquarePixelWidth())}getSquarePixelHeight(){return this.delegate(()=>this.backingVideoTrack.getSquarePixelHeight())}getMetadataDisplayWidth(){return this.backingVideoTrack?null:this.internalTrack.info.width}getMetadataDisplayHeight(){return this.backingVideoTrack?null:this.internalTrack.info.height}getRotation(){return this.delegate(()=>this.backingVideoTrack.getRotation())}async getColorSpace(){return await this.hydrate(),this.backingVideoTrack.getColorSpace()}async canBeTransparent(){return await this.hydrate(),this.backingVideoTrack.canBeTransparent()}getMetadataCodecParameterString(){return this.backingVideoTrack?null:this.internalTrack.fullCodecString}async getDecoderConfig(){return await this.hydrate(),this.backingVideoTrack.getDecoderConfig()}},ms=class extends fs{constructor(e){super(e)}get backingAudioTrack(){return this.internalTrack.backingTrack}getType(){return`audio`}getCodec(){return jr(this.internalTrack.fullCodecString)}getNumberOfChannels(){return this.internalTrack.info.numberOfChannels===null?this.delegate(()=>this.backingAudioTrack.getNumberOfChannels()):this.internalTrack.info.numberOfChannels}getSampleRate(){return this.delegate(()=>this.backingAudioTrack.getSampleRate())}getMetadataCodecParameterString(){return this.backingAudioTrack?null:this.internalTrack.fullCodecString}async getDecoderConfig(){return await this.hydrate(),this.backingAudioTrack.getDecoderConfig()}},hs=e=>{let t=e.get(`default`);if(t===null)return!1;let n=t.toUpperCase();if(n===`YES`)return!0;if(n===`NO`)return!1;throw Error(`Invalid M3U8 file; #EXT-X-MEDIA DEFAULT attribute must be YES or NO, got "${t}".`)},gs=e=>{let t=e.get(`autoselect`);if(t===null)return!1;let n=t.toUpperCase();if(n===`YES`)return!0;if(n===`NO`)return!1;throw Error(`Invalid M3U8 file; #EXT-X-MEDIA AUTOSELECT attribute must be YES or NO, got "${t}".`)},_s=e=>e===null?`und`:e.split(`-`)[0]||`und`,vs=class{constructor(){this._isIsobmff=!1}},ys=class extends vs{constructor(){super(...arguments),this._isIsobmff=!0}async _getMajorBrand(e){let t=e._reader.requestSlice(0,12);if(O(t)&&(t=await t),!t)return null;t.skip(4);let n=G(t,4);return n!==`ftyp`&&n!==`styp`?null:G(t,4)}_createDemuxer(e){return new Si(e)}},bs=class extends ys{async _canReadInput(e){let t=await this._getMajorBrand(e);if(t!==null)return t!==`qt `;let n=0;for(let t=0;t<10;t++){let t=e._reader.requestSlice(n,8);if(O(t)&&(t=await t),!t)return!1;let r=W(t),i=8;if(r===1){let t=e._reader.requestSlice(n+8,8);if(O(t)&&(t=await t),!t)return!1;r=yu(t),i=16}if(r<i)return!1;let a=G(t,4);if(a===`moof`||a===`sidx`)return!0;if(a===`emsg`||a===`prft`||a===`free`)n+=r;else return!1}return!1}get name(){return`MP4`}get mimeType(){return`video/mp4`}},xs=class extends ys{async _canReadInput(e){return await this._getMajorBrand(e)===`qt `}get name(){return`QuickTime File Format`}get mimeType(){return`video/quicktime`}},Ss=class extends vs{async isSupportedEBMLOfDocType(e,t){let n=e._reader.requestSlice(0,16);if(O(n)&&(n=await n),!n)return!1;let r=Qi(n);if(r===null||r<1||r>8||R(n,r)!==L.EBML)return!1;let i=na(n);if(typeof i!=`number`)return!1;let a=e._reader.requestSlice(n.filePos,i);if(O(a)&&(a=await a),!a)return!1;let o=n.filePos;for(;a.filePos<=o+i-2;){let e=ra(a);if(!e)break;let{id:n,size:r}=e,i=a.filePos;if(r===void 0)return!1;switch(n){case L.EBMLVersion:if(R(a,r)!==1)return!1;break;case L.EBMLReadVersion:if(R(a,r)!==1)return!1;break;case L.DocType:if(ia(a,r)!==t)return!1;break;case L.DocTypeVersion:if(R(a,r)>4)return!1}a.filePos=i+r}return!0}_canReadInput(e){return this.isSupportedEBMLOfDocType(e,`matroska`)}_createDemuxer(e){return new _a(e)}get name(){return`Matroska`}get mimeType(){return`video/x-matroska`}},Cs=class extends Ss{_canReadInput(e){return this.isSupportedEBMLOfDocType(e,`webm`)}get name(){return`WebM`}get mimeType(){return`video/webm`}},ws=class extends vs{async _canReadInput(e){let t=0;for(;;){let n=e._reader.requestSlice(t,10);if(O(n)&&(n=await n),!n)break;let r=Au(n);if(!r)break;t=n.filePos+r.size}let n=await xa(e._reader,t,t+4096);if(!n)return!1;let r=n.header,i=Jr(r.mpegVersionId,r.channel),a=e._reader.requestSlice(n.startPos+i,4);if(O(a)&&(a=await a),!a)return!1;let o=W(a);if(o===1483304551||o===1231971951)return!0;t=n.startPos+n.header.totalSize;let s=await xa(e._reader,t,t+4);if(!s)return!1;let c=s.header;return r.channel===c.channel&&r.sampleRate===c.sampleRate}_createDemuxer(e){return new Sa(e)}get name(){return`MP3`}get mimeType(){return`audio/mpeg`}},Ts=class extends vs{async _canReadInput(e){let t=e._reader.requestSlice(0,12);if(O(t)&&(t=await t),!t)return!1;let n=G(t,4);return n!==`RIFF`&&n!==`RIFX`&&n!==`RF64`?!1:(t.skip(4),G(t,4)===`WAVE`)}_createDemuxer(e){return new Ra(e)}get name(){return`WAVE`}get mimeType(){return`audio/wav`}},Es=class extends vs{async _canReadInput(e){let t=e._reader.requestSlice(0,4);return O(t)&&(t=await t),t?G(t,4)===`OggS`:!1}_createDemuxer(e){return new Na(e)}get name(){return`Ogg`}get mimeType(){return`application/ogg`}},Ds=class extends vs{async _canReadInput(e){let t=0;for(;;){let n=e._reader.requestSlice(t,10);if(O(n)&&(n=await n),!n)break;let r=Au(n);if(!r)break;t=n.filePos+r.size}let n=e._reader.requestSlice(t,4);return O(n)&&(n=await n),n?G(n,4)===`fLaC`:!1}get name(){return`FLAC`}get mimeType(){return`audio/flac`}_createDemuxer(e){return new Za(e)}},Os=class extends vs{async _canReadInput(e){let t=0;for(;;){let n=e._reader.requestSlice(t,10);if(O(n)&&(n=await n),!n)break;let r=Au(n);if(!r)break;t=n.filePos+r.size}let n=e._reader.requestSliceRange(t,7,9);if(O(n)&&(n=await n),!n)return!1;let r=Va(n);if(!r||(t+=r.frameLength,n=e._reader.requestSliceRange(t,7,9),O(n)&&(n=await n),!n))return!1;let i=Va(n);return i?r.objectType===i.objectType&&r.samplingFrequencyIndex===i.samplingFrequencyIndex&&r.channelConfiguration===i.channelConfiguration:!1}_createDemuxer(e){return new Ua(e)}get name(){return`ADTS`}get mimeType(){return`audio/aac`}},ks=class extends vs{async _canReadInput(e){let t=e._reader.requestSlice(0,205);if(O(t)&&(t=await t),!t)return!1;let n=V(t,205);return n[0]===71&&n[188]===71||n[0]===71&&n[204]===71||n[4]===71&&n[196]===71}_createDemuxer(e){return new co(e)}get name(){return`MPEG Transport Stream`}get mimeType(){return`video/MP2T`}},As=class extends vs{async _canReadInput(e){let t=e._reader.requestSlice(0,7);if(O(t)&&(t=await t),!t||G(t,7)!==`#EXTM3U`)return!1;if(!(e._rootSource instanceof Vo))throw TypeError("HLS inputs require `InputOptions.source` to be a PathedSource or a ref to one.");return e._rootSource._usedForHls=!0,!0}_createDemuxer(e){return new ds(e)}get name(){return`HTTP Live Streaming (HLS)`}get mimeType(){return vo}},js=new bs,Ms=new xs,Ns=new Ss,Ps=new Cs,Fs=new ws,Is=new Ts,Ls=new Es,Rs=new Os,zs=new Ds,Bs=new ks,Vs=new As,Hs=[Vs,js,Ms,Ns,Ps,Is,Ls,zs,Fs,Rs,Bs],Us=[Vs,js,Ms,Fs,Rs,Bs],Ws=(e,t)=>{if(!e||typeof e!=`object`)throw TypeError(`${t}, when provided, must be an object.`);if(e.isobmff!==void 0){if(!e.isobmff||typeof e.isobmff!=`object`)throw TypeError(`${t}.isobmff, when provided, must be an object.`);if(e.isobmff.resolveKeyId!==void 0&&typeof e.isobmff.resolveKeyId!=`function`)throw TypeError(`${t}.isobmff.resolveKeyId, when provided, must be a function.`)}if(e.hls!==void 0){if(!e.hls||typeof e.hls!=`object`)throw TypeError(`${t}.hls, when provided, must be an object.`);if(e.hls.offsetTimestampsByDateTime!==void 0&&typeof e.hls.offsetTimestampsByDateTime!=`boolean`)throw TypeError(`${t}.hls.offsetTimestampsByDateTime, when provided, must be a boolean.`)}},Gs=new Map,Ks=new Map,qs=(e,t)=>{if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(t.codec!==void 0&&typeof t.codec!=`string`)throw TypeError(`options.codec, when provided, must be a string.`);if(t.codec!==void 0&&jr(t.codec)!==e)throw TypeError(`options.codec, when provided, must match the specified codec (${e}).`);if(t.codedWidth!==void 0&&(!Number.isInteger(t.codedWidth)||t.codedWidth<=0))throw TypeError(`options.codedWidth, when provided, must be a positive integer.`);if(t.codedHeight!==void 0&&(!Number.isInteger(t.codedHeight)||t.codedHeight<=0))throw TypeError(`options.codedHeight, when provided, must be a positive integer.`);if(t.displayAspectWidth!==void 0&&(!Number.isInteger(t.displayAspectWidth)||t.displayAspectWidth<=0))throw TypeError(`options.displayAspectWidth, when provided, must be a positive integer.`);if(t.displayAspectHeight!==void 0&&(!Number.isInteger(t.displayAspectHeight)||t.displayAspectHeight<=0))throw TypeError(`options.displayAspectHeight, when provided, must be a positive integer.`);if(t.description!==void 0&&!te(t.description))throw TypeError(`options.description, when provided, must be a buffer source.`);if(t.hardwareAcceleration!==void 0&&![`no-preference`,`prefer-hardware`,`prefer-software`].includes(t.hardwareAcceleration))throw TypeError(`options.hardwareAcceleration, when provided, must be 'no-preference', 'prefer-hardware' or 'prefer-software'.`);if(t.optimizeForLatency!==void 0&&typeof t.optimizeForLatency!=`boolean`)throw TypeError(`options.optimizeForLatency, when provided, must be a boolean.`)},Js=(e,t)=>{if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(t.codec!==void 0&&typeof t.codec!=`string`)throw TypeError(`options.codec, when provided, must be a string.`);if(t.codec!==void 0&&jr(t.codec)!==e)throw TypeError(`options.codec, when provided, must match the specified codec (${e}).`);if(t.numberOfChannels!==void 0&&(!Number.isInteger(t.numberOfChannels)||t.numberOfChannels<=0))throw TypeError(`options.numberOfChannels, when provided, must be a positive integer.`);if(t.sampleRate!==void 0&&(!Number.isInteger(t.sampleRate)||t.sampleRate<=0))throw TypeError(`options.sampleRate, when provided, must be a positive integer.`);if(t.description!==void 0&&!te(t.description))throw TypeError(`options.description, when provided, must be a buffer source.`)},Ys=e=>N.includes(e)?Xs(e):F.includes(e)?Zs(e):!1,Xs=async(e,t={})=>{if(!N.includes(e))return!1;qs(e,t);let n={...t,codedWidth:t.codedWidth??1280,codedHeight:t.codedHeight??720,codec:t.codec??br(e,1280,720,1e6,!1)};n.description??=void 0;let r=JSON.stringify(n),i=Gs.get(r);if(i)return i;let a=(async()=>vl.some(t=>t.supports(e,n))?!0:typeof VideoDecoder>`u`?!1:(await VideoDecoder.isConfigSupported(n)).supported===!0)();return Gs.set(r,a),a},Zs=async(e,t={})=>{if(!F.includes(e))return!1;Js(e,t);let n={...t,numberOfChannels:t.numberOfChannels??2,sampleRate:t.sampleRate??48e3,codec:t.codec??Tr(e,2,48e3)};if(n.description===void 0){let e=Dr(n);if(e===!1)return!1;n.description=e}let r=JSON.stringify(n),i=Ks.get(r);if(i)return i;let a=(async()=>yl.some(t=>t.supports(e,n))||P.includes(e)?!0:typeof AudioDecoder>`u`?!1:(await AudioDecoder.isConfigSupported(n)).supported===!0)();return Ks.set(r,a),a},Qs=async()=>{let[e,t]=await Promise.all([$s(),ec()]);return[...e,...t]},$s=async(e=N,t)=>{let n=await Promise.all(e.map(e=>Xs(e,t)));return e.filter((e,t)=>n[t])},ec=async(e=F,t)=>{let n=await Promise.all(e.map(e=>Zs(e,t)));return e.filter((e,t)=>n[t])},tc=function(e,t,n){if(t!=null){if(typeof t!=`object`&&typeof t!=`function`)throw TypeError(`Object expected.`);var r,i;if(n){if(!Symbol.asyncDispose)throw TypeError(`Symbol.asyncDispose is not defined.`);r=t[Symbol.asyncDispose]}if(r===void 0){if(!Symbol.dispose)throw TypeError(`Symbol.dispose is not defined.`);r=t[Symbol.dispose],n&&(i=r)}if(typeof r!=`function`)throw TypeError(`Object not disposable.`);i&&(r=function(){try{i.call(this)}catch(e){return Promise.reject(e)}}),e.stack.push({value:t,dispose:r,async:n})}else n&&e.stack.push({async:!0});return t},nc=(function(e){return function(t){function n(n){t.error=t.hasError?new e(n,t.error,`An error was suppressed during disposal.`):n,t.hasError=!0}var r,i=0;function a(){for(;r=t.stack.pop();)try{if(!r.async&&i===1)return i=0,t.stack.push(r),Promise.resolve().then(a);if(r.dispose){var e=r.dispose.call(r.value);if(r.async)return i|=2,Promise.resolve(e).then(a,function(e){return n(e),a()})}else i|=1}catch(e){n(e)}if(i===1)return t.hasError?Promise.reject(t.error):Promise.resolve();if(t.hasError)throw t.error}return a()}})(typeof SuppressedError==`function`?SuppressedError:function(e,t,n){var r=Error(n);return r.name=`SuppressedError`,r.error=e,r.suppressed=t,r});Ze();var rc=-1/0,ic=-1/0,ac=null;typeof FinalizationRegistry<`u`&&(ac=new FinalizationRegistry(e=>{let t=performance.now();e.type===`video`?(t-rc>=1e3&&(k._error(`A VideoSample was garbage collected without first being closed. For proper resource management, make sure to call close() on all your VideoSamples as soon as you're done using them.`),rc=t),typeof VideoFrame<`u`&&e.data instanceof VideoFrame&&e.data.close()):(t-ic>=1e3&&(k._error(`An AudioSample was garbage collected without first being closed. For proper resource management, make sure to call close() on all your AudioSamples as soon as you're done using them.`),ic=t),typeof AudioData<`u`&&e.data instanceof AudioData&&e.data.close())}));var oc=class{constructor(){this._referenceCount=0,this._lastAllocationBuffer=null}},sc=[`I420`,`I420P10`,`I420P12`,`I420A`,`I420AP10`,`I420AP12`,`I422`,`I422P10`,`I422P12`,`I422A`,`I422AP10`,`I422AP12`,`I444`,`I444P10`,`I444P12`,`I444A`,`I444AP10`,`I444AP12`,`NV12`,`RGBA`,`RGBX`,`BGRA`,`BGRX`],cc=new Set(sc),lc=class e{get codedWidth(){return this.visibleRect.width}get codedHeight(){return this.visibleRect.height}get displayWidth(){return this.rotation%180==0?this.squarePixelWidth:this.squarePixelHeight}get displayHeight(){return this.rotation%180==0?this.squarePixelHeight:this.squarePixelWidth}get microsecondTimestamp(){return Math.trunc(Ae*this.timestamp)}get microsecondDuration(){return Math.trunc(Ae*this.duration)}get hasAlpha(){return this.format&&this.format.includes(`A`)}constructor(t,n){if(this._closed=!1,t instanceof ArrayBuffer||typeof SharedArrayBuffer<`u`&&t instanceof SharedArrayBuffer||ArrayBuffer.isView(t)){if(!n||typeof n!=`object`)throw TypeError(`init must be an object.`);if(n.format===void 0||!cc.has(n.format))throw TypeError(`init.format must be one of: `+sc.join(`, `));if(!Number.isInteger(n.codedWidth)||n.codedWidth<=0)throw TypeError(`init.codedWidth must be a positive integer.`);if(!Number.isInteger(n.codedHeight)||n.codedHeight<=0)throw TypeError(`init.codedHeight must be a positive integer.`);if(n.rotation!==void 0&&![0,90,180,270].includes(n.rotation))throw TypeError(`init.rotation, when provided, must be 0, 90, 180, or 270.`);if(!Number.isFinite(n.timestamp))throw TypeError(`init.timestamp must be a number.`);if(n.duration!==void 0&&(!Number.isFinite(n.duration)||n.duration<0))throw TypeError(`init.duration, when provided, must be a non-negative number.`);if(n.layout!==void 0){if(!Array.isArray(n.layout))throw TypeError(`init.layout, when provided, must be an array.`);for(let e of n.layout){if(!e||typeof e!=`object`||Array.isArray(e))throw TypeError(`Each entry in init.layout must be an object.`);if(!Number.isInteger(e.offset)||e.offset<0)throw TypeError(`plane.offset must be a non-negative integer.`);if(!Number.isInteger(e.stride)||e.stride<0)throw TypeError(`plane.stride must be a non-negative integer.`)}}if(n.visibleRect!==void 0&&it(n.visibleRect,`init.visibleRect`),n.displayWidth!==void 0&&(!Number.isInteger(n.displayWidth)||n.displayWidth<=0))throw TypeError(`init.displayWidth, when provided, must be a positive integer.`);if(n.displayHeight!==void 0&&(!Number.isInteger(n.displayHeight)||n.displayHeight<=0))throw TypeError(`init.displayHeight, when provided, must be a positive integer.`);if(n.displayWidth!==void 0!=(n.displayHeight!==void 0))throw TypeError(`init.displayWidth and init.displayHeight must be either both provided or both omitted.`);this.format=n.format,this.rotation=n.rotation??0,this.timestamp=n.timestamp,this.duration=n.duration??0;let e=n.layout??xc(n.format,n.codedWidth,n.codedHeight),r=n.colorSpace??null;r===null&&(r=this.format===`RGBA`||this.format===`RGBX`||this.format===`BGRA`||this.format===`BGRX`?{primaries:`bt709`,transfer:`iec61966-2-1`,matrix:`rgb`,fullRange:!0}:{primaries:`bt709`,transfer:`bt709`,matrix:`bt709`,fullRange:!1}),this.visibleRect={left:n.visibleRect?.left??0,top:n.visibleRect?.top??0,width:n.visibleRect?.width??n.codedWidth,height:n.visibleRect?.height??n.codedHeight},n.displayWidth===void 0?(this.squarePixelWidth=this.visibleRect.width,this.squarePixelHeight=this.visibleRect.height):(this.squarePixelWidth=this.rotation%180==0?n.displayWidth:n.displayHeight,this.squarePixelHeight=this.rotation%180==0?n.displayHeight:n.displayWidth),this._data=n._doNotCopy?u(t):u(t).slice(),this._layout=e,this.colorSpace=new gc(r)}else if(typeof VideoFrame<`u`&&t instanceof VideoFrame){if(n?.rotation!==void 0&&![0,90,180,270].includes(n.rotation))throw TypeError(`init.rotation, when provided, must be 0, 90, 180, or 270.`);if(n?.timestamp!==void 0&&!Number.isFinite(n?.timestamp))throw TypeError(`init.timestamp, when provided, must be a number.`);if(n?.duration!==void 0&&(!Number.isFinite(n.duration)||n.duration<0))throw TypeError(`init.duration, when provided, must be a non-negative number.`);n?.visibleRect!==void 0&&it(n.visibleRect,`init.visibleRect`),this._data=t,this._layout=null,this.format=t.format,this.visibleRect={left:t.visibleRect?.x??0,top:t.visibleRect?.y??0,width:t.visibleRect?.width??t.codedWidth,height:t.visibleRect?.height??t.codedHeight},this.rotation=n?.rotation??0,this.squarePixelWidth=t.displayWidth,this.squarePixelHeight=t.displayHeight,this.timestamp=n?.timestamp??t.timestamp/1e6,this.duration=n?.duration??(t.duration??0)/1e6,this.colorSpace=new gc(t.colorSpace)}else if(typeof HTMLImageElement<`u`&&t instanceof HTMLImageElement||typeof SVGImageElement<`u`&&t instanceof SVGImageElement||typeof ImageBitmap<`u`&&t instanceof ImageBitmap||typeof HTMLVideoElement<`u`&&t instanceof HTMLVideoElement||typeof HTMLCanvasElement<`u`&&t instanceof HTMLCanvasElement||typeof OffscreenCanvas<`u`&&t instanceof OffscreenCanvas){if(!n||typeof n!=`object`)throw TypeError(`init must be an object.`);if(n.rotation!==void 0&&![0,90,180,270].includes(n.rotation))throw TypeError(`init.rotation, when provided, must be 0, 90, 180, or 270.`);if(!Number.isFinite(n.timestamp))throw TypeError(`init.timestamp must be a number.`);if(n.duration!==void 0&&(!Number.isFinite(n.duration)||n.duration<0))throw TypeError(`init.duration, when provided, must be a non-negative number.`);if(n.visibleRect!==void 0&&it(n.visibleRect,`init.visibleRect`),typeof VideoFrame<`u`)return new e(new VideoFrame(t,{timestamp:Math.trunc(n.timestamp*Ae),duration:Math.trunc((n.duration??0)*Ae)||void 0,visibleRect:n.visibleRect&&{x:n.visibleRect.left,y:n.visibleRect.top,width:n.visibleRect.width,height:n.visibleRect.height}}),n);let r=0,i=0;if(`naturalWidth`in t?(r=t.naturalWidth,i=t.naturalHeight):`videoWidth`in t?(r=t.videoWidth,i=t.videoHeight):`width`in t&&(r=Number(t.width),i=Number(t.height)),!r||!i)throw TypeError(`Could not determine dimensions.`);let a=n.visibleRect??{left:0,top:0,width:r,height:i},o=new OffscreenCanvas(a.width,a.height),s=o.getContext(`2d`,{alpha:ze(),willReadFrequently:!0});if(!s)throw Error(`OffscreenCanvas must have support for the '2d' context in order to create a VideoSample from this data.`);s.drawImage(t,-a.left,-a.top),this._data=o,this._layout=null,this.format=`RGBX`,this.visibleRect={left:0,top:0,width:a.width,height:a.height},this.squarePixelWidth=a.width,this.squarePixelHeight=a.height,this.rotation=n.rotation??0,this.timestamp=n.timestamp,this.duration=n.duration??0,this.colorSpace=new gc({matrix:`rgb`,primaries:`bt709`,transfer:`iec61966-2-1`,fullRange:!0})}else if(t instanceof oc){if(!n||typeof n!=`object`)throw TypeError(`init must be an object.`);if(n.rotation!==void 0&&![0,90,180,270].includes(n.rotation))throw TypeError(`init.rotation, when provided, must be 0, 90, 180, or 270.`);if(!Number.isFinite(n.timestamp))throw TypeError(`init.timestamp must be a number.`);if(n.duration!==void 0&&(!Number.isFinite(n.duration)||n.duration<0))throw TypeError(`init.duration, when provided, must be a non-negative number.`);if(this._data=t,t._referenceCount++,this.format=t.getFormat(),this.format!==null&&!sc.includes(this.format))throw TypeError(`getFormat() must return a VideoSamplePixelFormat or null.`);if(this.visibleRect={left:0,top:0,width:t.getCodedWidth(),height:t.getCodedHeight()},!Number.isInteger(this.visibleRect.width)||this.visibleRect.width<=0)throw TypeError(`getCodedWidth() must return a positive integer.`);if(!Number.isInteger(this.visibleRect.height)||this.visibleRect.height<=0)throw TypeError(`getCodedHeight() must return a positive integer.`);if(this.squarePixelWidth=t.getSquarePixelWidth(),!Number.isInteger(this.squarePixelWidth)||this.squarePixelWidth<=0)throw TypeError(`getSquarePixelWidth() must return a positive integer.`);if(this.squarePixelHeight=t.getSquarePixelHeight(),!Number.isInteger(this.squarePixelHeight)||this.squarePixelHeight<=0)throw TypeError(`getSquarePixelHeight() must return a positive integer.`);this.rotation=n.rotation??0,this.timestamp=n.timestamp,this.duration=n.duration??0,this.colorSpace=t.getColorSpace()}else throw TypeError(`Invalid data type: Must be a BufferSource, CanvasImageSource, or VideoSampleResource.`);this.encodeOptions=n?.encodeOptions??{},this.pixelAspectRatio=rt({num:this.squarePixelWidth*this.codedHeight,den:this.squarePixelHeight*this.codedWidth}),ac?.register(this,{type:`video`,data:this._data},this)}clone(){if(this._closed)throw Error(`VideoSample is closed.`);return r(this._data!==null),this._data instanceof oc?new e(this._data,{timestamp:this.timestamp,duration:this.duration,rotation:this.rotation,encodeOptions:this.encodeOptions}):_c(this._data)?new e(this._data.clone(),{timestamp:this.timestamp,duration:this.duration,rotation:this.rotation,encodeOptions:this.encodeOptions}):this._data instanceof Uint8Array?(r(this._layout),new e(this._data,{format:this.format,layout:this._layout,codedWidth:this.codedWidth,codedHeight:this.codedHeight,timestamp:this.timestamp,duration:this.duration,colorSpace:this.colorSpace,rotation:this.rotation,visibleRect:this.visibleRect,displayWidth:this.displayWidth,displayHeight:this.displayHeight,encodeOptions:this.encodeOptions,_doNotCopy:!0})):new e(this._data,{format:this.format,codedWidth:this.codedWidth,codedHeight:this.codedHeight,timestamp:this.timestamp,duration:this.duration,colorSpace:this.colorSpace,rotation:this.rotation,visibleRect:this.visibleRect,displayWidth:this.displayWidth,displayHeight:this.displayHeight,encodeOptions:this.encodeOptions})}close(){this._closed||=(ac?.unregister(this),this._data instanceof oc?(this._data._referenceCount--,this._data._referenceCount===0&&this._data.close()):_c(this._data)?this._data.close():this._data=null,!0)}allocationSize(e={}){if(bc(e),this._closed)throw Error(`VideoSample is closed.`);if((e.format??this.format)==null)throw Error(`Cannot get allocation size when format is null.`);return _c(this._data)?this._data.allocationSize(e):Cc(this,e).allocationSize}async copyTo(t,n={}){if(!te(t))throw TypeError(`destination must be an ArrayBuffer or an ArrayBuffer view.`);if(bc(n),this._closed)throw Error(`VideoSample is closed.`);if((n.format??this.format)==null)throw Error(`Cannot copy video sample data when format is null.`);if(r(this._data!==null),_c(this._data))return this._data.copyTo(t,n);if(n.format&&![`RGBA`,`RGBX`,`BGRA`,`BGRX`].includes(this.format)&&[`RGBA`,`RGBX`,`BGRA`,`BGRX`].includes(n.format)){if(this._data instanceof oc){let r={stack:[],error:void 0,hasError:!1};try{let i=tc(r,await this._data.toRgbSample({timestamp:this.timestamp,duration:this.duration,rotation:this.rotation},n.colorSpace??`srgb`),!1);if(!(i instanceof e))throw TypeError(`toRgbSample() must return a VideoSample.`);if(![`RGBA`,`RGBX`,`BGRA`,`BGRX`].includes(i.format))throw Error(`Sample returned by toRgbSample was expected to have an RGB format, got '${i.format}' instead.`);return await i.copyTo(t,n)}catch(e){r.error=e,r.hasError=!0}finally{nc(r)}}else{if(typeof VideoFrame>`u`)throw Error(`For this sample, converting from a non-RGB to an RGB format requires VideoFrame to be defined.`);let e=this.toVideoFrame(),r=await e.copyTo(t,n);return e.close(),r}}let i=Cc(this,n);r(this.format);let a=u(t);if(a.byteLength<i.allocationSize)throw TypeError(`Destination buffer too small. Required: ${i.allocationSize}, Available: ${a.byteLength}`);let o=Sc(this.format),s;if(this._data instanceof oc){let e=this._data.getDataPlanes();if(O(e)&&(e=await e),!Array.isArray(e)||e.some(e=>!(e.data instanceof Uint8Array)||!Number.isInteger(e.stride)||e.stride<0))throw TypeError(`getDataPlanes() must return an array of objects with a Uint8Array "data" property and a non-negative integer "stride" property.`);s=e}else if(this._data instanceof Uint8Array)r(this._layout),r(this._layout.length===o.length),s=this._layout.map((e,t)=>{let n=Math.ceil(this.codedHeight/o[t].heightDivisor);return{data:this._data.subarray(e.offset,e.offset+e.stride*n),stride:e.stride}});else{let e=this._data.getContext(`2d`);r(e),s=[{data:u(e.getImageData(0,0,this.codedWidth,this.codedHeight).data),stride:4*this.codedWidth}]}let c=[],l=o.length;for(let e=0;e<l;e++){let t=i.computedLayouts[e],n=s[e].stride,r=s[e].data,o=t.sourceTop*n;o+=t.sourceLeftBytes;let l=t.destinationOffset,u=t.sourceWidthBytes,d={offset:l,stride:t.destinationStride};for(let e=0;e<t.sourceHeight;e++){if(o+u>r.byteLength)throw Error(`Source buffer OOB read.`);if(l+u>a.byteLength)throw Error(`Destination buffer OOB write.`);let e=r.subarray(o,o+u);a.set(e,l),o+=n,l+=t.destinationStride}c.push(d)}if(n.format!==void 0){let e=this.format.startsWith(`RGB`)!==n.format.startsWith(`RGB`),t=this.format.includes(`X`)&&n.format.includes(`A`);if(e||t)for(let n=0;n<i.allocationSize;n+=4){if(e){let e=a[n],t=a[n+2];a[n]=t,a[n+2]=e}t&&(a[n+3]=255)}}return c}toVideoFrame(){if(this._closed)throw Error(`VideoSample is closed.`);if(r(this._data!==null),this._data instanceof oc){if(this.format===null)throw Error(`Cannot convert a VideoSampleResource-backed VideoSample to VideoFrame if format is null.`);let e=this._data.getDataPlanes();if(O(e))throw Error(`Cannot convert a VideoSampleResource-backed VideoSample to VideoFrame if getDataPlanes() returns a promise.`);let t=e.reduce((e,t)=>e+t.data.byteLength,0),n=new Uint8Array(t),r=0,i=[];for(let t of e)n.set(t.data,r),i.push(r),r+=t.data.byteLength;return new VideoFrame(n,{format:this.format,layout:e.map((e,t)=>({offset:i[t],stride:e.stride})),codedWidth:this.codedWidth,codedHeight:this.codedHeight,timestamp:this.microsecondTimestamp,duration:this.microsecondDuration,colorSpace:this.colorSpace,visibleRect:this.visibleRect,displayWidth:this.squarePixelWidth,displayHeight:this.squarePixelHeight})}return _c(this._data)?new VideoFrame(this._data,{timestamp:this.microsecondTimestamp,duration:this.microsecondDuration||void 0}):this._data instanceof Uint8Array?(r(this._layout),new VideoFrame(this._data,{format:this.format,codedWidth:this.codedWidth,codedHeight:this.codedHeight,layout:this._layout,timestamp:this.microsecondTimestamp,duration:this.microsecondDuration||void 0,colorSpace:this.colorSpace,visibleRect:this.visibleRect,displayWidth:this.squarePixelWidth,displayHeight:this.squarePixelHeight})):new VideoFrame(this._data,{timestamp:this.microsecondTimestamp,duration:this.microsecondDuration||void 0})}draw(e,t,n,r,i,a,o,s,c){let l=0,u=0,d=this.displayWidth,f=this.displayHeight,p=0,m=0,h=this.displayWidth,g=this.displayHeight;if(a===void 0?(p=t,m=n,r!==void 0&&(h=r,g=i)):(l=t,u=n,d=r,f=i,p=a,m=o,s===void 0?(h=d,g=f):(h=s,g=c)),!(typeof CanvasRenderingContext2D<`u`&&e instanceof CanvasRenderingContext2D||typeof OffscreenCanvasRenderingContext2D<`u`&&e instanceof OffscreenCanvasRenderingContext2D))throw TypeError(`context must be a CanvasRenderingContext2D or OffscreenCanvasRenderingContext2D.`);if(!Number.isFinite(l))throw TypeError(`sx must be a number.`);if(!Number.isFinite(u))throw TypeError(`sy must be a number.`);if(!Number.isFinite(d)||d<0)throw TypeError(`sWidth must be a non-negative number.`);if(!Number.isFinite(f)||f<0)throw TypeError(`sHeight must be a non-negative number.`);if(!Number.isFinite(p))throw TypeError(`dx must be a number.`);if(!Number.isFinite(m))throw TypeError(`dy must be a number.`);if(!Number.isFinite(h)||h<0)throw TypeError(`dWidth must be a non-negative number.`);if(!Number.isFinite(g)||g<0)throw TypeError(`dHeight must be a non-negative number.`);if(this._closed)throw Error(`VideoSample is closed.`);({sx:l,sy:u,sWidth:d,sHeight:f}=this._rotateSourceRegion(l,u,d,f,this.rotation));let _=this.toCanvasImageSource();e.save();let v=p+h/2,y=m+g/2;e.translate(v,y),e.rotate(this.rotation*Math.PI/180);let b=this.rotation%180==0?1:h/g;e.scale(1/b,b),e.drawImage(_,l,u,d,f,-h/2,-g/2,h,g),e.restore()}drawWithFit(e,t){if(!(typeof CanvasRenderingContext2D<`u`&&e instanceof CanvasRenderingContext2D||typeof OffscreenCanvasRenderingContext2D<`u`&&e instanceof OffscreenCanvasRenderingContext2D))throw TypeError(`context must be a CanvasRenderingContext2D or OffscreenCanvasRenderingContext2D.`);if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(![`fill`,`contain`,`cover`].includes(t.fit))throw TypeError(`options.fit must be 'fill', 'contain', or 'cover'.`);if(t.rotation!==void 0&&![0,90,180,270].includes(t.rotation))throw TypeError(`options.rotation, when provided, must be 0, 90, 180, or 270.`);t.crop!==void 0&&yc(t.crop,`options.`);let n=e.canvas.width,r=e.canvas.height,i=t.rotation??this.rotation,[a,o]=i%180==0?[this.squarePixelWidth,this.squarePixelHeight]:[this.squarePixelHeight,this.squarePixelWidth],s=t.crop;s&&=vc(s,a,o);let c,l,u,d,{sx:f,sy:p,sWidth:m,sHeight:h}=this._rotateSourceRegion(t.crop?.left??0,t.crop?.top??0,t.crop?.width??a,t.crop?.height??o,i);if(t.fit===`fill`)c=0,l=0,u=n,d=r;else{let[e,i]=t.crop?[t.crop.width,t.crop.height]:[a,o],s=t.fit===`contain`?Math.min(n/e,r/i):Math.max(n/e,r/i);u=e*s,d=i*s,c=(n-u)/2,l=(r-d)/2}e.save();let g=i%180==0?1:u/d;e.translate(n/2,r/2),e.rotate(i*Math.PI/180),e.scale(1/g,g),e.translate(-n/2,-r/2),e.drawImage(this.toCanvasImageSource(),f,p,m,h,c,l,u,d),e.restore()}_rotateSourceRegion(e,t,n,r,i){return i===90?[e,t,n,r]=[t,this.squarePixelHeight-e-n,r,n]:i===180?[e,t]=[this.squarePixelWidth-e-n,this.squarePixelHeight-t-r]:i===270&&([e,t,n,r]=[this.squarePixelWidth-t-r,e,r,n]),{sx:e,sy:t,sWidth:n,sHeight:r}}_drawWithFitAndMipmapping(e,t,n){let r=e.width,i=e.height,[a,o]=n.rotation%180==0?[this.squarePixelWidth,this.squarePixelHeight]:[this.squarePixelHeight,this.squarePixelWidth],s=n.crop?n.crop.width:a,c=n.crop?n.crop.height:o,l=0;2*r<s&&2*i<c&&(l=Math.floor(Math.log2(Math.min(s/r,c/i))));let u=r*2**l,d=i*2**l,{canvas:f,context:p,isNew:m}=l>0?hc(u,d):{canvas:e,context:t,isNew:n.targetIsFresh};p.imageSmoothingQuality=`high`,n.fillBlack?(p.fillStyle=`black`,p.fillRect(0,0,u,d)):m||p.clearRect(0,0,u,d),this.drawWithFit(p,{fit:n.fit,rotation:n.rotation,crop:n.crop}),p.globalCompositeOperation=`copy`;for(let e=l;e>1;e--){let t=r*2**e,n=i*2**e;p.drawImage(f,0,0,t,n,0,0,t/2,n/2)}p.globalCompositeOperation=`source-over`,l>0&&(t.imageSmoothingQuality=`high`,t.globalCompositeOperation=`copy`,t.drawImage(f,0,0,2*r,2*i,0,0,r,i),t.globalCompositeOperation=`source-over`)}toCanvasImageSource(){if(this._closed)throw Error(`VideoSample is closed.`);if(r(this._data!==null),this._data instanceof oc||this._data instanceof Uint8Array){let e=this.toVideoFrame();return queueMicrotask(()=>e.close()),e}return this._data}async transform(t){if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(t.width!==void 0&&(!Number.isInteger(t.width)||t.width<=0))throw TypeError(`options.width, when provided, must be a positive integer.`);if(t.height!==void 0&&(!Number.isInteger(t.height)||t.height<=0))throw TypeError(`options.height, when provided, must be a positive integer.`);if(t.roundDimensionsTo!==void 0&&(!Number.isInteger(t.roundDimensionsTo)||t.roundDimensionsTo<=0))throw TypeError(`options.roundDimensionsTo, when provided, must be a positive integer.`);if(t.fit!==void 0&&![`fill`,`contain`,`cover`].includes(t.fit))throw TypeError(`options.fit, when provided, must be one of "fill", "contain", or "cover".`);if(t.width!==void 0&&t.height!==void 0&&t.fit===void 0)throw TypeError(`When both options.width and options.height are provided, options.fit must also be provided.`);if(t.rotate!==void 0&&![0,90,180,270].includes(t.rotate))throw TypeError(`options.rotate, when provided, must be 0, 90, 180 or 270.`);if(t.crop!==void 0&&yc(t.crop,`options.`),t.alpha!==void 0&&![`keep`,`discard`].includes(t.alpha))throw TypeError(`options.alpha, when provided, must be 'keep' or 'discard'.`);let n=i(this.rotation+(t.rotate??0)),[r,a]=n%180==0?[this.squarePixelWidth,this.squarePixelHeight]:[this.squarePixelHeight,this.squarePixelWidth],o=t.crop;o&&=vc(o,r,a);let s=o?o.width:r,c=o?o.height:a,l=s/c,u,d;t.width!==void 0&&t.height===void 0?(u=t.width,d=u/l):t.width===void 0&&t.height!==void 0?(d=t.height,u=d*l):t.width!==void 0&&t.height!==void 0?(u=t.width,d=t.height):(u=s,d=c),u=Se(u,t.roundDimensionsTo??1),d=Se(d,t.roundDimensionsTo??1);let f={width:u,height:d,fit:t.fit??`fill`,rotation:n,crop:o??{left:0,top:0,width:r,height:a},alpha:t.alpha??`keep`};for(let e of uc){let t=e(this,f);if(O(t)&&(t=await t),t!==null)return t}let{canvas:p,context:m,isNew:h}=hc(f.width,f.height);return this._drawWithFitAndMipmapping(p,m,{fit:f.fit,rotation:f.rotation,crop:f.crop,targetIsFresh:h,fillBlack:f.alpha===`discard`}),new e(p,{timestamp:this.timestamp,duration:this.duration,rotation:0})}setRotation(e){if(![0,90,180,270].includes(e))throw TypeError(`newRotation must be 0, 90, 180, or 270.`);this.rotation=e}setTimestamp(e){if(!Number.isFinite(e))throw TypeError(`newTimestamp must be a number.`);this.timestamp=e}setDuration(e){if(!Number.isFinite(e)||e<0)throw TypeError(`newDuration must be a non-negative number.`);this.duration=e}setEncodeOptions(e){if(!e||typeof e!=`object`)throw TypeError(`newEncodeOptions must be an object.`);this.encodeOptions=e}[Symbol.dispose](){this.close()}},uc=[],dc=e=>{uc.includes(e)||uc.push(e)},fc=3,pc=[],mc=0,hc=(e,t)=>{for(let n of pc)if(n.canvas.width===e&&n.canvas.height===t)return n.age=mc++,{canvas:n.canvas,context:n.context,isNew:!1};let n;if(typeof OffscreenCanvas<`u`)n=new OffscreenCanvas(e,t);else{if(typeof window>`u`||typeof document>`u`)throw Error(`Cannot transform VideoSamples in this environment. Either run in an environment with OffscreenCanvas or HTMLCanvasElement, or supply a custom VideoSample transformer using registerVideoSampleTransformer().`);n=document.createElement(`canvas`),n.width=e,n.height=t}let r=n.getContext(`2d`,{alpha:!0,willReadFrequently:!1});if(!r)throw Error(`The '2d' canvas context is required to transform VideoSamples. Register a custom transformer using registerVideoSampleTransformer to work around this limitation.`);return pc.length>=fc&&pc.splice(tt(pc,e=>e.age),1),pc.push({canvas:n,context:r,age:mc++}),{canvas:n,context:r,isNew:!0}},gc=class{constructor(e){if(e!==void 0){if(!e||typeof e!=`object`)throw TypeError(`init.colorSpace, when provided, must be an object.`);let t=Object.keys(g);if(e.primaries!=null&&!t.includes(e.primaries))throw TypeError(`init.colorSpace.primaries, when provided, must be one of ${t.join(`, `)}.`);let n=Object.keys(v);if(e.transfer!=null&&!n.includes(e.transfer))throw TypeError(`init.colorSpace.transfer, when provided, must be one of ${n.join(`, `)}.`);let r=Object.keys(b);if(e.matrix!=null&&!r.includes(e.matrix))throw TypeError(`init.colorSpace.matrix, when provided, must be one of ${r.join(`, `)}.`);if(e.fullRange!=null&&typeof e.fullRange!=`boolean`)throw TypeError(`init.colorSpace.fullRange, when provided, must be a boolean.`)}this.primaries=e?.primaries??null,this.transfer=e?.transfer??null,this.matrix=e?.matrix??null,this.fullRange=e?.fullRange??null}toJSON(){return{primaries:this.primaries,transfer:this.transfer,matrix:this.matrix,fullRange:this.fullRange}}},_c=e=>typeof VideoFrame<`u`&&e instanceof VideoFrame,vc=(e,t,n)=>{let i=Math.min(e.left,t),a=Math.min(e.top,n),o=Math.min(e.width,t-i),s=Math.min(e.height,n-a);return r(o>=0),r(s>=0),{left:i,top:a,width:o,height:s}},yc=(e,t)=>{if(!e||typeof e!=`object`)throw TypeError(t+`crop, when provided, must be an object.`);if(!Number.isInteger(e.left)||e.left<0)throw TypeError(t+`crop.left must be a non-negative integer.`);if(!Number.isInteger(e.top)||e.top<0)throw TypeError(t+`crop.top must be a non-negative integer.`);if(!Number.isInteger(e.width)||e.width<0)throw TypeError(t+`crop.width must be a non-negative integer.`);if(!Number.isInteger(e.height)||e.height<0)throw TypeError(t+`crop.height must be a non-negative integer.`)},bc=e=>{if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.colorSpace!==void 0&&![`display-p3`,`srgb`].includes(e.colorSpace))throw TypeError(`options.colorSpace, when provided, must be 'display-p3' or 'srgb'.`);if(e.format!==void 0&&typeof e.format!=`string`)throw TypeError(`options.format, when provided, must be a string.`);if(e.layout!==void 0){if(!Array.isArray(e.layout))throw TypeError(`options.layout, when provided, must be an array.`);for(let t of e.layout){if(!t||typeof t!=`object`)throw TypeError(`Each entry in options.layout must be an object.`);if(!Number.isInteger(t.offset)||t.offset<0)throw TypeError(`plane.offset must be a non-negative integer.`);if(!Number.isInteger(t.stride)||t.stride<0)throw TypeError(`plane.stride must be a non-negative integer.`)}}if(e.rect!==void 0){if(!e.rect||typeof e.rect!=`object`)throw TypeError(`options.rect, when provided, must be an object.`);if(e.rect.x!==void 0&&(!Number.isInteger(e.rect.x)||e.rect.x<0))throw TypeError(`options.rect.x, when provided, must be a non-negative integer.`);if(e.rect.y!==void 0&&(!Number.isInteger(e.rect.y)||e.rect.y<0))throw TypeError(`options.rect.y, when provided, must be a non-negative integer.`);if(e.rect.width!==void 0&&(!Number.isInteger(e.rect.width)||e.rect.width<0))throw TypeError(`options.rect.width, when provided, must be a non-negative integer.`);if(e.rect.height!==void 0&&(!Number.isInteger(e.rect.height)||e.rect.height<0))throw TypeError(`options.rect.height, when provided, must be a non-negative integer.`)}},xc=(e,t,n)=>{let r=Sc(e),i=[],a=0;for(let e of r){let r=Math.ceil(t/e.widthDivisor),o=Math.ceil(n/e.heightDivisor),s=r*e.sampleBytes,c=s*o;i.push({offset:a,stride:s}),a+=c}return i},Sc=e=>{let t=(e,t,n,r,i)=>{let a=[{sampleBytes:e,widthDivisor:1,heightDivisor:1},{sampleBytes:t,widthDivisor:n,heightDivisor:r},{sampleBytes:t,widthDivisor:n,heightDivisor:r}];return i&&a.push({sampleBytes:e,widthDivisor:1,heightDivisor:1}),a};switch(e){case`I420`:return t(1,1,2,2,!1);case`I420P10`:case`I420P12`:return t(2,2,2,2,!1);case`I420A`:return t(1,1,2,2,!0);case`I420AP10`:case`I420AP12`:return t(2,2,2,2,!0);case`I422`:return t(1,1,2,1,!1);case`I422P10`:case`I422P12`:return t(2,2,2,1,!1);case`I422A`:return t(1,1,2,1,!0);case`I422AP10`:case`I422AP12`:return t(2,2,2,1,!0);case`I444`:return t(1,1,1,1,!1);case`I444P10`:case`I444P12`:return t(2,2,1,1,!1);case`I444A`:return t(1,1,1,1,!0);case`I444AP10`:case`I444AP12`:return t(2,2,1,1,!0);case`NV12`:return[{sampleBytes:1,widthDivisor:1,heightDivisor:1},{sampleBytes:2,widthDivisor:2,heightDivisor:2}];case`RGBA`:case`RGBX`:case`BGRA`:case`BGRX`:return[{sampleBytes:4,widthDivisor:1,heightDivisor:1}];default:E(e),r(!1)}},Cc=(e,t)=>{let n={left:0,top:0,width:e.codedWidth,height:e.codedHeight},r=t.rect,i=wc(n,r,e.codedWidth,e.codedHeight,e.format),a=t.layout,o;if(!t.format||t.format===e.format)o=e.format;else if([`RGBA`,`RGBX`,`BGRA`,`BGRX`].includes(t.format))o=t.format;else throw Error(`NotSupportedError: Invalid destination format.`);return Ec(i,o,a)},wc=(e,t,n,r,i)=>{let a={...e};if(t!==void 0){if(t.width===0||t.height===0)throw TypeError(`visibleRect dimensions cannot be zero.`);if((t.x||0)+(t.width||0)>n)throw TypeError(`visibleRect exceeds codedWidth.`);if((t.y||0)+(t.height||0)>r)throw TypeError(`visibleRect exceeds codedHeight.`);a.x=t.x||0,a.y=t.y||0,a.width=t.width||0,a.height=t.height||0}if(!Tc(i,a))throw TypeError(`visibleRect alignment is invalid for the format.`);return a},Tc=(e,t)=>{if(e===null)return!0;let n=Sc(e);for(let e=0;e<n.length;e++){let r=n[e],i=r.widthDivisor,a=r.heightDivisor;if((t.x||0)%i!==0||(t.y||0)%a!==0)return!1}return!0},Ec=(e,t,n)=>{let r=Sc(t),i=r.length;if(n!==void 0&&n.length!==i)throw TypeError(`Layout must have ${i} planes.`);let a=0,o=[],s=[];for(let t=0;t<i;t++){let i=r[t],c=i.sampleBytes,l=i.widthDivisor,u=i.heightDivisor,d={destinationOffset:0,destinationStride:0,sourceTop:0,sourceHeight:0,sourceLeftBytes:0,sourceWidthBytes:0};if(d.sourceTop=Math.ceil(Math.trunc(e.y||0)/u),d.sourceHeight=Math.ceil(Math.trunc(e.height||0)/u),d.sourceLeftBytes=Math.floor(Math.trunc(e.x||0)/l)*c,d.sourceWidthBytes=Math.floor(Math.trunc(e.width||0)/l)*c,n!==void 0){let e=n[t];if(e.stride<d.sourceWidthBytes)throw TypeError(`Stride for plane ${t} is too small.`);d.destinationOffset=e.offset,d.destinationStride=e.stride}else d.destinationOffset=a,d.destinationStride=d.sourceWidthBytes;let f=d.destinationStride*d.sourceHeight+d.destinationOffset;if(f>4294967295)throw TypeError(`Allocation size exceeds limit.`);s.push(f),a=Math.max(a,f);for(let e=0;e<t;e++){let n=o[e];if(!(s[t]<=n.destinationOffset||s[e]<=d.destinationOffset))throw TypeError(`Planes overlap.`)}o.push(d)}return{allocationSize:a,computedLayouts:o}},Dc=new Set([`f32`,`f32-planar`,`s16`,`s16-planar`,`s32`,`s32-planar`,`u8`,`u8-planar`]),Oc=class{constructor(){this._referenceCount=0}},kc=class e{get microsecondTimestamp(){return Math.trunc(Ae*this.timestamp)}get microsecondDuration(){return Math.trunc(Ae*this.duration)}constructor(e){if(this._closed=!1,Pc(e)){if(e.format===null)throw TypeError(`AudioData with null format is not supported.`);this._data=e,this.format=e.format,this.sampleRate=e.sampleRate,this.numberOfFrames=e.numberOfFrames,this.numberOfChannels=e.numberOfChannels,this.timestamp=e.timestamp/1e6,this.duration=e.numberOfFrames/e.sampleRate}else if(e instanceof Oc){if(this._data=e,e._referenceCount++,this.format=e.getFormat(),!Dc.has(this.format))throw TypeError(`getFormat() must return an AudioSampleFormat.`);if(this.sampleRate=e.getSampleRate(),!Number.isInteger(this.sampleRate)||this.sampleRate<=0)throw TypeError(`getSampleRate() must return a positive integer.`);if(this.numberOfFrames=e.getNumberOfFrames(),!Number.isInteger(this.numberOfFrames)||this.numberOfFrames<0)throw TypeError(`getNumberOfFrames() must return a non-negative integer.`);if(this.numberOfChannels=e.getNumberOfChannels(),!Number.isInteger(this.numberOfChannels)||this.numberOfChannels<=0)throw TypeError(`getNumberOfChannels() must return a positive integer.`);if(this.timestamp=e.getTimestamp(),!Number.isFinite(this.timestamp))throw TypeError(`getTimestamp() must return a finite number.`);this.duration=this.numberOfFrames/this.sampleRate}else{if(!e||typeof e!=`object`)throw TypeError(`Invalid AudioDataInit: must be an object.`);if(!Dc.has(e.format))throw TypeError(`Invalid AudioDataInit: invalid format.`);if(!Number.isFinite(e.sampleRate)||e.sampleRate<=0)throw TypeError(`Invalid AudioDataInit: sampleRate must be > 0.`);if(!Number.isInteger(e.numberOfChannels)||e.numberOfChannels===0)throw TypeError(`Invalid AudioDataInit: numberOfChannels must be an integer > 0.`);if(!Number.isFinite(e?.timestamp))throw TypeError(`init.timestamp must be a number.`);let t=e.data.byteLength/(Ac(e.format)*e.numberOfChannels);if(!Number.isInteger(t))throw TypeError(`Invalid AudioDataInit: data size is not a multiple of frame size.`);this.format=e.format,this.sampleRate=e.sampleRate,this.numberOfFrames=t,this.numberOfChannels=e.numberOfChannels,this.timestamp=e.timestamp,this.duration=t/e.sampleRate;let n;if(e.data instanceof ArrayBuffer)n=new Uint8Array(e.data);else if(ArrayBuffer.isView(e.data))n=new Uint8Array(e.data.buffer,e.data.byteOffset,e.data.byteLength);else throw TypeError(`Invalid AudioDataInit: data is not a BufferSource.`);let r=this.numberOfFrames*this.numberOfChannels*Ac(this.format);if(n.byteLength<r)throw TypeError(`Invalid AudioDataInit: insufficient data size.`);this._data=n}ac?.register(this,{type:`audio`,data:this._data},this)}allocationSize(e){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(!Number.isInteger(e.planeIndex)||e.planeIndex<0)throw TypeError(`planeIndex must be a non-negative integer.`);if(e.format!==void 0&&!Dc.has(e.format))throw TypeError(`Invalid format.`);if(e.frameOffset!==void 0&&(!Number.isInteger(e.frameOffset)||e.frameOffset<0))throw TypeError(`frameOffset must be a non-negative integer.`);if(e.frameCount!==void 0&&(!Number.isInteger(e.frameCount)||e.frameCount<0))throw TypeError(`frameCount must be a non-negative integer.`);if(this._closed)throw Error(`AudioSample is closed.`);let t=e.format??this.format,n=e.frameOffset??0;if(n>=this.numberOfFrames)throw RangeError(`frameOffset out of range`);let r=e.frameCount===void 0?this.numberOfFrames-n:e.frameCount;if(r>this.numberOfFrames-n)throw RangeError(`frameCount out of range`);let i=Ac(t),a=jc(t);if(a&&e.planeIndex>=this.numberOfChannels||!a&&e.planeIndex!==0)throw RangeError(`planeIndex out of range`);return(a?r:r*this.numberOfChannels)*i}copyTo(e,t){if(!te(e))throw TypeError(`destination must be an ArrayBuffer or an ArrayBuffer view.`);if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(!Number.isInteger(t.planeIndex)||t.planeIndex<0)throw TypeError(`planeIndex must be a non-negative integer.`);if(t.format!==void 0&&!Dc.has(t.format))throw TypeError(`Invalid format.`);if(t.frameOffset!==void 0&&(!Number.isInteger(t.frameOffset)||t.frameOffset<0))throw TypeError(`frameOffset must be a non-negative integer.`);if(t.frameCount!==void 0&&(!Number.isInteger(t.frameCount)||t.frameCount<0))throw TypeError(`frameCount must be a non-negative integer.`);if(this._closed)throw Error(`AudioSample is closed.`);let{format:n,frameCount:i,frameOffset:a}=t,{planeIndex:o}=t,s=this.format,c=n??this.format;if(!c)throw Error(`Destination format not determined`);let l=this.numberOfFrames,u=this.numberOfChannels,f=a??0;if(f>=l)throw RangeError(`frameOffset out of range`);let p=i===void 0?l-f:i;if(p>l-f)throw RangeError(`frameCount out of range`);let m=Ac(c),h=jc(c);if(h&&o>=u||!h&&o!==0)throw RangeError(`planeIndex out of range`);let g=(h?p:p*u)*m;if(e.byteLength<g)throw RangeError(`Destination buffer is too small`);let _=d(e),v=Nc(c);if(Pc(this._data)){if(Le()&&u>2&&c!==s){Ic(this._data,_,s,c,u,o,f,p);return}try{this._data.copyTo(e,{planeIndex:o,frameOffset:f,frameCount:p,format:c});return}catch(e){if(c===`f32-planar`)throw e;s=`f32-planar`}}let y=Mc(s),b=Ac(s),x=jc(s),S;if(this._data instanceof Oc){let e=e=>{let t=this._data.getDataPlane(e);if(!(t instanceof Uint8Array))throw TypeError(`getDataPlane() must return a Uint8Array.`);let n=l*b*(x?1:u);if(t.byteLength!==n)throw TypeError(`Data plane ${e} has invalid size. Expected exactly ${n} bytes, got ${t.byteLength} bytes.`);return t};if(x){if(h)S=e(o),o=0;else{S=new Uint8Array(l*b*u);for(let t=0;t<u;t++){let n=e(t);S.set(n,t*l*b)}}}else S=e(0)}else if(this._data instanceof Uint8Array)S=this._data;else if(r(s===`f32-planar`),h)S=new Uint8Array(this._data.allocationSize({format:`f32-planar`,planeIndex:o})),this._data.copyTo(S,{format:`f32-planar`,planeIndex:o}),o=0;else{S=new Uint8Array(this._data.allocationSize({format:`f32-planar`,planeIndex:0})*u);for(let e=0;e<u;e++)this._data.copyTo(S.subarray(e*l*b,(e+1)*l*b),{format:`f32-planar`,planeIndex:e})}let C=d(S);for(let e=0;e<p;e++)if(h){let t=e*m,n;n=x?(o*l+(e+f))*b:((e+f)*u+o)*b,v(_,t,y(C,n))}else for(let t=0;t<u;t++){let n=(e*u+t)*m,r;r=x?(t*l+(e+f))*b:((e+f)*u+t)*b,v(_,n,y(C,r))}}clone(){if(this._closed)throw Error(`AudioSample is closed.`);if(this._data instanceof Oc){let t=new e(this._data);return t.setTimestamp(this.timestamp),t}if(Pc(this._data)){let t=new e(this._data.clone());return t.setTimestamp(this.timestamp),t}return new e({format:this.format,sampleRate:this.sampleRate,numberOfFrames:this.numberOfFrames,numberOfChannels:this.numberOfChannels,timestamp:this.timestamp,data:this._data})}trim(t,n=this.numberOfFrames){if(!Number.isInteger(t)||t<0)throw TypeError(`startSample must be a non-negative integer.`);if(!Number.isInteger(n)||n<0)throw TypeError(`endSample must be a non-negative integer.`);if(t>this.numberOfFrames)throw RangeError(`startSample out of range.`);if(n>this.numberOfFrames)throw RangeError(`endSample out of range.`);if(n<t)throw RangeError(`endSample must not be less than startSample.`);if(this._closed)throw Error(`AudioSample is closed.`);let r=n-t,i=Ac(this.format),a;if(jc(this.format)){let e=r*i;if(a=new Uint8Array(e*this.numberOfChannels),r>0)for(let n=0;n<this.numberOfChannels;n++)this.copyTo(a.subarray(n*e,(n+1)*e),{planeIndex:n,format:this.format,frameOffset:t,frameCount:r})}else a=new Uint8Array(r*this.numberOfChannels*i),r>0&&this.copyTo(a,{planeIndex:0,format:this.format,frameOffset:t,frameCount:r});return new e({data:a,format:this.format,sampleRate:this.sampleRate,numberOfChannels:this.numberOfChannels,timestamp:this.timestamp+t/this.sampleRate})}close(){this._closed||=(ac?.unregister(this),this._data instanceof Oc?(this._data._referenceCount--,this._data._referenceCount===0&&this._data.close()):Pc(this._data)?this._data.close():this._data=new Uint8Array,!0)}toAudioData(){if(this._closed)throw Error(`AudioSample is closed.`);return this._data instanceof Oc?this._createAudioDataFromData():Pc(this._data)?this._data.timestamp===this.microsecondTimestamp?this._data.clone():this._createAudioDataFromData():new AudioData({format:this.format,sampleRate:this.sampleRate,numberOfFrames:this.numberOfFrames,numberOfChannels:this.numberOfChannels,timestamp:this.microsecondTimestamp,data:this._data.buffer instanceof ArrayBuffer?this._data.buffer:this._data.slice()})}_createAudioDataFromData(){if(jc(this.format)){let e=this.allocationSize({planeIndex:0,format:this.format}),t=new ArrayBuffer(e*this.numberOfChannels);for(let n=0;n<this.numberOfChannels;n++)this.copyTo(new Uint8Array(t,n*e,e),{planeIndex:n,format:this.format});return new AudioData({format:this.format,sampleRate:this.sampleRate,numberOfFrames:this.numberOfFrames,numberOfChannels:this.numberOfChannels,timestamp:this.microsecondTimestamp,data:t})}{let e=new ArrayBuffer(this.allocationSize({planeIndex:0,format:this.format}));return this.copyTo(e,{planeIndex:0,format:this.format}),new AudioData({format:this.format,sampleRate:this.sampleRate,numberOfFrames:this.numberOfFrames,numberOfChannels:this.numberOfChannels,timestamp:this.microsecondTimestamp,data:e})}}toAudioBuffer(){if(this._closed)throw Error(`AudioSample is closed.`);let e=new AudioBuffer({numberOfChannels:this.numberOfChannels,length:this.numberOfFrames,sampleRate:this.sampleRate}),t=new Float32Array(this.allocationSize({planeIndex:0,format:`f32-planar`})/4);for(let n=0;n<this.numberOfChannels;n++)this.copyTo(t,{planeIndex:n,format:`f32-planar`}),e.copyToChannel(t,n);return e}setTimestamp(e){if(!Number.isFinite(e))throw TypeError(`newTimestamp must be a number.`);this.timestamp=e}[Symbol.dispose](){this.close()}static*_fromAudioBuffer(t,n){if(!(t instanceof AudioBuffer))throw TypeError(`audioBuffer must be an AudioBuffer.`);let r=t.numberOfChannels,i=t.sampleRate,a=t.length,o=Math.floor(24e4/r),s=0,c=a;for(;c>0;){let a=Math.min(o,c),l=new Float32Array(r*a);for(let e=0;e<r;e++)t.copyFromChannel(l.subarray(e*a,(e+1)*a),e,s);yield new e({format:`f32-planar`,sampleRate:i,numberOfFrames:a,numberOfChannels:r,timestamp:n+s/i,data:l}),s+=a,c-=a}}static fromAudioBuffer(t,n){if(!(t instanceof AudioBuffer))throw TypeError(`audioBuffer must be an AudioBuffer.`);let r=t.numberOfChannels,i=t.sampleRate,a=t.length,o=Math.floor(24e4/r),s=0,c=a,l=[];for(;c>0;){let a=Math.min(o,c),u=new Float32Array(r*a);for(let e=0;e<r;e++)t.copyFromChannel(u.subarray(e*a,(e+1)*a),e,s);let d=new e({format:`f32-planar`,sampleRate:i,numberOfFrames:a,numberOfChannels:r,timestamp:n+s/i,data:u});l.push(d),s+=a,c-=a}return l}},Ac=e=>{switch(e){case`u8`:case`u8-planar`:return 1;case`s16`:case`s16-planar`:return 2;case`s32`:case`s32-planar`:return 4;case`f32`:case`f32-planar`:return 4;default:throw Error(`Unknown AudioSampleFormat`)}},jc=e=>{switch(e){case`u8-planar`:case`s16-planar`:case`s32-planar`:case`f32-planar`:return!0;default:return!1}},Mc=e=>{switch(e){case`u8`:case`u8-planar`:return(e,t)=>(e.getUint8(t)-128)/128;case`s16`:case`s16-planar`:return(e,t)=>e.getInt16(t,!0)/32768;case`s32`:case`s32-planar`:return(e,t)=>e.getInt32(t,!0)/2147483648;case`f32`:case`f32-planar`:return(e,t)=>e.getFloat32(t,!0)}},Nc=e=>{switch(e){case`u8`:case`u8-planar`:return(e,t,n)=>e.setUint8(t,D((n+1)*127.5,0,255));case`s16`:case`s16-planar`:return(e,t,n)=>e.setInt16(t,D(Math.round(n*32767),-32768,32767),!0);case`s32`:case`s32-planar`:return(e,t,n)=>e.setInt32(t,D(Math.round(n*2147483647),-2147483648,2147483647),!0);case`f32`:case`f32-planar`:return(e,t,n)=>e.setFloat32(t,n,!0)}},Pc=e=>typeof AudioData<`u`&&e instanceof AudioData,Fc=e=>{switch(e){case`u8-planar`:return`u8`;case`s16-planar`:return`s16`;case`s32-planar`:return`s32`;case`f32-planar`:return`f32`;default:return e}},Ic=(e,t,n,r,i,a,o,s)=>{let c=Mc(n),l=Nc(r),u=Ac(n),f=Ac(r),p=jc(n);if(jc(r)){if(p){let r=new ArrayBuffer(s*u),i=d(r);e.copyTo(r,{planeIndex:a,frameOffset:o,frameCount:s,format:n});for(let e=0;e<s;e++){let n=e*u;l(t,e*f,c(i,n))}}else{let r=new ArrayBuffer(s*i*u),p=d(r);e.copyTo(r,{planeIndex:0,frameOffset:o,frameCount:s,format:n});for(let e=0;e<s;e++){let n=(e*i+a)*u;l(t,e*f,c(p,n))}}}else if(p){let r=s*u,a=new ArrayBuffer(r),p=d(a);for(let r=0;r<i;r++){e.copyTo(a,{planeIndex:r,frameOffset:o,frameCount:s,format:n});for(let e=0;e<s;e++){let n=e*u;l(t,(e*i+r)*f,c(p,n))}}}else{let r=new ArrayBuffer(s*i*u),a=d(r);e.copyTo(r,{planeIndex:0,frameOffset:o,frameCount:s,format:n});for(let e=0;e<s;e++)for(let n=0;n<i;n++){let r=e*i+n,o=r*u;l(t,r*f,c(a,o))}}},Lc=(e,t)=>{let n=e.allocationSize({format:t,planeIndex:0}),r=new ArrayBuffer(n);return e.copyTo(r,{format:t,planeIndex:0}),new kc({data:r,format:t,numberOfChannels:e.numberOfChannels,sampleRate:e.sampleRate,timestamp:e.timestamp,duration:e.duration})},Rc=new Map,zc=new Map,Bc=e=>{if(!e||typeof e!=`object`)throw TypeError(`Encoding config must be an object.`);if(!N.includes(e.codec))throw TypeError(`Invalid video codec '${e.codec}'. Must be one of: ${N.join(`, `)}.`);let t=e.bitrate;if(e.quality===void 0&&t===void 0)throw TypeError(`config.quality must be provided.`);if(e.quality!==void 0&&t!==void 0)throw TypeError(`config.quality and config.bitrate cannot both be provided.`);if(e.quality!==void 0&&!(e.quality instanceof z))throw TypeError(`config.quality, when provided, must be a Quality.`);if(t!==void 0&&!(t instanceof z)&&(!Number.isInteger(t)||t<=0))throw TypeError(`config.bitrate, when provided, must be a positive integer or a quality.`);if(e.keyFrameInterval!==void 0&&(!Number.isFinite(e.keyFrameInterval)||e.keyFrameInterval<0))throw TypeError(`config.keyFrameInterval, when provided, must be a non-negative number.`);if(e.sizeChangeBehavior!==void 0&&![`deny`,`passThrough`,`fill`,`contain`,`cover`].includes(e.sizeChangeBehavior))throw TypeError(`config.sizeChangeBehavior, when provided, must be 'deny', 'passThrough', 'fill', 'contain' or 'cover'.`);if(e.transform!==void 0){if(typeof e.transform!=`object`||!e.transform)throw TypeError(`config.transform, when provided, must be an object.`);if(e.transform.width!==void 0&&(!Number.isInteger(e.transform.width)||e.transform.width<=0))throw TypeError(`config.transform.width, when provided, must be a positive integer.`);if(e.transform.height!==void 0&&(!Number.isInteger(e.transform.height)||e.transform.height<=0))throw TypeError(`config.transform.height, when provided, must be a positive integer.`);if(e.transform.fit!==void 0&&![`fill`,`contain`,`cover`].includes(e.transform.fit))throw TypeError(`config.transform.fit, when provided, must be one of "fill", "contain", or "cover".`);if(e.transform.width!==void 0&&e.transform.height!==void 0&&e.transform.fit===void 0&&![`fill`,`contain`,`cover`].includes(e.sizeChangeBehavior))throw TypeError(`When both config.transform.width and config.transform.height are provided, config.transform.fit must also be provided.`);if(e.transform.fit!==void 0&&[`fill`,`contain`,`cover`].includes(e.sizeChangeBehavior)&&e.transform.fit!==e.sizeChangeBehavior)throw TypeError(`config.transform.fit, when provided, cannot differ from config.sizeChangeBehavior when config.sizeChangeBehavior is 'fill', 'contain' or 'cover', as sizeChangeBehavior already determines the fitting algorithm.`);if(e.transform.rotate!==void 0&&![0,90,180,270].includes(e.transform.rotate))throw TypeError(`config.transform.rotate, when provided, must be 0, 90, 180 or 270.`);if(e.transform.crop!==void 0&&yc(e.transform.crop,`config.transform.`),e.transform.process!==void 0&&typeof e.transform.process!=`function`)throw TypeError(`config.transform.process, when provided, must be a function.`);if(e.transform.frameRate!==void 0&&(!Number.isFinite(e.transform.frameRate)||e.transform.frameRate<=0))throw TypeError(`config.transform.frameRate, when provided, must be a finite positive number.`);if(e.transform.force!==void 0&&typeof e.transform.force!=`boolean`)throw TypeError(`config.transform.force, when provided, must be a boolean.`)}if(e.onEncodedPacket!==void 0&&typeof e.onEncodedPacket!=`function`)throw TypeError(`config.onEncodedPacket, when provided, must be a function.`);if(e.onEncoderConfig!==void 0&&typeof e.onEncoderConfig!=`function`)throw TypeError(`config.onEncoderConfig, when provided, must be a function.`);if(e.onEncodedSample!==void 0&&typeof e.onEncodedSample!=`function`)throw TypeError(`config.onEncodedSample, when provided, must be a function.`);Vc(e.codec,e)},Vc=(e,t)=>{if(!t||typeof t!=`object`)throw TypeError(`Encoding options must be an object.`);if(t.alpha!==void 0&&![`discard`,`keep`].includes(t.alpha))throw TypeError(`options.alpha, when provided, must be 'discard' or 'keep'.`);let n=t.bitrateMode;if(n!==void 0&&![`constant`,`variable`].includes(n))throw TypeError(`bitrateMode, when provided, must be 'constant' or 'variable'.`);if(t.latencyMode!==void 0&&![`quality`,`realtime`].includes(t.latencyMode))throw TypeError(`latencyMode, when provided, must be 'quality' or 'realtime'.`);if(t.fullCodecString!==void 0&&typeof t.fullCodecString!=`string`)throw TypeError(`fullCodecString, when provided, must be a string.`);if(t.fullCodecString!==void 0&&jr(t.fullCodecString)!==e)throw TypeError(`fullCodecString, when provided, must be a string that matches the specified codec (${e}).`);if(t.hardwareAcceleration!==void 0&&![`no-preference`,`prefer-hardware`,`prefer-software`].includes(t.hardwareAcceleration))throw TypeError(`hardwareAcceleration, when provided, must be 'no-preference', 'prefer-hardware' or 'prefer-software'.`);if(t.scalabilityMode!==void 0&&typeof t.scalabilityMode!=`string`)throw TypeError(`scalabilityMode, when provided, must be a string.`);if(t.contentHint!==void 0&&typeof t.contentHint!=`string`)throw TypeError(`contentHint, when provided, must be a string.`)},Hc=e=>{let t=e.bitrateMode,n=e.quality._toVideoRateControl(e.codec,e.width,e.height,t),i=(t,n,r)=>({codec:e.fullCodecString??br(e.codec,e.width,e.height,r,e.alpha===`keep`),width:e.width,height:e.height,displayWidth:e.squarePixelWidth,displayHeight:e.squarePixelHeight,bitrate:t,bitrateMode:n,alpha:e.alpha??`discard`,framerate:e.framerate,latencyMode:e.latencyMode,hardwareAcceleration:e.hardwareAcceleration,scalabilityMode:e.scalabilityMode,contentHint:e.contentHint,...Mr(e.codec)}),a=[];return n.quantizer!==null&&a.push({config:i(void 0,`quantizer`,n.bitrate),quantizer:n.quantizer}),n.bitrateMode!==`quantizer`&&a.push({config:i(n.bitrate,n.bitrateMode,n.bitrate),quantizer:null}),r(a.length>0),a},Uc=e=>{if(!e||typeof e!=`object`)throw TypeError(`Encoding config must be an object.`);if(!F.includes(e.codec))throw TypeError(`Invalid audio codec '${e.codec}'. Must be one of: ${F.join(`, `)}.`);let t=e.bitrate;if(e.quality===void 0&&t===void 0&&!(P.includes(e.codec)||e.codec===`flac`))throw TypeError(`config.quality must be provided for compressed audio codecs.`);if(e.quality!==void 0&&t!==void 0)throw TypeError(`config.quality and config.bitrate cannot both be provided.`);if(e.quality!==void 0&&!(e.quality instanceof z))throw TypeError(`config.quality, when provided, must be a Quality.`);if(t!==void 0&&!(t instanceof z)&&(!Number.isInteger(t)||t<=0))throw TypeError(`config.bitrate, when provided, must be a positive integer or a quality.`);if(e.transform!==void 0){if(typeof e.transform!=`object`||!e.transform)throw TypeError(`config.transform, when provided, must be an object.`);if(e.transform.numberOfChannels!==void 0&&(!Number.isInteger(e.transform.numberOfChannels)||e.transform.numberOfChannels<=0))throw TypeError(`config.transform.numberOfChannels, when provided, must be a positive integer.`);if(e.transform.sampleRate!==void 0&&(!Number.isInteger(e.transform.sampleRate)||e.transform.sampleRate<=0))throw TypeError(`config.transform.sampleRate, when provided, must be a positive integer.`);if(e.transform.sampleFormat!==void 0&&![`u8`,`s16`,`s32`,`f32`].includes(e.transform.sampleFormat))throw TypeError(`config.transform.sampleFormat, when provided, must be one of: u8, s16, s32, f32.`);if(e.transform.process!==void 0&&typeof e.transform.process!=`function`)throw TypeError(`config.transform.process, when provided, must be a function.`)}if(e.onEncodedPacket!==void 0&&typeof e.onEncodedPacket!=`function`)throw TypeError(`config.onEncodedPacket, when provided, must be a function.`);if(e.onEncoderConfig!==void 0&&typeof e.onEncoderConfig!=`function`)throw TypeError(`config.onEncoderConfig, when provided, must be a function.`);if(e.onEncodedSample!==void 0&&typeof e.onEncodedSample!=`function`)throw TypeError(`config.onEncodedSample, when provided, must be a function.`);Wc(e.codec,e)},Wc=(e,t)=>{if(!t||typeof t!=`object`)throw TypeError(`Encoding options must be an object.`);let n=t.bitrateMode;if(n!==void 0&&![`constant`,`variable`].includes(n))throw TypeError(`bitrateMode, when provided, must be 'constant' or 'variable'.`);if(t.fullCodecString!==void 0&&typeof t.fullCodecString!=`string`)throw TypeError(`fullCodecString, when provided, must be a string.`);if(t.fullCodecString!==void 0&&jr(t.fullCodecString)!==e)throw TypeError(`fullCodecString, when provided, must be a string that matches the specified codec (${e}).`)},Gc=e=>{let t=e.bitrateMode;return{codec:e.fullCodecString??Tr(e.codec,e.numberOfChannels,e.sampleRate),numberOfChannels:e.numberOfChannels,sampleRate:e.sampleRate,bitrate:e.quality?._toAudioBitrate(e.codec),bitrateMode:e.quality?._bitrateMode??t,...Nr(e.codec)}},z=class{constructor(e){if((typeof e==`number`||typeof e==`string`)&&(e={quality:e}),!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.bitrateMode!==void 0&&![`constant`,`variable`].includes(e.bitrateMode))throw TypeError(`options.bitrateMode, when provided, must be 'constant' or 'variable'.`);if(`quality`in e){if(typeof e.quality==`string`?!(e.quality in Kc):typeof e.quality!=`number`||Number.isNaN(e.quality))throw TypeError(`options.quality must be a number, or one of 'very-low', 'low', 'medium', 'high' or 'very-high'.`);if(e.preferBitrate!==void 0&&typeof e.preferBitrate!=`boolean`)throw TypeError(`options.preferBitrate, when provided, must be a boolean.`);if(`bitrate`in e||`quantizer`in e)throw TypeError(`options.quality cannot be combined with options.bitrate or options.quantizer.`);this._quality=typeof e.quality==`string`?Kc[e.quality]:e.quality,this._preferBitrate=e.preferBitrate??!1,this._bitrate=void 0,this._quantizer=void 0}else{if(e.bitrate!==void 0&&(!Number.isInteger(e.bitrate)||e.bitrate<=0))throw TypeError(`options.bitrate, when provided, must be a positive integer.`);if(e.quantizer!==void 0&&(!Number.isInteger(e.quantizer)||e.quantizer<0))throw TypeError(`options.quantizer, when provided, must be a non-negative integer.`);if(e.bitrate===void 0&&e.quantizer===void 0)throw TypeError(`At least one of options.bitrate or options.quantizer must be set.`);if(`preferBitrate`in e)throw TypeError(`options.preferBitrate can only be combined with options.quality.`);this._quality=void 0,this._preferBitrate=!1,this._bitrate=e.bitrate,this._quantizer=e.quantizer}this._bitrateMode=e.bitrateMode}_toVideoRateControl(e,t,n,i){let a=qc[e],o=null,s=this._bitrateMode??i??`variable`;if(this._quantizer!==void 0){if(!a){if(this._bitrate===void 0)throw Error(`Codec '${e}' does not support quantizer-based encoding. Provide a bitrate in the Quality to define a fallback.`)}else if(this._quantizer<a.min||this._quantizer>a.max){if(this._bitrate===void 0)throw Error(`Quantizer ${this._quantizer} is out of range for codec '${e}'; must be between ${a.min} and ${a.max}.`)}else o=this._quantizer,this._bitrate===void 0&&(s=`quantizer`)}else this._bitrate===void 0&&a&&!this._preferBitrate&&(r(this._quality!==void 0),o=D(Math.round(be(a.worst,a.best,this._quality)),a.min,a.max));let c;if(this._bitrate!==void 0)c=this._bitrate;else{let i=this._quality;i===void 0&&(r(o!==null&&a),i=D((o-a.worst)/(a.best-a.worst),0,1)),c=Yc(e,t,n,Jc(i))}return{quantizer:o,bitrate:c,bitrateMode:s}}_toVideoBitrate(e,t,n){return this._bitrate===void 0?(r(this._quality!==void 0),Yc(e,t,n,Jc(this._quality))):this._bitrate}_toAudioBitrate(e){if(P.includes(e)||e===`flac`)return;if(this._bitrate!==void 0)return this._bitrate;if(this._quality===void 0)throw Error(`This Quality defines neither a quality level nor a bitrate and therefore cannot be used for audio encoding.`);let t=Jc(this._quality),n={aac:128e3,opus:64e3,mp3:16e4,vorbis:64e3,ac3:384e3,eac3:192e3,dts:768e3}[e];if(!n)throw Error(`Unhandled codec: ${e}`);let r=n*t;return e===`aac`?r=[96e3,128e3,16e4,192e3].reduce((e,t)=>Math.abs(t-r)<Math.abs(e-r)?t:e):e===`opus`||e===`vorbis`?r=Math.max(6e3,r):e===`mp3`&&(r=[8e3,16e3,24e3,32e3,4e4,48e3,64e3,8e4,96e3,112e3,128e3,16e4,192e3,224e3,256e3,32e4].reduce((e,t)=>Math.abs(t-r)<Math.abs(e-r)?t:e)),Math.round(r/1e3)*1e3}},Kc={"very-low":0,low:.25,medium:.5,high:.75,"very-high":1},qc={avc:{min:0,max:51,worst:41,best:16},hevc:{min:0,max:51,worst:41,best:16},vp9:{min:0,max:63,worst:52,best:20},av1:{min:0,max:255,worst:208,best:80}},Jc=e=>.3*Math.exp(2.5538*e),Yc=(e,t,n,r)=>{let i=t*n,a=3e6,o=a*(i/2073600)**.95*{avc:1,hevc:.6,vp9:.6,av1:.4,vp8:1.2,prores:22e7/a}[e]*r;return Math.ceil(o/1e3)*1e3},Xc=(e,t)=>{if(e===`avc`)return{avc:{quantizer:t}};if(e===`hevc`)return{hevc:{quantizer:t}};if(e===`vp9`)return{vp9:{quantizer:t}};if(e===`av1`)return{av1:{quantizer:t}};r(!1)},Zc=new z(`very-low`),Qc=new z(`low`),$c=new z(`medium`),el=new z(`high`),tl=new z(`very-high`),nl=e=>{if(N.includes(e))return rl(e);if(F.includes(e))return il(e);if(ur.includes(e))return ol(e);throw TypeError(`Unknown codec '${e}'.`)},rl=async(e,t={})=>{let{width:n=1280,height:r=720,quality:i,bitrate:a,...o}=t;if(!N.includes(e))return!1;if(!Number.isInteger(n)||n<=0)throw TypeError(`width must be a positive integer.`);if(!Number.isInteger(r)||r<=0)throw TypeError(`height must be a positive integer.`);if(i!==void 0&&!(i instanceof z))throw TypeError(`quality, when provided, must be a Quality.`);if(i!==void 0&&a!==void 0)throw TypeError(`quality and bitrate cannot both be provided.`);if(a!==void 0&&!(a instanceof z)&&(!Number.isInteger(a)||a<=0))throw TypeError(`bitrate must be a positive integer or a quality.`);Vc(e,o);let s=al(i,a)??new z(`medium`),c;try{c=Hc({codec:e,width:n,height:r,quality:s,framerate:void 0,...o,alpha:`discard`})}catch{return!1}let l=JSON.stringify(c),u=Rc.get(l);if(u)return u;let d=(async()=>{for(let{config:t}of c)if(bl.some(n=>n.supports(e,t)))return!0;if(typeof VideoEncoder>`u`||(n%2==1||r%2==1)&&(e===`avc`||e===`hevc`))return!1;for(let{config:t,quantizer:i}of c){try{if(!(await VideoEncoder.isConfigSupported(t)).supported)continue}catch{continue}if(!ze()||await new Promise(async a=>{try{let o=new VideoEncoder({output:()=>{},error:()=>a(!1)});o.configure(t);let s=new Uint8Array(n*r*4),c=new VideoFrame(s,{format:`RGBA`,codedWidth:n,codedHeight:r,timestamp:0});o.encode(c,i===null?void 0:Xc(e,i)),c.close(),await o.flush(),a(!0)}catch{a(!1)}}))return!0}return!1})();return Rc.set(l,d),d},il=async(e,t={})=>{let{numberOfChannels:n=2,sampleRate:r=48e3,quality:i,bitrate:a,...o}=t;if(!F.includes(e))return!1;if(!Number.isInteger(n)||n<=0)throw TypeError(`numberOfChannels must be a positive integer.`);if(!Number.isInteger(r)||r<=0)throw TypeError(`sampleRate must be a positive integer.`);if(i!==void 0&&!(i instanceof z))throw TypeError(`quality, when provided, must be a Quality.`);if(i!==void 0&&a!==void 0)throw TypeError(`quality and bitrate cannot both be provided.`);if(a!==void 0&&!(a instanceof z)&&(!Number.isInteger(a)||a<=0))throw TypeError(`bitrate must be a positive integer.`);Wc(e,o);let s=Gc({codec:e,numberOfChannels:n,sampleRate:r,quality:al(i,a)??new z(`medium`),...o}),c=JSON.stringify(s),l=zc.get(c);if(l)return l;let u=(async()=>{if(xl.some(t=>t.supports(e,s))||P.includes(e))return!0;if(typeof AudioEncoder>`u`)return!1;try{return(await AudioEncoder.isConfigSupported(s)).supported===!0}catch{return!1}})();return zc.set(c,u),u},al=(e,t)=>{if(e!==void 0)return e;if(t!==void 0)return t instanceof z?t:new z({bitrate:t})},ol=async e=>!!ur.includes(e),sl=async()=>{let[e,t,n]=await Promise.all([cl(),ll(),ul()]);return[...e,...t,...n]},cl=async(e=N,t)=>{let n=await Promise.all(e.map(e=>rl(e,t)));return e.filter((e,t)=>n[t])},ll=async(e=F,t)=>{let n=await Promise.all(e.map(e=>il(e,t)));return e.filter((e,t)=>n[t])},ul=async(e=ur)=>{let t=await Promise.all(e.map(ol));return e.filter((e,n)=>t[n])},dl=async(e,t)=>{for(let n of e)if(await rl(n,t))return n;return null},fl=async(e,t)=>{for(let n of e)if(await il(n,t))return n;return null},pl=async e=>{for(let t of e)if(await ol(t))return t;return null},ml=class{static supports(e,t){return!1}},hl=class{static supports(e,t){return!1}},gl=class{static supports(e,t){return!1}},_l=class{static supports(e,t){return!1}},vl=[],yl=[],bl=[],xl=[],Sl=e=>{if(e.prototype instanceof ml){let t=e;if(vl.includes(t)){k._warn(`Video decoder already registered.`);return}vl.push(t),Gs.clear()}else if(e.prototype instanceof hl){let t=e;if(yl.includes(t)){k._warn(`Audio decoder already registered.`);return}yl.push(t),Ks.clear()}else throw TypeError(`Decoder must be a CustomVideoDecoder or CustomAudioDecoder.`)},Cl=e=>{if(e.prototype instanceof gl){let t=e;if(bl.includes(t)){k._warn(`Video encoder already registered.`);return}bl.push(t),Rc.clear()}else if(e.prototype instanceof _l){let t=e;if(xl.includes(t)){k._warn(`Audio encoder already registered.`);return}xl.push(t),zc.clear()}else throw TypeError(`Encoder must be a CustomVideoEncoder or CustomAudioEncoder.`)},wl=e=>{let t=8191,n=e,r=4096,i=0,a=12,o=0;for(n<0&&(n=-n,i=128),n+=33,n>t&&(n=t);(n&r)!==r&&a>=5;)r>>=1,a--;return o=n>>a-4&15,~(i|a-5<<4|o)&255},Tl=e=>{let t=0,n=0,r=~e;r&128&&(r&=-129,t=-1),n=((r&240)>>4)+5;let i=(1<<n|(r&15)<<n-4|1<<n-5)-33;return t===0?i:-i},El=e=>{let t=4095,n=2048,r=0,i=11,a=0,o=e;for(o<0&&(o=-o,r=128),o>t&&(o=t);(o&n)!==n&&i>=5;)n>>=1,i--;return a=o>>(i===4?1:i-4)&15,(r|i-4<<4|a)^85},Dl=e=>{let t=0,n=0,r=e^85;r&128&&(r&=-129,t=-1),n=((r&240)>>4)+4;let i=0;return i=n===4?r<<1|1:1<<n|(r&15)<<n-4|1<<n-5,t===0?i:-i},Ol=e=>{if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.metadataOnly!==void 0&&typeof e.metadataOnly!=`boolean`)throw TypeError(`options.metadataOnly, when defined, must be a boolean.`);if(e.verifyKeyPackets!==void 0&&typeof e.verifyKeyPackets!=`boolean`)throw TypeError(`options.verifyKeyPackets, when defined, must be a boolean.`);if(e.verifyKeyPackets&&e.metadataOnly)throw TypeError(`options.verifyKeyPackets and options.metadataOnly cannot be enabled together.`);if(e.skipLiveWait!==void 0&&typeof e.skipLiveWait!=`boolean`)throw TypeError(`options.skipLiveWait, when defined, must be a boolean.`)},kl=e=>{if(!Qe(e))throw TypeError(`timestamp must be a number.`)},Al=(e,t,n)=>n.verifyKeyPackets?t.then(async t=>{if(!t||t.type===`delta`)return t;let n=await e.determinePacketType(t);return n&&(t.type=n),t}):t,jl=class{constructor(e){if(!(e instanceof Kl))throw TypeError(`track must be an InputTrack.`);this._track=e}async getFirstPacket(e={}){if(Ol(e),this._track.input._disposed)throw new su;return Al(this._track,this._track._backing.getFirstPacket(e),e)}async getFirstKeyPacket(e={}){Ol(e);let t=await this.getFirstPacket(e);return t?t.type===`key`?t:this.getNextKeyPacket(t,e):null}async getPacket(e,t={}){if(kl(e),Ol(t),this._track.input._disposed)throw new su;return Al(this._track,this._track._backing.getPacket(e,t),t)}async getNextPacket(e,t={}){if(!(e instanceof I))throw TypeError(`packet must be an EncodedPacket.`);if(Ol(t),this._track.input._disposed)throw new su;return Al(this._track,this._track._backing.getNextPacket(e,t),t)}async getKeyPacket(e,t={}){if(kl(e),Ol(t),this._track.input._disposed)throw new su;if(!t.verifyKeyPackets)return this._track._backing.getKeyPacket(e,t);let n=await this._track._backing.getKeyPacket(e,t);return n&&(r(n.type===`key`),await this._track.determinePacketType(n)===`delta`?this.getKeyPacket(n.timestamp-1/await this._track.getTimeResolution(),t):n)}async getNextKeyPacket(e,t={}){if(!(e instanceof I))throw TypeError(`packet must be an EncodedPacket.`);if(Ol(t),this._track.input._disposed)throw new su;if(!t.verifyKeyPackets)return this._track._backing.getNextKeyPacket(e,t);let n=await this._track._backing.getNextKeyPacket(e,t);return n&&(r(n.type===`key`),await this._track.determinePacketType(n)===`delta`?this.getNextKeyPacket(n,t):n)}packets(e,t,n={}){if(e!==void 0&&!(e instanceof I))throw TypeError(`startPacket must be an EncodedPacket.`);if(e!==void 0&&e.isMetadataOnly&&!n?.metadataOnly)throw TypeError(`startPacket can only be metadata-only if options.metadataOnly is enabled.`);if(t!==void 0&&!(t instanceof I))throw TypeError(`endPacket must be an EncodedPacket.`);if(Ol(n),this._track.input._disposed)throw new su;let r=[],{promise:i,resolve:a}=T(),{promise:o,resolve:s}=T(),c=!1,l=!1,u=null,d=!1,f=[],p=()=>Math.max(2,f.length);(async()=>{let u=e??await this.getFirstPacket(n);for(;u&&!l&&!this._track.input._disposed&&!(t&&u.sequenceNumber>=t?.sequenceNumber);){if(r.length>p()){({promise:o,resolve:s}=T()),await o;continue}r.push(u),a(),{promise:i,resolve:a}=T(),u=await this.getNextPacket(u,n)}c=!0,a()})().catch(e=>{d||(u=e,d=!0,a())});let m=this._track;return{async next(){for(;;)if(m.input._disposed)throw new su;else if(l)return{value:void 0,done:!0};else if(d)throw u;else if(r.length>0){let e=r.shift(),t=performance.now();for(f.push(t);f.length>0&&t-f[0]>=1e3;)f.shift();return s(),{value:e,done:!1}}else if(c)return{value:void 0,done:!0};else await i},async return(){return l=!0,s(),a(),{value:void 0,done:!0}},async throw(e){throw e},[Symbol.asyncIterator](){return this}}}},Ml=class{constructor(e,t){this.onSample=e,this.onError=t}},Nl=class{mediaSamplesInRange(e=-1/0,t=1/0,n){kl(e),kl(t);let r=[],i=!1,a=null,{promise:o,resolve:s}=T(),{promise:c,resolve:l}=T(),u=!1,d=!1,f=!1,p=null,m=null,h=!1,g={...n,verifyKeyPackets:!0,metadataOnly:!1};(async()=>{p=await this._createDecoder(n=>{if(l(),n.timestamp>=t&&(d=!0),d){n.close();return}a&&(n.timestamp>e?(r.push(a),i=!0):a.close()),n.timestamp>=e&&(r.push(n),i=!0),a=i?null:n,r.length>0&&(s(),{promise:o,resolve:s}=T())},e=>{h||(m=e,h=!0,s())});let n=this._createPacketSink(),_=await n.getKeyPacket(e,g)??await n.getFirstKeyPacket(g),v=_,y=n.packets(_??void 0,void 0,g);for(await y.next();v&&!d&&!this._track.input._disposed;){let e=Pl(r.length);if(r.length+p.getDecodeQueueSize()>e){({promise:c,resolve:l}=T()),await c;continue}p.decode(v);let t=await y.next();if(t.done)break;v=t.value}await y.return(),!f&&!this._track.input._disposed&&await p.flush(),!i&&a&&r.push(a),u=!0,s()})().catch(e=>{h||(m=e,h=!0,s())}).finally(()=>{p?.close()});let _=this._track,v=()=>{a?.close();for(let e of r)e.close()};return{async next(){for(;;)if(_.input._disposed)throw f=!0,d=!0,v(),new su;else if(f)return{value:void 0,done:!0};else if(h)throw f=!0,d=!0,v(),m;else if(r.length>0){let e=r.shift();return l(),{value:e,done:!1}}else if(!u)await o;else return{value:void 0,done:!0}},async return(){return f=!0,d=!0,l(),s(),v(),{value:void 0,done:!0}},async throw(e){throw e},[Symbol.asyncIterator](){return this}}}mediaSamplesAtTimestamps(e,t){pe(e);let n=fe(e),i=[],a=[],{promise:o,resolve:s}=T(),{promise:c,resolve:l}=T(),u=!1,d=!1,f=null,p=null,m=!1,h=e=>{a.push(e),s(),{promise:o,resolve:s}=T()},g={...t,verifyKeyPackets:!0,metadataOnly:!1};(async()=>{f=await this._createDecoder(e=>{if(l(),d){e.close();return}let t=0;for(;i.length>0&&e.timestamp-i[0]>-1e-10;)t++,i.shift();if(t>0)for(let n=0;n<t;n++)h(n<t-1?e.clone():e);else e.close()},e=>{m||(p=e,m=!0,s())});let e=this._createPacketSink(),t=null,o=null,_=-1,v=async()=>{r(o),r(f);let t=o;for(f.decode(t);t.sequenceNumber<_;){let n=Pl(a.length);for(;a.length+f.getDecodeQueueSize()>n&&!d;)({promise:c,resolve:l}=T()),await c;if(d)break;let i=await e.getNextPacket(t,g);r(i),f.decode(i),t=i}_=-1},y=async()=>{r(f),await f.flush();for(let e=0;e<i.length;e++)h(null);i.length=0};for await(let r of n){if(kl(r),d||this._track.input._disposed)break;let n=await e.getPacket(r,g),a=n&&await e.getKeyPacket(r,g);if(!a){_!==-1&&(await v(),await y()),h(null),t=null;continue}t&&(a.sequenceNumber!==o.sequenceNumber||n.timestamp<t.timestamp)&&(await v(),await y()),i.push(n.timestamp),_=Math.max(n.sequenceNumber,_),t=n,o=a}!d&&!this._track.input._disposed&&(_!==-1&&await v(),await y()),u=!0,s()})().catch(e=>{m||(p=e,m=!0,s())}).finally(()=>{f?.close()});let _=this._track,v=()=>{for(let e of a)e?.close()};return{async next(){for(;;)if(_.input._disposed)throw d=!0,v(),new su;else if(d)return{value:void 0,done:!0};else if(m)throw d=!0,v(),p;else if(a.length>0){let e=a.shift();return r(e!==void 0),l(),{value:e,done:!1}}else if(!u)await o;else return{value:void 0,done:!0}},async return(){return d=!0,l(),s(),v(),{value:void 0,done:!0}},async throw(e){throw e},[Symbol.asyncIterator](){return this}}}},Pl=e=>e===0?40:8,Fl=class extends Ml{constructor(e,t,n,i,a,o){super(e,t),this.codec=n,this.decoderConfig=i,this.rotation=a,this.timeResolution=o,this.decoder=null,this.customDecoder=null,this.customDecoderCallSerializer=new Fe,this.customDecoderQueueSize=0,this.inputTimestamps=[],this.sampleQueue=[],this.currentPacketIndex=0,this.raslSkipped=!1,this.alphaDecoder=null,this.alphaHadKeyframe=!1,this.colorQueue=[],this.alphaQueue=[],this.merger=null,this.decodedAlphaChunkCount=0,this.alphaDecoderQueueSize=0,this.nullAlphaFrameQueue=[],this.currentAlphaPacketIndex=0,this.alphaRaslSkipped=!1,this.finalSamples=[],this.mergeAlphaPromises=[];let s=vl.find(e=>e.supports(n,i));if(s)this.customDecoder=new s,this.customDecoder.codec=n,this.customDecoder.config=i,this.customDecoder.onSample=e=>{if(!(e instanceof lc))throw TypeError(`The argument passed to onSample must be a VideoSample.`);this.finalizeAndEmitSample(e)},this.customDecoder.onError=e=>{t(e)},this.customDecoderCallSerializer.call(()=>this.customDecoder.init()).catch(e=>t(e));else{let e=e=>{if(this.alphaQueue.length>0){let t=this.alphaQueue.shift();r(t!==void 0),this.mergeAlpha(e,t)}else this.colorQueue.push(e)};if(Ve()){if(n===`avc`&&this.decoderConfig.description){let e=Zt(u(this.decoderConfig.description));if(e&&e.sequenceParameterSets.length>0){let t=$t(e.sequenceParameterSets[0]);t&&t.frameMbsOnlyFlag===0&&(this.decoderConfig={...this.decoderConfig,hardwareAcceleration:`prefer-software`})}}S(this.decoderConfig.colorSpace)||(this.decoderConfig={...this.decoderConfig,colorSpace:{primaries:this.decoderConfig.colorSpace?.primaries??`bt709`,matrix:this.decoderConfig.colorSpace?.matrix??`bt709`,transfer:this.decoderConfig.colorSpace?.transfer??`bt709`,fullRange:this.decoderConfig.colorSpace?.fullRange??!1}})}let t=Error(`Decoding error`).stack;this.decoder=new VideoDecoder({output:t=>{try{e(t)}catch(e){this.onError(e)}},error:e=>{e.stack=t,this.onError(e)}}),this.decoder.configure(this.decoderConfig)}}getDecodeQueueSize(){return this.customDecoder?this.customDecoderQueueSize:(r(this.decoder),Math.max(this.decoder.decodeQueueSize,this.alphaDecoder?.decodeQueueSize??0))}decode(e){if(this.codec===`hevc`&&this.currentPacketIndex>0&&!this.raslSkipped){if(this.hasHevcRaslPicture(e.data))return;this.raslSkipped=!0}if(this.customDecoder)this.customDecoderQueueSize++,this.customDecoderCallSerializer.call(()=>this.customDecoder.decode(e)).catch(e=>this.onError(e)).finally(()=>this.customDecoderQueueSize--);else{if(r(this.decoder),Le()||ce(this.inputTimestamps,e.timestamp,e=>e),Ve()&&this.currentPacketIndex===0){if(this.codec===`avc`){let t=[],n=!1;for(let r of Ht(e.data,this.decoderConfig)){let i=Ut(e.data[r.offset]);if(n||=i>=1&&i<=5,i===j.AUD){if(n)break;t.length=0}i>=20&&i<=31||t.push(e.data.subarray(r.offset,r.offset+r.length))}e=new I(Jt(t,this.decoderConfig),e.type,e.timestamp,e.duration)}else if(this.codec===`hevc`){let t=_n(e.data,this.decoderConfig);t&&(e=new I(t,e.type,e.timestamp,e.duration))}}this.decoder.decode(e.toEncodedVideoChunk()),this.decodeAlphaData(e)}this.currentPacketIndex++}decodeAlphaData(e){if(!e.sideData.alpha){this.pushNullAlphaFrame();return}if(this.merger||=new Ll,!this.alphaDecoder){let e=e=>{if(this.colorQueue.length>0){let t=this.colorQueue.shift();r(t!==void 0),this.mergeAlpha(t,e)}else this.alphaQueue.push(e);for(this.decodedAlphaChunkCount++;this.nullAlphaFrameQueue.length>0&&this.nullAlphaFrameQueue[0]===this.decodedAlphaChunkCount;)if(this.nullAlphaFrameQueue.shift(),this.colorQueue.length>0){let e=this.colorQueue.shift();r(e!==void 0),this.mergeAlpha(e,null)}else this.alphaQueue.push(null);this.alphaDecoderQueueSize--},t=Error(`Decoding error`).stack;this.alphaDecoder=new VideoDecoder({output:t=>{try{e(t)}catch(e){this.onError(e)}},error:e=>{e.stack=t,this.onError(e)}}),this.alphaDecoder.configure(this.decoderConfig)}let t=kn(this.codec,this.decoderConfig,e.sideData.alpha);if(this.alphaHadKeyframe||=t===`key`,this.alphaHadKeyframe){if(this.codec===`hevc`&&this.currentAlphaPacketIndex>0&&!this.alphaRaslSkipped){if(this.hasHevcRaslPicture(e.sideData.alpha)){this.pushNullAlphaFrame();return}this.alphaRaslSkipped=!0}this.currentAlphaPacketIndex++,this.alphaDecoder.decode(e.alphaToEncodedVideoChunk(t??e.type)),this.alphaDecoderQueueSize++}else this.pushNullAlphaFrame()}pushNullAlphaFrame(){this.alphaDecoderQueueSize===0?this.alphaQueue.push(null):this.nullAlphaFrameQueue.push(this.decodedAlphaChunkCount+this.alphaDecoderQueueSize)}hasHevcRaslPicture(e){for(let t of nn(e,this.decoderConfig)){let n=rn(e[t.offset]);if(n===M.RASL_N||n===M.RASL_R)return!0}return!1}sampleHandler(e){if(Le()){if(this.sampleQueue.length>0&&e.timestamp>=a(this.sampleQueue).timestamp){for(let e of this.sampleQueue)this.finalizeAndEmitSample(e);this.sampleQueue.length=0}ce(this.sampleQueue,e,e=>e.timestamp)}else{let t=this.inputTimestamps.shift();r(t!==void 0),e.setTimestamp(t),this.finalizeAndEmitSample(e)}}finalizeAndEmitSample(e){e.setTimestamp(Math.round(e.timestamp*this.timeResolution)/this.timeResolution),e.setDuration(Math.round(e.duration*this.timeResolution)/this.timeResolution),e.setRotation(this.rotation),this.onSample(e)}async mergeAlpha(e,t){let n=T();this.mergeAlphaPromises.push(n.promise);let i={sample:null};this.finalSamples.push(i);try{for(t?(r(this.merger),i.sample=new lc(await this.merger.merge(e,t))):i.sample=new lc(e);this.finalSamples.length>0&&this.finalSamples[0].sample!==null;){let e=this.finalSamples.shift();this.sampleHandler(e.sample)}}catch(e){le(this.finalSamples,i),this.onError(e)}finally{le(this.mergeAlphaPromises,n.promise),n.resolve()}}async flush(){if(this.customDecoder?await this.customDecoderCallSerializer.call(()=>this.customDecoder.flush()):(r(this.decoder),await Promise.all([this.decoder.flush(),this.alphaDecoder?.flush()]),await Promise.all(this.mergeAlphaPromises),this.colorQueue.forEach(e=>e.close()),this.colorQueue.length=0,this.alphaQueue.forEach(e=>e?.close()),this.alphaQueue.length=0,this.alphaHadKeyframe=!1,this.decodedAlphaChunkCount=0,this.alphaDecoderQueueSize=0,this.nullAlphaFrameQueue.length=0,this.currentAlphaPacketIndex=0,this.alphaRaslSkipped=!1),Le()){for(let e of this.sampleQueue)this.finalizeAndEmitSample(e);this.sampleQueue.length=0}this.currentPacketIndex=0,this.raslSkipped=!1}close(){this.customDecoder?this.customDecoderCallSerializer.call(()=>this.customDecoder.close()):(r(this.decoder),this.decoder.state!==`closed`&&this.decoder.close(),this.alphaDecoder&&this.alphaDecoder.state!==`closed`&&this.alphaDecoder.close(),this.colorQueue.forEach(e=>e.close()),this.colorQueue.length=0,this.alphaQueue.forEach(e=>e?.close()),this.alphaQueue.length=0,this.merger?.close());for(let e of this.sampleQueue)e.close();this.sampleQueue.length=0}},Il=null,Ll=class{constructor(){this.workers=[],this.nextWorkerIndex=0,this.pendingRequests=new Map,this.nextRequestId=0}merge(e,t){if(this.workers.length===0){if(!Il){let e=new Blob([`(${Rl.toString()})()`],{type:`application/javascript`});Il=URL.createObjectURL(e)}let e=D(navigator.hardwareConcurrency,1,4);for(let t=0;t<e;t++){let e=new Worker(Il);e.addEventListener(`message`,e=>{let t=e.data,n=this.pendingRequests.get(t.id);n&&(this.pendingRequests.delete(t.id),`error`in t?n.reject(Error(t.error)):n.resolve(t.frame))}),e.addEventListener(`error`,e=>{let t=Error(e.message||`Color/alpha merge worker error.`);for(let e of this.pendingRequests.values())e.reject(t);this.pendingRequests.clear()}),this.workers.push(e)}}let n=this.nextRequestId++,r=T();this.pendingRequests.set(n,r);let i=this.workers[this.nextWorkerIndex];return this.nextWorkerIndex=(this.nextWorkerIndex+1)%this.workers.length,i.postMessage({id:n,color:e,alpha:t},{transfer:[e,t]}),r.promise}close(){for(let e of this.workers)e.terminate();this.workers.length=0;let e=Error(`Color/alpha merger closed.`);for(let t of this.pendingRequests.values())t.reject(e);this.pendingRequests.clear()}},Rl=()=>{let e=null,t=null,n=Promise.resolve();self.addEventListener(`message`,e=>{let{id:t,color:i,alpha:a}=e.data;n=n.then(async()=>{try{let e=await r(i,a);self.postMessage({id:t,frame:e},{transfer:[e]})}catch(e){self.postMessage({id:t,error:e.message})}finally{i.close(),a.close()}})});let r=async(e,t)=>{let n=e.format,r=t.format;if(!n||!r)throw Error(`CPU color/alpha merging requires a known VideoFrame format.`);let s=n.includes(`P10`),c=n.includes(`P12`),l=r.includes(`P10`),u=r.includes(`P12`);if(l!==s||u!==c)throw Error(`CPU color/alpha merging requires the alpha frame to have the same bit depth as the color frame (color: '${n}', alpha: '${r}').`);if(n===`RGBX`||n===`RGBA`||n===`BGRX`||n===`BGRA`)return await i(e,t,n);if(n===`I420`||n===`I420P10`||n===`I420P12`||n===`I422`||n===`I422P10`||n===`I422P12`||n===`I444`||n===`I444P10`||n===`I444P12`)return await a(e,t,n);if(n===`NV12`)return await o(e,t);throw Error(`CPU color/alpha merging does not support format '${n}'.`)},i=async(e,t,n)=>{let r=e.visibleRect?.width??e.codedWidth,i=e.visibleRect?.height??e.codedHeight,a=r*i,o=new Uint8Array(a*4);await e.copyTo(o);let c=await s(t,r,i,1);for(let e=0,t=3;e<a;e++,t+=4)o[t]=c[e];let l={format:n===`RGBX`||n===`RGBA`?`RGBA`:`BGRA`,codedWidth:r,codedHeight:i,timestamp:e.timestamp,duration:e.duration??void 0,transfer:[o.buffer]};return new VideoFrame(o,l)},a=async(e,t,n)=>{let r=e.visibleRect?.width??e.codedWidth,i=e.visibleRect?.height??e.codedHeight,a=n.includes(`P10`),o=n.includes(`P12`),c=a||o?2:1,l,u;n.startsWith(`I420`)?(l=Math.ceil(r/2),u=Math.ceil(i/2)):n.startsWith(`I422`)?(l=Math.ceil(r/2),u=i):(l=r,u=i);let d=r*i,f=l*u,p=d*c,m=f*c,h=d*c,g=p+2*m+h,_=new Uint8Array(g);await e.copyTo(_);let v=await s(t,r,i,c),y=p+2*m;_.set(v,y);let b={format:n.slice(0,4)+`A`+n.slice(4),codedWidth:r,codedHeight:i,timestamp:e.timestamp,duration:e.duration??void 0,transfer:[_.buffer]};return new VideoFrame(_,b)},o=async(e,n)=>{let r=e.visibleRect?.width??e.codedWidth,i=e.visibleRect?.height??e.codedHeight,a=r*i,o=Math.ceil(r/2)*Math.ceil(i/2),c=e.allocationSize();(!t||t.byteLength!==c)&&(t=new Uint8Array(c)),await e.copyTo(t);let l=new Uint8Array(a+2*o+a);l.set(t.subarray(0,a),0);let u=a,d=a+o,f=a;for(let e=0;e<o;e++)l[u+e]=t[f+e*2],l[d+e]=t[f+e*2+1];let p=await s(n,r,i,1);l.set(p,a+2*o);let m={format:`I420A`,codedWidth:r,codedHeight:i,timestamp:e.timestamp,duration:e.duration??void 0,transfer:[l.buffer]};return new VideoFrame(l,m)},s=async(t,n,r,i)=>{let a=t.allocationSize();(!e||e.byteLength!==a)&&(e=new Uint8Array(a)),await t.copyTo(e);let o=t.format;if(o===`RGBA`||o===`BGRA`||o===`RGBX`||o===`BGRX`){let t=o===`RGBA`||o===`RGBX`?0:2,i=n*r;for(let n=0;n<i;n++)e[n]=e[n*4+t];return e.subarray(0,i)}return e.subarray(0,n*r*i)}},zl=e=>{if(!e||typeof e!=`object`)throw TypeError(`decoderOptions must be an object.`);if(e.hardwareAcceleration!==void 0&&![`no-preference`,`prefer-hardware`,`prefer-software`].includes(e.hardwareAcceleration))throw TypeError(`decoderOptions.hardwareAcceleration, when provided, must be 'no-preference', 'prefer-hardware' or 'prefer-software'.`);if(e.optimizeForLatency!==void 0&&typeof e.optimizeForLatency!=`boolean`)throw TypeError(`decoderOptions.optimizeForLatency, when provided, must be a boolean.`)},Bl=class extends Nl{constructor(e,t={}){if(!(e instanceof Jl))throw TypeError(`videoTrack must be an InputVideoTrack.`);zl(t),super(),this._track=e,this._decoderOptions=t}async _createDecoder(e,t){if(!await this._track.canDecode())throw Error(typeof VideoDecoder>`u`?He(`VideoDecoder`):`This video track cannot be decoded in this environment. Make sure to check decodability before using a track.`);let n=await this._track.getCodec(),i=await this._track.getRotation(),a=await this._track.getDecoderConfig(),o=await this._track.getTimeResolution();return r(n&&a),a={...a,hardwareAcceleration:this._decoderOptions.hardwareAcceleration,optimizeForLatency:this._decoderOptions.optimizeForLatency},new Fl(e,t,n,a,i,o)}_createPacketSink(){return new jl(this._track)}async getSample(e,t={}){kl(e);for await(let n of this.mediaSamplesAtTimestamps([e],t))return n;throw Error(`Internal error: Iterator returned nothing.`)}samples(e,t,n={}){return this.mediaSamplesInRange(e,t,n)}samplesAtTimestamps(e,t={}){return this.mediaSamplesAtTimestamps(e,t)}},Vl=class{constructor(e,t={}){if(this._rotation=0,this._initPromise=null,this._nextCanvasIndex=0,!(e instanceof Jl))throw TypeError(`videoTrack must be an InputVideoTrack.`);if(t&&typeof t!=`object`)throw TypeError(`options must be an object.`);if(t.alpha!==void 0&&typeof t.alpha!=`boolean`)throw TypeError(`options.alpha, when provided, must be a boolean.`);if(t.width!==void 0&&(!Number.isInteger(t.width)||t.width<=0))throw TypeError(`options.width, when defined, must be a positive integer.`);if(t.height!==void 0&&(!Number.isInteger(t.height)||t.height<=0))throw TypeError(`options.height, when defined, must be a positive integer.`);if(t.fit!==void 0&&![`fill`,`contain`,`cover`].includes(t.fit))throw TypeError(`options.fit, when provided, must be one of "fill", "contain", or "cover".`);if(t.width!==void 0&&t.height!==void 0&&t.fit===void 0)throw TypeError(`When both options.width and options.height are provided, options.fit must also be provided.`);if(t.rotation!==void 0&&![0,90,180,270].includes(t.rotation))throw TypeError(`options.rotation, when provided, must be 0, 90, 180 or 270.`);if(t.crop!==void 0&&yc(t.crop,`options.`),t.poolSize!==void 0&&(typeof t.poolSize!=`number`||!Number.isInteger(t.poolSize)||t.poolSize<0))throw TypeError(`poolSize must be a non-negative integer.`);t.decoderOptions!==void 0&&zl(t.decoderOptions),this._videoTrack=e,this._alpha=t.alpha??!1,this._options=t,this._fit=t.fit??`fill`,this._videoSampleSink=new Bl(e,t.decoderOptions),this._canvasPool=Array.from({length:t.poolSize??0},()=>null)}_ensureInit(){return this._initPromise??=(async()=>{let e=this._options,t=this._videoTrack,n=e.rotation??await t.getRotation(),r=await t.getSquarePixelWidth(),i=await t.getSquarePixelHeight(),[a,o]=n%180==0?[r,i]:[i,r],s=e.crop;s&&=vc(s,a,o);let[c,l]=s?[s.width,s.height]:[a,o],u=c/l;e.width!==void 0&&e.height===void 0?(c=e.width,l=Math.round(c/u)):e.width===void 0&&e.height!==void 0?(l=e.height,c=Math.round(l*u)):e.width!==void 0&&e.height!==void 0&&(c=e.width,l=e.height),this._width=c,this._height=l,this._rotation=n,this._crop=s})()}_videoSampleToWrappedCanvas(e){let t=this._width,n=this._height,i=this._canvasPool[this._nextCanvasIndex],a=!1;i||(typeof document<`u`?(i=document.createElement(`canvas`),i.width=t,i.height=n):i=new OffscreenCanvas(t,n),this._canvasPool.length>0&&(this._canvasPool[this._nextCanvasIndex]=i),a=!0),this._canvasPool.length>0&&(this._nextCanvasIndex=(this._nextCanvasIndex+1)%this._canvasPool.length);let o=i.getContext(`2d`,{alpha:this._alpha||ze()});r(o),e._drawWithFitAndMipmapping(i,o,{fit:this._fit,rotation:this._rotation,crop:this._crop,targetIsFresh:a,fillBlack:!this._alpha&&ze()});let s={canvas:i,timestamp:e.timestamp,duration:e.duration};return e.close(),s}async getCanvas(e,t){kl(e),await this._ensureInit();let n=await this._videoSampleSink.getSample(e,t);return n&&this._videoSampleToWrappedCanvas(n)}async*canvases(e,t,n){await this._ensureInit(),yield*ye(this._videoSampleSink.samples(e,t,n),e=>this._videoSampleToWrappedCanvas(e))}async*canvasesAtTimestamps(e,t){await this._ensureInit(),yield*ye(this._videoSampleSink.samplesAtTimestamps(e,t),e=>e&&this._videoSampleToWrappedCanvas(e))}},Hl=class extends Ml{constructor(e,t,n,r){super(e,t),this.decoder=null,this.customDecoder=null,this.customDecoderCallSerializer=new Fe,this.customDecoderQueueSize=0,this.currentTimestamp=null,this.expectedFirstTimestamp=null,this.timestampOffset=0;let i=t=>{let n=t.timestamp;this.expectedFirstTimestamp!==null&&this.currentTimestamp===null&&(this.timestampOffset=this.expectedFirstTimestamp-n),n+=this.timestampOffset,(this.currentTimestamp===null||Math.abs(n-this.currentTimestamp)>=t.duration)&&(this.currentTimestamp=n);let i=this.currentTimestamp;if(this.currentTimestamp+=t.duration,t.numberOfFrames===0){t.close();return}let a=r.sampleRate;t.setTimestamp(Math.round(i*a)/a),e(t)},a=yl.find(e=>e.supports(n,r));if(a)this.customDecoder=new a,this.customDecoder.codec=n,this.customDecoder.config=r,this.customDecoder.onSample=e=>{if(!(e instanceof kc))throw TypeError(`The argument passed to onSample must be an AudioSample.`);i(e)},this.customDecoder.onError=e=>{t(e)},this.customDecoderCallSerializer.call(()=>this.customDecoder.init()).catch(e=>t(e));else{let e=Error(`Decoding error`).stack;this.decoder=new AudioDecoder({output:e=>{try{i(new kc(e))}catch(e){this.onError(e)}},error:t=>{t.stack=e,this.onError(t)}}),this.decoder.configure(r)}}getDecodeQueueSize(){return this.customDecoder?this.customDecoderQueueSize:(r(this.decoder),this.decoder.decodeQueueSize)}decode(e){this.customDecoder?(this.customDecoderQueueSize++,this.customDecoderCallSerializer.call(()=>this.customDecoder.decode(e)).catch(e=>this.onError(e)).finally(()=>this.customDecoderQueueSize--)):(r(this.decoder),this.expectedFirstTimestamp??=e.timestamp,this.decoder.decode(e.toEncodedAudioChunk()))}async flush(){this.customDecoder?await this.customDecoderCallSerializer.call(()=>this.customDecoder.flush()):(r(this.decoder),await this.decoder.flush()),this.currentTimestamp=null,this.expectedFirstTimestamp=null,this.timestampOffset=0}close(){this.customDecoder?this.customDecoderCallSerializer.call(()=>this.customDecoder.close()):(r(this.decoder),this.decoder.state!==`closed`&&this.decoder.close())}},Ul=class extends Ml{constructor(e,t,n){super(e,t),this.decoderConfig=n,this.currentTimestamp=null,r(P.includes(n.codec)),this.codec=n.codec;let{dataType:i,sampleSize:a,littleEndian:o}=Ar(this.codec);switch(this.inputSampleSize=a,a){case 1:i===`unsigned`?this.readInputValue=(e,t)=>e.getUint8(t)-128:i===`signed`?this.readInputValue=(e,t)=>e.getInt8(t):i===`ulaw`?this.readInputValue=(e,t)=>Tl(e.getUint8(t)):i===`alaw`?this.readInputValue=(e,t)=>Dl(e.getUint8(t)):r(!1);break;case 2:i===`unsigned`?this.readInputValue=(e,t)=>e.getUint16(t,o)-2**15:i===`signed`?this.readInputValue=(e,t)=>e.getInt16(t,o):r(!1);break;case 3:i===`unsigned`?this.readInputValue=(e,t)=>me(e,t,o)-2**23:i===`signed`?this.readInputValue=(e,t)=>he(e,t,o):r(!1);break;case 4:i===`unsigned`?this.readInputValue=(e,t)=>e.getUint32(t,o)-2**31:i===`signed`?this.readInputValue=(e,t)=>e.getInt32(t,o):i===`float`?this.readInputValue=(e,t)=>e.getFloat32(t,o):r(!1);break;case 8:i===`float`?this.readInputValue=(e,t)=>e.getFloat64(t,o):r(!1);break;default:E(a),r(!1)}switch(a){case 1:i===`ulaw`||i===`alaw`?(this.outputSampleSize=2,this.outputFormat=`s16`,this.writeOutputValue=(e,t,n)=>e.setInt16(t,n,!0)):(this.outputSampleSize=1,this.outputFormat=`u8`,this.writeOutputValue=(e,t,n)=>e.setUint8(t,n+128));break;case 2:this.outputSampleSize=2,this.outputFormat=`s16`,this.writeOutputValue=(e,t,n)=>e.setInt16(t,n,!0);break;case 3:this.outputSampleSize=4,this.outputFormat=`s32`,this.writeOutputValue=(e,t,n)=>e.setInt32(t,n<<8,!0);break;case 4:this.outputSampleSize=4,i===`float`?(this.outputFormat=`f32`,this.writeOutputValue=(e,t,n)=>e.setFloat32(t,n,!0)):(this.outputFormat=`s32`,this.writeOutputValue=(e,t,n)=>e.setInt32(t,n,!0));break;case 8:this.outputSampleSize=4,this.outputFormat=`f32`,this.writeOutputValue=(e,t,n)=>e.setFloat32(t,n,!0);break;default:E(a),r(!1)}}getDecodeQueueSize(){return 0}decode(e){let t=d(e.data),n=e.byteLength/this.decoderConfig.numberOfChannels/this.inputSampleSize,r=n*this.decoderConfig.numberOfChannels*this.outputSampleSize,i=new ArrayBuffer(r),a=new DataView(i);for(let e=0;e<n*this.decoderConfig.numberOfChannels;e++){let n=e*this.inputSampleSize,r=e*this.outputSampleSize,i=this.readInputValue(t,n);this.writeOutputValue(a,r,i)}let o=n/this.decoderConfig.sampleRate;(this.currentTimestamp===null||Math.abs(e.timestamp-this.currentTimestamp)>=o)&&(this.currentTimestamp=e.timestamp);let s=this.currentTimestamp;this.currentTimestamp+=o;let c=new kc({format:this.outputFormat,data:i,numberOfChannels:this.decoderConfig.numberOfChannels,sampleRate:this.decoderConfig.sampleRate,numberOfFrames:n,timestamp:s});this.onSample(c)}async flush(){}close(){}},Wl=class extends Nl{constructor(e){if(!(e instanceof Yl))throw TypeError(`audioTrack must be an InputAudioTrack.`);super(),this._track=e}async _createDecoder(e,t){if(!await this._track.canDecode())throw Error(typeof AudioDecoder>`u`?He(`AudioDecoder`):`This audio track cannot be decoded in this environment. Make sure to check decodability before using a track.`);let n=await this._track.getCodec(),i=await this._track.getDecoderConfig();return r(n&&i),P.includes(i.codec)?new Ul(e,t,i):new Hl(e,t,n,i)}_createPacketSink(){return new jl(this._track)}async getSample(e,t={}){kl(e);for await(let n of this.mediaSamplesAtTimestamps([e],t))return n;throw Error(`Internal error: Iterator returned nothing.`)}samples(e,t,n={}){return this.mediaSamplesInRange(e,t,n)}samplesAtTimestamps(e,t={}){return this.mediaSamplesAtTimestamps(e,t)}},Gl=class{constructor(e){if(!(e instanceof Yl))throw TypeError(`audioTrack must be an InputAudioTrack.`);this._audioSampleSink=new Wl(e)}_audioSampleToWrappedArrayBuffer(e){let t={buffer:e.toAudioBuffer(),timestamp:e.timestamp,duration:e.duration};return e.close(),t}async getBuffer(e,t){kl(e);let n=await this._audioSampleSink.getSample(e,t);return n&&this._audioSampleToWrappedArrayBuffer(n)}buffers(e,t,n){return ye(this._audioSampleSink.samples(e,t,n),e=>this._audioSampleToWrappedArrayBuffer(e))}buffersAtTimestamps(e,t){return ye(this._audioSampleSink.samplesAtTimestamps(e,t),e=>e&&this._audioSampleToWrappedArrayBuffer(e))}},Kl=class e{constructor(e,t){this.input=e,this._backing=t}isVideoTrack(){return this instanceof Jl}isAudioTrack(){return this instanceof Yl}get id(){return this._backing.getId()}get number(){return this._backing.getNumber()}async getInternalCodecId(){return this._backing.getInternalCodecId()}get internalCodecId(){return B(this._backing.getInternalCodecId(),`internalCodecId`,`getInternalCodecId`)}async getLanguageCode(){return this._backing.getLanguageCode()}get languageCode(){return B(this._backing.getLanguageCode(),`languageCode`,`getLanguageCode`)}async getName(){return this._backing.getName()}get name(){return B(this._backing.getName(),`name`,`getName`)}async getTimeResolution(){return this._backing.getTimeResolution()}get timeResolution(){return B(this._backing.getTimeResolution(),`timeResolution`,`getTimeResolution`)}async isRelativeToUnixEpoch(){return this._backing.isRelativeToUnixEpoch()}async getUnixTimeForTimestamp(e){return this._backing.getUnixTimeForTimestamp(e)}async hasUnixTimeMapping(){return await this._backing.getUnixTimeForTimestamp(await this.getFirstTimestamp())!==null}async getDisposition(){return this._backing.getDisposition()}get disposition(){return B(this._backing.getDisposition(),`disposition`,`getDisposition`)}async getBitrate(){return this._backing.getBitrate()}async getAverageBitrate(){return this._backing.getAverageBitrate()}async getFirstTimestamp(){return(await this._backing.getFirstPacket({metadataOnly:!0}))?.timestamp??0}async computeDuration(e){let t=await this._backing.getPacket(1/0,{metadataOnly:!0,...e});return Ce((t?.timestamp??0)+(t?.duration??0),await this.getTimeResolution())}async getDurationFromMetadata(e={}){return this._backing.getDurationFromMetadata(e)}async computePacketStats(e=1/0,t){let n=new jl(this),r=1/0,i=-1/0,a=0,o=0;for await(let s of n.packets(void 0,void 0,{metadataOnly:!0,...t})){if(a>=e&&s.timestamp>=i)break;r=Math.min(r,s.timestamp),i=Math.max(i,s.timestamp+s.duration),a++,o+=s.byteLength}return{packetCount:a,averagePacketRate:a?Number((a/(i-r)).toPrecision(16)):0,averageBitrate:a?Number((8*o/(i-r)).toPrecision(16)):0}}async isLive(){return await this._backing.getLiveRefreshInterval()!==null}async getLiveRefreshInterval(){return this._backing.getLiveRefreshInterval()}canBePairedWith(t){if(!(t instanceof e))throw TypeError(`other must be an InputTrack.`);return this.input!==t.input||this===t?!1:(this._backing.getPairingMask()&t._backing.getPairingMask())!==0n}async getPairableTracks(e){return this.input.getTracks(eu({filter:e=>e.canBePairedWith(this)},e))}async getPairableVideoTracks(e){return this.input.getVideoTracks(eu({filter:e=>e.canBePairedWith(this)},e))}async getPairableAudioTracks(e){return this.input.getAudioTracks(eu({filter:e=>e.canBePairedWith(this)},e))}async getPrimaryPairableVideoTrack(e){return this.input.getPrimaryVideoTrack(eu({filter:e=>e.canBePairedWith(this)},e))}async getPrimaryPairableAudioTrack(e){return this.input.getPrimaryAudioTrack(eu({filter:e=>e.canBePairedWith(this)},e))}async hasPairableTrack(e){e&&=ql(e);let t=await this.input.getTracks();for(let n of t)if(this.canBePairedWith(n)&&(!e||await e(n)))return!0;return!1}hasPairableVideoTrack(e){return e&&=ql(e),this.hasPairableTrack(async t=>t.isVideoTrack()&&(!e||await e(t)))}hasPairableAudioTrack(e){return e&&=ql(e),this.hasPairableTrack(async t=>t.isAudioTrack()&&(!e||await e(t)))}},B=(e,t,n)=>{if(O(e))throw Error(`'${t}' is deprecated and not available synchronously for this track. Use the preferred '${n}()' instead.`);return e},ql=e=>{if(e!==void 0&&typeof e!=`function`)throw TypeError(`predicate, when provided, must be a function.`);return e?t=>{let n=e=>{if(typeof e!=`boolean`)throw TypeError(`predicate must return or resolve to a boolean value.`);return e},r=e(t);return O(r)?r.then(n):n(r)}:void 0},Jl=class extends Kl{constructor(e,t){super(e,t),this._pixelAspectRatioCache=null,this._backing=t}get type(){return`video`}async getCodec(){return this._backing.getCodec()}get codec(){return B(this._backing.getCodec(),`codec`,`getCodec`)}async hasOnlyKeyPackets(){return await this._backing.getHasOnlyKeyPackets?.()??await this._backing.getCodec()===`prores`}async getCodedWidth(){return this._backing.getCodedWidth()}get codedWidth(){return B(this._backing.getCodedWidth(),`codedWidth`,`getCodedWidth`)}async getCodedHeight(){return this._backing.getCodedHeight()}get codedHeight(){return B(this._backing.getCodedHeight(),`codedHeight`,`getCodedHeight`)}async getRotation(){return this._backing.getRotation()}get rotation(){return B(this._backing.getRotation(),`rotation`,`getRotation`)}async getSquarePixelWidth(){return this._backing.getSquarePixelWidth()}get squarePixelWidth(){return B(this._backing.getSquarePixelWidth(),`squarePixelWidth`,`getSquarePixelWidth`)}async getSquarePixelHeight(){return this._backing.getSquarePixelHeight()}get squarePixelHeight(){return B(this._backing.getSquarePixelHeight(),`squarePixelHeight`,`getSquarePixelHeight`)}async getPixelAspectRatio(){return this._pixelAspectRatioCache??=rt({num:await this.getSquarePixelWidth()*await this.getCodedHeight(),den:await this.getSquarePixelHeight()*await this.getCodedWidth()})}get pixelAspectRatio(){return this._pixelAspectRatioCache??=rt({num:B(this._backing.getSquarePixelWidth(),`pixelAspectRatio`,`getPixelAspectRatio`)*B(this._backing.getCodedHeight(),`pixelAspectRatio`,`getPixelAspectRatio`),den:B(this._backing.getSquarePixelHeight(),`pixelAspectRatio`,`getPixelAspectRatio`)*B(this._backing.getCodedWidth(),`pixelAspectRatio`,`getPixelAspectRatio`)})}async getDisplayWidth(){return await this._backing.getMetadataDisplayWidth?.()??(await this.getRotation()%180==0?this.getSquarePixelWidth():this.getSquarePixelHeight())}get displayWidth(){let e=this._backing.getMetadataDisplayWidth?.();if(e!==void 0){let t=B(e,`displayWidth`,`getDisplayWidth`);if(t!==null)return t}return B(B(this._backing.getRotation(),`displayWidth`,`getDisplayWidth`)%180==0?this._backing.getSquarePixelWidth():this._backing.getSquarePixelHeight(),`displayWidth`,`getDisplayWidth`)}async getDisplayHeight(){return await this._backing.getMetadataDisplayHeight?.()??(await this.getRotation()%180==0?this.getSquarePixelHeight():this.getSquarePixelWidth())}get displayHeight(){let e=this._backing.getMetadataDisplayHeight?.();if(e!==void 0){let t=B(e,`displayHeight`,`getDisplayHeight`);if(t!==null)return t}return B(B(this._backing.getRotation(),`displayHeight`,`getDisplayHeight`)%180==0?this._backing.getSquarePixelHeight():this._backing.getSquarePixelWidth(),`displayHeight`,`getDisplayHeight`)}async getColorSpace(){return this._backing.getColorSpace()}async hasHighDynamicRange(){let e=await this._backing.getColorSpace();return e.primaries===`bt2020`||e.primaries===`smpte432`||e.transfer===`pq`||e.transfer===`hlg`||e.matrix===`bt2020-ncl`}async canBeTransparent(){return this._backing.canBeTransparent()}async getDecoderConfig(){return this._backing.getDecoderConfig()}async getCodecParameterString(){return await this._backing.getMetadataCodecParameterString?.()??(await this._backing.getDecoderConfig())?.codec??null}async canDecode(){try{let e=await this._backing.getDecoderConfig();if(!e)return!1;let t=await this._backing.getCodec();return r(t!==null),vl.some(n=>n.supports(t,e))?!0:typeof VideoDecoder>`u`?!1:(await VideoDecoder.isConfigSupported(e)).supported===!0}catch(e){return k._error(`Error during decodability check:`,e),!1}}async determinePacketType(e){if(!(e instanceof I))throw TypeError(`packet must be an EncodedPacket.`);if(e.isMetadataOnly)throw TypeError(`packet must not be metadata-only to determine its type.`);let t=await this.getCodec();if(t===null)return null;let n=await this.getDecoderConfig();return r(n),kn(t,n,e.data)}async computeFrameRateMetrics(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.targetPacketCount!==void 0&&(!Qe(e.targetPacketCount)||e.targetPacketCount<0))throw TypeError(`options.targetPacketCount must be a non-negative number.`);let t=await this.getTimeResolution(),n=e.targetPacketCount??256,r=new jl(this),i=[],a=-1/0,o=0;for await(let e of r.packets(void 0,void 0,{metadataOnly:!0})){if(i.length>=n&&e.timestamp>=a)break;i.push(e.timestamp),a=Math.max(a,e.timestamp),o++}let s=new Float64Array(i.length);for(let e=0;e<i.length;e++)s[e]=Math.round(i[e]*t);s.sort();let c=1;for(let e=1;e<s.length;e++)s[e]!==s[c-1]&&(s[c++]=s[e]);if(c<2)return{underlyingFrameRate:null,bestGuessFrameRate:t,minFrameRate:t,maxFrameRate:t,averageFrameRate:t,medianFrameRate:t,frameRateIsConstant:!0,probedPacketCount:o};let l=s.subarray(0,c),u=nu(l,t),d=u??t,f=u===null?null:t/u,p=new Map,m=1/0,h=-1/0,g=0;for(let e=1;e<c;e++){let t=l[e]-l[e-1],n=f===null?t:Math.max(1,Math.round(t/f));p.set(n,(p.get(n)??0)+1),m=Math.min(m,n),h=Math.max(h,n),g+=n}let _=c-1,v=[...p.keys()].sort((e,t)=>e-t),y=_-1>>1,b=_>>1,x=0,S=0,C=0;for(let e of v)if(C+=p.get(e),x===0&&C>y&&(x=e),C>b){S=e;break}let ee=(d/x+d/S)/2;return{underlyingFrameRate:u,bestGuessFrameRate:u===null?iu(ee):u,minFrameRate:d/h,maxFrameRate:d/m,averageFrameRate:d*_/g,medianFrameRate:ee,frameRateIsConstant:u!==null&&m===1&&h===1,probedPacketCount:o}}},Yl=class extends Kl{constructor(e,t){super(e,t),this._backing=t}get type(){return`audio`}async getCodec(){return this._backing.getCodec()}get codec(){return B(this._backing.getCodec(),`codec`,`getCodec`)}async hasOnlyKeyPackets(){return await this._backing.getHasOnlyKeyPackets?.()??!0}async getNumberOfChannels(){return this._backing.getNumberOfChannels()}get numberOfChannels(){return B(this._backing.getNumberOfChannels(),`numberOfChannels`,`getNumberOfChannels`)}async getSampleRate(){return this._backing.getSampleRate()}get sampleRate(){return B(this._backing.getSampleRate(),`sampleRate`,`getSampleRate`)}async getDecoderConfig(){return this._backing.getDecoderConfig()}async getCodecParameterString(){return await this._backing.getMetadataCodecParameterString?.()??(await this._backing.getDecoderConfig())?.codec??null}async canDecode(){try{let e=await this._backing.getDecoderConfig();if(!e)return!1;let t=await this._backing.getCodec();return r(t!==null),yl.some(n=>n.supports(t,e))||e.codec.startsWith(`pcm-`)?!0:typeof AudioDecoder>`u`?!1:(await AudioDecoder.isConfigSupported(e)).supported===!0}catch(e){return k._error(`Error during decodability check:`,e),!1}}async determinePacketType(e){if(!(e instanceof I))throw TypeError(`packet must be an EncodedPacket.`);return await this.getCodec()===null?null:`key`}},Xl=e=>e??1/0,Zl=e=>-(e??-1/0),Ql=e=>-e,$l=e=>{if(typeof e!=`object`||!e)throw TypeError(`query must be an object.`);if(e.filter!==void 0&&typeof e.filter!=`function`)throw TypeError(`query.filter, when provided, must be a function.`);if(e.sortBy!==void 0&&typeof e.sortBy!=`function`)throw TypeError(`query.sortBy, when provided, must be a function.`);return{filter:e.filter?t=>{let n=e=>{if(typeof e!=`boolean`)throw TypeError(`query.filter must return or resolve to a boolean.`);return e},r=e.filter(t);return O(r)?r.then(n):n(r)}:void 0,sortBy:e.sortBy?t=>{let n=e=>{if(typeof e!=`number`&&(!Array.isArray(e)||!e.every(e=>typeof e==`number`)))throw TypeError(`query.sortBy must return or resolve to a number or an array of numbers.`);return e},r=e.sortBy(t);return O(r)?r.then(n):n(r)}:void 0}},eu=(e,t)=>({filter:e?.filter||t?.filter?n=>{let r=e?.filter?.(n)??!0,i=e=>e===!1?!1:t?.filter?.(n)??!0;return O(r)?r.then(i):i(r)}:void 0,sortBy:e?.sortBy||t?.sortBy?n=>{let r=e?.sortBy?.(n)??[],i=t?.sortBy?.(n)??[],a=(e,t)=>[...Array.isArray(e)?e:[e],...Array.isArray(t)?t:[t]];return O(r)||O(i)?Promise.all([r,i]).then(([e,t])=>a(e,t)):a(r,i)}:void 0}),tu=async(e,t)=>{let n=e;if(t?.filter){let r=e.map(e=>t.filter(e));if(r.some(e=>O(e))){let t=await Promise.all(r);n=e.filter((e,n)=>t[n])}else n=e.filter((e,t)=>r[t])}if(!t?.sortBy)return n;let r=n.map(e=>t.sortBy(e)),i=r.some(e=>O(e))?await Promise.all(r):r;return n.map((e,t)=>({track:e,sortValue:i[t]})).sort((e,t)=>{let n=Array.isArray(e.sortValue)?e.sortValue:[e.sortValue],r=Array.isArray(t.sortValue)?t.sortValue:[t.sortValue],i=Math.max(n.length,r.length);for(let e=0;e<i;e++){let t=n[e]??0,i=r[e]??0;if(t!==i)return t-i}return 0}).map(e=>e.track)},nu=(e,t)=>{let n=1e6,r=.98,i=1+1e-9,a=[12,15,20,24e3/1001,24,25,3e4/1001,30,48,50,6e4/1001,60,100,12e4/1001,120,144,240];if(e.length<2)return null;let o=new Float64Array(e.length-1);for(let t=1;t<e.length;t++){let n=e[t]-e[t-1];if(!(n>0))return null;o[t-1]=n}let s=o.slice();s.sort();let c=s[Math.floor(s.length*.05)];for(let e=0;e<6;e++){let e=0,t=0;for(let n of o){let r=Math.max(1,Math.round(n/c));Math.abs(n-r*c)>=i||(e+=n,t+=r)}if(t===0)return null;let n=e/t;if(Math.abs(n-c)<=1e-12*Math.max(1,c)){c=n;break}c=n}let l=0,u=0,d=0;for(let e of o){let t=Math.max(1,Math.round(e/c));Math.abs(e-t*c)>=i||(l++,u+=e,d+=t)}if(l/o.length<r)return null;c=u/d;let f=1/Math.min(d,1e3),p=Math.max(2**-52,c-f),m=c+f,h=t/m,g=t/p,_=t/c,v=null,y=1/0;for(let e of a){if(e<h||e>g)continue;let t=Math.abs(e/_-1);t<y&&(v=e,y=t)}if(v===null){let e=ru(p,m,n),r=ru(h,g,n);if(r&&(!e||r.den<e.den||r.den===e.den&&r.num<=e.num))v=r.num/r.den;else if(e)v=t*e.den/e.num;else return null}let b=t/v,x=0;for(let e of o){let t=Math.max(1,Math.round(e/b));Math.abs(e-t*b)<i&&x++}return x/o.length<r?null:v},ru=(e,t,n)=>{for(let r=1;r<=n;r++){let n=Math.floor(e*r)+1;if(n/r<t)return rt({num:n,den:r})}return null},iu=e=>{let t=[24/1.001,30/1.001,60/1.001,120/1.001],n=[12,15,20,24,25,30,48,50,60,100,120,144,240];for(let n of t)if(Math.abs(n/e-1)<=5e-4)return n;let r=e,i=1/0;for(let t of n){let n=Math.abs(t/e-1);n<=.025&&n<i&&(r=t,i=n)}return r};Ze();var au=class e extends gt{get disposed(){return this._disposed}constructor(t){if(super(),this._demuxerPromise=null,this._format=null,this._trackBackingsCache=null,this._backingToTrack=new Map,this._disposed=!1,this._nextSourceCacheAge=0,this._sourceRefs=[],this._sourceCache=[],this._sourceCachePromises=[],this._onFormatDetermined=null,!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(!Array.isArray(t.formats)||t.formats.some(e=>!(e instanceof vs)))throw TypeError(`options.formats must be an array of InputFormat.`);if(!(t.source instanceof zo||t.source instanceof Bo))throw TypeError(`options.source must be a Source or SourceRef.`);if(t.source instanceof zo&&t.source._disposed)throw TypeError(`options.source must not be a disposed Source.`);if(t.initInput!==void 0&&!(t.initInput instanceof e))throw TypeError(`options.initInput, when provided, must be an Input.`);t.formatOptions!==void 0&&Ws(t.formatOptions,`formatOptions`),this._formats=t.formats,this._initInput=t.initInput??null,this._formatOptions=t.formatOptions??{},this._rootRef=t.source instanceof zo?t.source.ref():t.source,this._sourceRefs.push(this._rootRef)}get _rootSource(){return this._rootRef.source}async _getSourceUncached(e){r(this._rootSource instanceof Vo);let t=await this._rootSource._resolveRequest(e);return this._emit(`source`,{source:t.source,request:e,isRoot:e.isRoot}),t}_getSourceCached(e,t=1){let n=this._sourceCache.find(n=>n.cacheGroup===t&&Ho(n.request,e));if(n)return n.age++,Promise.resolve(n.sourceRef.source.ref());let i=this._sourceCachePromises.find(n=>n.cacheGroup===t&&Ho(n.request,e));if(i)return i.promise.then(e=>e.sourceRef.source.ref());let a=(async()=>{let n=await this._getSourceUncached(e);if(et(this._sourceCache,e=>e.cacheGroup===t&&e.sourceRef.source._refCount===1)>=4){let e=tt(this._sourceCache,e=>e.cacheGroup===t&&e.sourceRef.source._refCount===1?e.age:1/0);r(e!==-1);let n=this._sourceCache[e];this._sourceCache.splice(e,1),n.sourceRef.free(),le(this._sourceRefs,n.sourceRef)}this._sourceRefs.push(n);let i=this._sourceCachePromises.findIndex(t=>t.request===e);return r(i!==-1),this._sourceCachePromises.splice(i,1),{request:e,sourceRef:n,age:this._nextSourceCacheAge++,cacheGroup:t}})();return this._sourceCachePromises.push({request:e,cacheGroup:t,promise:a}),a.then(e=>{let t=e.sourceRef.source.ref();return this._sourceCache.push(e),t})}_getDemuxer(){return this._demuxerPromise??=(async()=>{this._reader=new cu(this._rootSource),this._emit(`source`,{source:this._rootSource,request:null,isRoot:!0});for(let e of this._formats)if(await e._canReadInput(this))return this._format=e,this._onFormatDetermined?.(e),e._createDemuxer(this);throw new ou})()}get source(){return this._rootSource}async getFormat(){return await this._getDemuxer(),r(this._format),this._format}async canRead(){try{return await this._getDemuxer(),!0}catch(e){if(e instanceof ou)return!1;throw e}}async getFirstTimestamp(e){e??=await this.getTracks();let t=e.filter(e=>e!==null);if(t.length===0)return 0;let n=await Promise.all(t.map(e=>e._backing.getFirstPacket({metadataOnly:!0}))),r=Math.min(...n.map(e=>e?.timestamp??1/0));return r===1/0?0:r}async computeDuration(e,t){e??=await this.getTracks();let n=e.filter(e=>e!==null);if(n.length===0)return 0;let r=await Promise.all(n.map(e=>e.computeDuration(t)));return Math.max(...r)}async getDurationFromMetadata(e,t){e??=await this.getTracks();let n=e.filter(e=>e!==null),r=(await Promise.all(n.map(e=>e.getDurationFromMetadata(t)))).filter(e=>e!==null);return r.length===0?null:Math.max(...r)}async getTracks(e){return e&&=$l(e),tu((await this._getTrackBackings()).map(e=>this._wrapBackingAsTrack(e)),e)}async getVideoTracks(e){return e&&=$l(e),tu((await this.getTracks()).filter(e=>e.isVideoTrack()),e)}async getAudioTracks(e){return e&&=$l(e),tu((await this.getTracks()).filter(e=>e.isAudioTrack()),e)}async getPrimaryVideoTrack(e){e&&=$l(e);let t=eu(e,{sortBy:async e=>[Ql((await e.getDisposition()).default),Ql(await e.hasPairableAudioTrack()),Ql(!await e.hasOnlyKeyPackets()),Zl(await e.getBitrate())]});return(await this.getVideoTracks(t))[0]??null}async getPrimaryAudioTrack(e){e&&=$l(e);let t=await this.getPrimaryVideoTrack(),n=eu(e,{sortBy:async e=>[Ql(!t||e.canBePairedWith(t)),Ql((await e.getDisposition()).default),Zl(await e.getBitrate())]});return(await this.getAudioTracks(n))[0]??null}async _getTrackBackings(){let e=await this._getDemuxer();return this._trackBackingsCache??=await e.getTrackBackings()}_wrapBackingAsTrack(e){let t=this._backingToTrack.get(e);if(t)return t;let n=e.getType()===`video`?new Jl(this,e):new Yl(this,e);return this._backingToTrack.set(e,n),n}async getMimeType(){return(await this._getDemuxer()).getMimeType()}async getMetadataTags(){return(await this._getDemuxer()).getMetadataTags()}dispose(){if(!this._disposed){this._disposed=!0;for(let e of this._sourceRefs)e.free();this._sourceRefs.length=0,this._demuxerPromise&&this._demuxerPromise.then(e=>e.dispose()).catch(()=>{})}}[Symbol.dispose](){this.dispose()}},ou=class extends Error{constructor(e=`Input has an unsupported or unrecognizable format.`){super(e),this.name=`UnsupportedInputFormatError`}},su=class extends Error{constructor(e=`Input has been disposed.`){super(e),this.name=`InputDisposedError`}},cu=class{constructor(e){this.source=e}get fileSize(){let e=this.source._getFileSize();if(e===void 0)throw Error(`Reading file size too early; read required first.`);return e}get fileSizeNonStrict(){return this.source._getFileSize()??null}requestSlice(e,t){if(this.source._disposed)throw new su;if(e<0||this.fileSizeNonStrict!==null&&e+t>this.fileSizeNonStrict)return null;if(t===0){let t=new Uint8Array;return new lu(t,d(t),0,e,e)}let n=e+t,r=this.source._read(e,n,0,Lo);return O(r)?r.then(t=>t?new lu(t.bytes,t.view,t.offset,e,n):null):r?new lu(r.bytes,r.view,r.offset,e,n):null}requestSliceRange(e,t,n){if(this.source._disposed)throw new su;if(e<0)return null;if(this.fileSizeNonStrict!==null)return this.requestSlice(e,D(this.fileSizeNonStrict-e,t,n));{let i=this.requestSlice(e,n),a=i=>i||(r(this.fileSizeNonStrict!==null),this.requestSlice(e,D(this.fileSizeNonStrict-e,t,n)));return O(i)?i.then(a):a(i)}}requestEntireFile(){return this.fileSizeNonStrict===null?(async()=>{let e=[],t=0;for(;;){if(e.length===1&&this.fileSizeNonStrict!==null)return this.requestSlice(0,this.fileSizeNonStrict);let n=this.requestSliceRange(t,0,1024);if(O(n)&&(n=await n),!n||n.length===0)break;let r=V(n,n.length);e.push(r),t+=n.length}let n=new Uint8Array(t),r=0;for(let t of e)n.set(t,r),r+=t.length;return new lu(n,d(n),0,0,t)})():this.requestSlice(0,this.fileSizeNonStrict)}},lu=class e{constructor(e,t,n,r,i){this.bytes=e,this.view=t,this.offset=n,this.start=r,this.end=i,this.bufferPos=r-n}static tempFromBytes(t){return new e(t,d(t),0,0,t.length)}get length(){return this.end-this.start}get filePos(){return this.offset+this.bufferPos}set filePos(e){this.bufferPos=e-this.offset}get remainingLength(){return Math.max(this.end-this.filePos,0)}skip(e){this.bufferPos+=e}slice(t,n=this.end-t){if(t<this.start||t+n>this.end)throw RangeError(`Slicing outside of original slice.`);return new e(this.bytes,this.view,this.offset,t,t+n)}},uu=(e,t)=>{if(e.filePos<e.start||e.filePos+t>e.end)throw RangeError(`Tried reading [${e.filePos}, ${e.filePos+t}), but slice is [${e.start}, ${e.end}). This is likely an internal error, please report it alongside the file that caused it.`)},V=(e,t)=>{uu(e,t);let n=e.bytes.subarray(e.bufferPos,e.bufferPos+t);return e.bufferPos+=t,n},H=e=>(uu(e,1),e.view.getUint8(e.bufferPos++)),du=(e,t)=>{uu(e,2);let n=e.view.getUint16(e.bufferPos,t);return e.bufferPos+=2,n},U=e=>{uu(e,2);let t=e.view.getUint16(e.bufferPos,!1);return e.bufferPos+=2,t},fu=e=>{uu(e,3);let t=me(e.view,e.bufferPos,!1);return e.bufferPos+=3,t},pu=e=>{uu(e,2);let t=e.view.getInt16(e.bufferPos,!1);return e.bufferPos+=2,t},mu=(e,t)=>{uu(e,4);let n=e.view.getUint32(e.bufferPos,t);return e.bufferPos+=4,n},W=e=>{uu(e,4);let t=e.view.getUint32(e.bufferPos,!1);return e.bufferPos+=4,t},hu=e=>{uu(e,4);let t=e.view.getUint32(e.bufferPos,!0);return e.bufferPos+=4,t},gu=e=>{uu(e,4);let t=e.view.getInt32(e.bufferPos,!1);return e.bufferPos+=4,t},_u=e=>{uu(e,4);let t=e.view.getInt32(e.bufferPos,!0);return e.bufferPos+=4,t},vu=(e,t)=>{let n,r;return t?(n=mu(e,!0),r=mu(e,!0)):(r=mu(e,!1),n=mu(e,!1)),r*4294967296+n},yu=e=>{let t=W(e),n=W(e);return t*4294967296+n},bu=e=>{let t=gu(e),n=W(e);return t*4294967296+n},xu=e=>{let t=hu(e);return _u(e)*4294967296+t},Su=e=>{uu(e,4);let t=e.view.getFloat32(e.bufferPos,!1);return e.bufferPos+=4,t},Cu=e=>{uu(e,8);let t=e.view.getFloat64(e.bufferPos,!1);return e.bufferPos+=8,t},G=(e,t)=>{uu(e,t);let n=``;for(let r=0;r<t;r++)n+=String.fromCharCode(e.bytes[e.bufferPos++]);return n},wu=(e,t,n)=>f.decode(V(e,t)).split(`
|
|
2
|
+
`).map(e=>e.trim()).filter(e=>e.length>0&&!n?.ignore?.(e)),Tu;(function(e){e[e.Unsynchronisation=128]=`Unsynchronisation`,e[e.ExtendedHeader=64]=`ExtendedHeader`,e[e.ExperimentalIndicator=32]=`ExperimentalIndicator`,e[e.Footer=16]=`Footer`})(Tu||={});var Eu;(function(e){e[e.ISO_8859_1=0]=`ISO_8859_1`,e[e.UTF_16_WITH_BOM=1]=`UTF_16_WITH_BOM`,e[e.UTF_16_BE_NO_BOM=2]=`UTF_16_BE_NO_BOM`,e[e.UTF_8=3]=`UTF_8`})(Eu||={});var Du=`Blues.Classic rock.Country.Dance.Disco.Funk.Grunge.Hip-hop.Jazz.Metal.New age.Oldies.Other.Pop.Rhythm and blues.Rap.Reggae.Rock.Techno.Industrial.Alternative.Ska.Death metal.Pranks.Soundtrack.Euro-techno.Ambient.Trip-hop.Vocal.Jazz & funk.Fusion.Trance.Classical.Instrumental.Acid.House.Game.Sound clip.Gospel.Noise.Alternative rock.Bass.Soul.Punk.Space.Meditative.Instrumental pop.Instrumental rock.Ethnic.Gothic.Darkwave.Techno-industrial.Electronic.Pop-folk.Eurodance.Dream.Southern rock.Comedy.Cult.Gangsta.Top 40.Christian rap.Pop/funk.Jungle music.Native US.Cabaret.New wave.Psychedelic.Rave.Showtunes.Trailer.Lo-fi.Tribal.Acid punk.Acid jazz.Polka.Retro.Musical.Rock 'n' roll.Hard rock.Folk.Folk rock.National folk.Swing.Fast fusion.Bebop.Latin.Revival.Celtic.Bluegrass.Avantgarde.Gothic rock.Progressive rock.Psychedelic rock.Symphonic rock.Slow rock.Big band.Chorus.Easy listening.Acoustic.Humour.Speech.Chanson.Opera.Chamber music.Sonata.Symphony.Booty bass.Primus.Porn groove.Satire.Slow jam.Club.Tango.Samba.Folklore.Ballad.Power ballad.Rhythmic Soul.Freestyle.Duet.Punk rock.Drum solo.A cappella.Euro-house.Dance hall.Goa music.Drum & bass.Club-house.Hardcore techno.Terror.Indie.Britpop.Negerpunk.Polsk punk.Beat.Christian gangsta rap.Heavy metal.Black metal.Crossover.Contemporary Christian.Christian rock.Merengue.Salsa.Thrash metal.Anime.Jpop.Synthpop.Christmas.Art rock.Baroque.Bhangra.Big beat.Breakbeat.Chillout.Downtempo.Dub.EBM.Eclectic.Electro.Electroclash.Emo.Experimental.Garage.Global.IDM.Illbient.Industro-Goth.Jam Band.Krautrock.Leftfield.Lounge.Math rock.New romantic.Nu-breakz.Post-punk.Post-rock.Psytrance.Shoegaze.Space rock.Trop rock.World music.Neoclassical.Audiobook.Audio theatre.Neue Deutsche Welle.Podcast.Indie rock.G-Funk.Dubstep.Garage rock.Psybient`.split(`.`),Ou=(e,t)=>{let n=e.filePos;t.raw??={},t.raw.TAG??=V(e,125),e.filePos=n;let r=ku(e,30);r&&(t.title??=r);let i=ku(e,30);i&&(t.artist??=i);let a=ku(e,30);a&&(t.album??=a);let o=ku(e,4),s=Number.parseInt(o,10);Number.isInteger(s)&&s>0&&(t.date??=new Date(String(s)));let c=V(e,30),l;if(c[28]===0&&c[29]!==0){let n=c[29];n>0&&(t.trackNumber??=n),e.skip(-30),l=ku(e,28),e.skip(2)}else e.skip(-30),l=ku(e,30);l&&(t.comment??=l);let u=H(e);u<Du.length&&(t.genre??=Du[u])},ku=(e,t)=>{let n=V(e,t),r=We(n.indexOf(0),n.length),i=n.subarray(0,r),a=``;for(let e=0;e<i.length;e++)a+=String.fromCharCode(i[e]);return a.trimEnd()},Au=e=>{let t=e.filePos,n=G(e,3),r=H(e),i=H(e),a=H(e),o=W(e);if(n!==`ID3`||r===255||i===255||o&2155905152)return e.filePos=t,null;let s=Zr(o);return a&Tu.Footer&&(s+=10),{majorVersion:r,revision:i,flags:a,size:s}},ju=(e,t,n)=>{if(![2,3,4].includes(t.majorVersion)){k._warn(`Unsupported ID3v2 major version: ${t.majorVersion}`);return}let r=new Mu(t,V(e,t.flags&Tu.Footer?t.size-10:t.size));if(t.flags&Tu.Unsynchronisation&&t.majorVersion===3&&r.ununsynchronizeAll(),t.flags&Tu.ExtendedHeader){let e=r.readU32();t.majorVersion===3?r.pos+=e:r.pos+=e-4}for(;r.pos<=r.bytes.length-r.frameHeaderSize();){let e=r.readId3V2Frame();if(!e)break;let i=r.pos,a=r.pos+e.size,o=!1,s=!1,c=!1;if(t.majorVersion===3?(o=!!(e.flags&64),s=!!(e.flags&128)):t.majorVersion===4&&(o=!!(e.flags&4),s=!!(e.flags&8),c=!!(e.flags&2)||!!(t.flags&Tu.Unsynchronisation)),o){k._warn(`Skipping encrypted ID3v2 frame ${e.id}`),r.pos=a;continue}if(s){k._warn(`Skipping compressed ID3v2 frame ${e.id}`),r.pos=a;continue}if(c&&r.ununsynchronizeRegion(r.pos,a),n.raw??={},e.id===`TXXX`){let e=n.raw.TXXX??={},t=r.readId3V2TextEncoding(),i=r.readId3V2Text(t,a),o=r.readId3V2Text(t,a);e[i]??=o}else e.id[0]===`T`?n.raw[e.id]??=r.readId3V2EncodingAndText(a):n.raw[e.id]??=r.readBytes(e.size);switch(r.pos=i,e.id){case`TIT2`:case`TT2`:n.title??=r.readId3V2EncodingAndText(a);break;case`TIT3`:case`TT3`:n.description??=r.readId3V2EncodingAndText(a);break;case`TPE1`:case`TP1`:n.artist??=r.readId3V2EncodingAndText(a);break;case`TALB`:case`TAL`:n.album??=r.readId3V2EncodingAndText(a);break;case`TPE2`:case`TP2`:n.albumArtist??=r.readId3V2EncodingAndText(a);break;case`TRCK`:case`TRK`:{let e=r.readId3V2EncodingAndText(a).split(`/`),t=Number.parseInt(e[0],10),i=e[1]&&Number.parseInt(e[1],10);Number.isInteger(t)&&t>0&&(n.trackNumber??=t),i&&Number.isInteger(i)&&i>0&&(n.tracksTotal??=i)}break;case`TPOS`:case`TPA`:{let e=r.readId3V2EncodingAndText(a).split(`/`),t=Number.parseInt(e[0],10),i=e[1]&&Number.parseInt(e[1],10);Number.isInteger(t)&&t>0&&(n.discNumber??=t),i&&Number.isInteger(i)&&i>0&&(n.discsTotal??=i)}break;case`TCON`:case`TCO`:{let e=r.readId3V2EncodingAndText(a),t=/^\((\d+)\)/.exec(e);if(t){let e=Number.parseInt(t[1]);if(Du[e]!==void 0){n.genre??=Du[e];break}}if(t=/^\d+$/.exec(e),t){let e=Number.parseInt(t[0]);if(Du[e]!==void 0){n.genre??=Du[e];break}}n.genre??=e}break;case`TDRC`:case`TDAT`:{let e=r.readId3V2EncodingAndText(a),t=new Date(e);Number.isNaN(t.getTime())||(n.date??=t)}break;case`TYER`:case`TYE`:{let e=r.readId3V2EncodingAndText(a),t=Number.parseInt(e,10);Number.isInteger(t)&&(n.date??=new Date(String(t)))}break;case`USLT`:case`ULT`:{let e=r.readU8();r.pos+=3,r.readId3V2Text(e,a),n.lyrics??=r.readId3V2Text(e,a)}break;case`COMM`:case`COM`:{let e=r.readU8();r.pos+=3,r.readId3V2Text(e,a),n.comment??=r.readId3V2Text(e,a)}break;case`APIC`:case`PIC`:{let e=r.readId3V2TextEncoding(),i;if(t.majorVersion===2){let e=r.readAscii(3);i=e===`PNG`?`image/png`:e===`JPG`?`image/jpeg`:`image/*`}else i=r.readId3V2Text(e,a);let o=r.readU8(),s=r.readId3V2Text(e,a).trimEnd(),c=a-r.pos;if(c>=0){let e=r.readBytes(c);n.images||=[],n.images.push({data:e,mimeType:i,kind:o===3?`coverFront`:o===4?`coverBack`:`unknown`,description:s})}}break;default:r.pos+=e.size}r.pos=a}},Mu=class{constructor(e,t){this.header=e,this.bytes=t,this.pos=0,this.view=new DataView(t.buffer,t.byteOffset,t.byteLength)}frameHeaderSize(){return this.header.majorVersion===2?6:10}ununsynchronizeAll(){let e=[];for(let t=0;t<this.bytes.length;t++){let n=this.bytes[t];e.push(n),n===255&&t!==this.bytes.length-1&&this.bytes[t]===0&&t++}this.bytes=new Uint8Array(e),this.view=new DataView(this.bytes.buffer)}ununsynchronizeRegion(e,t){let n=[];for(let r=e;r<t;r++){let e=this.bytes[r];n.push(e),e===255&&r!==t-1&&this.bytes[r+1]===0&&r++}let r=this.bytes.subarray(0,e),i=this.bytes.subarray(t);this.bytes=new Uint8Array(r.length+n.length+i.length),this.bytes.set(r,0),this.bytes.set(n,r.length),this.bytes.set(i,r.length+n.length),this.view=new DataView(this.bytes.buffer)}readBytes(e){let t=this.bytes.subarray(this.pos,this.pos+e);return this.pos+=e,t}readU8(){let e=this.view.getUint8(this.pos);return this.pos+=1,e}readU16(){let e=this.view.getUint16(this.pos,!1);return this.pos+=2,e}readU24(){let e=this.view.getUint16(this.pos,!1),t=this.view.getUint8(this.pos+2);return this.pos+=3,e*256+t}readU32(){let e=this.view.getUint32(this.pos,!1);return this.pos+=4,e}readAscii(e){let t=``;for(let n=0;n<e;n++)t+=String.fromCharCode(this.view.getUint8(this.pos+n));return this.pos+=e,t}readId3V2Frame(){if(this.header.majorVersion===2){let e=this.readAscii(3);return e===`\0\0\0`?null:{id:e,size:this.readU24(),flags:0}}{let e=this.readAscii(4);if(e===`\0\0\0\0`)return null;let t=this.readU32(),n=this.header.majorVersion===4?Zr(t):t,r=this.readU16(),i=this.pos,a=e=>{let t=this.pos+e;if(t>this.bytes.length)return!1;if(t<=this.bytes.length-this.frameHeaderSize()){this.pos+=e;let t=this.readAscii(4);if(t!==`\0\0\0\0`&&!/[0-9A-Z]{4}/.test(t))return!1}return!0};if(!a(n)){let e=this.header.majorVersion===4?t:Zr(t);a(e)&&(n=e)}return this.pos=i,{id:e,size:n,flags:r}}}readId3V2TextEncoding(){let e=this.readU8();if(e>3)throw Error(`Unsupported text encoding: ${e}`);return e}readId3V2Text(e,t){let n=this.pos,r=this.readBytes(t-this.pos);switch(e){case Eu.ISO_8859_1:{let e=``;for(let t=0;t<r.length;t++){let i=r[t];if(i===0){this.pos=n+t+1;break}e+=String.fromCharCode(i)}return e}case Eu.UTF_16_WITH_BOM:if(r[0]===255&&r[1]===254){let e=new TextDecoder(`utf-16le`),t=We(r.findIndex((e,t)=>e===0&&r[t+1]===0&&t%2==0),r.length);return this.pos=n+Math.min(t+2,r.length),e.decode(r.subarray(2,t))}if(r[0]===254&&r[1]===255){let e=new TextDecoder(`utf-16be`),t=We(r.findIndex((e,t)=>e===0&&r[t+1]===0&&t%2==0),r.length);return this.pos=n+Math.min(t+2,r.length),e.decode(r.subarray(2,t))}{let e=We(r.findIndex(e=>e===0),r.length);return this.pos=n+Math.min(e+1,r.length),f.decode(r.subarray(0,e))}case Eu.UTF_16_BE_NO_BOM:{let e=new TextDecoder(`utf-16be`),t=We(r.findIndex((e,t)=>e===0&&r[t+1]===0&&t%2==0),r.length);return this.pos=n+Math.min(t+2,r.length),e.decode(r.subarray(0,t))}case Eu.UTF_8:{let e=We(r.findIndex(e=>e===0),r.length);return this.pos=n+Math.min(e+1,r.length),f.decode(r.subarray(0,e))}}}readId3V2EncodingAndText(e){if(this.pos>=e)return``;let t=this.readId3V2TextEncoding();return this.readId3V2Text(t,e)}},Nu=class{constructor(e){this.helper=new Uint8Array(8),this.helperView=d(this.helper),this.writer=e}writeId3V2Tag(e){let t=this.writer.getPos();this.writeAscii(`ID3`),this.writeU8(4),this.writeU8(0),this.writeU8(0),this.writeSynchsafeU32(0);let n=this.writer.getPos(),r=new Set;for(let{key:t,value:n}of Ke(e))switch(t){case`title`:this.writeId3V2TextFrame(`TIT2`,n),r.add(`TIT2`);break;case`description`:this.writeId3V2TextFrame(`TIT3`,n),r.add(`TIT3`);break;case`artist`:this.writeId3V2TextFrame(`TPE1`,n),r.add(`TPE1`);break;case`album`:this.writeId3V2TextFrame(`TALB`,n),r.add(`TALB`);break;case`albumArtist`:this.writeId3V2TextFrame(`TPE2`,n),r.add(`TPE2`);break;case`trackNumber`:{let t=e.tracksTotal===void 0?n.toString():`${n}/${e.tracksTotal}`;this.writeId3V2TextFrame(`TRCK`,t),r.add(`TRCK`)}break;case`discNumber`:{let t=e.discsTotal===void 0?n.toString():`${n}/${e.discsTotal}`;this.writeId3V2TextFrame(`TPOS`,t),r.add(`TPOS`)}break;case`genre`:this.writeId3V2TextFrame(`TCON`,n),r.add(`TCON`);break;case`date`:this.writeId3V2TextFrame(`TDRC`,n.toISOString().slice(0,10)),r.add(`TDRC`);break;case`lyrics`:this.writeId3V2LyricsFrame(n),r.add(`USLT`);break;case`comment`:this.writeId3V2CommentFrame(n),r.add(`COMM`);break;case`images`:{let e={coverFront:3,coverBack:4,unknown:0};for(let t of n){let n=e[t.kind]??0,r=t.description??``;this.writeId3V2ApicFrame(t.mimeType,n,r,t.data)}}break;case`tracksTotal`:case`discsTotal`:break;case`raw`:break;default:E(t)}if(e.raw)for(let t in e.raw){let n=e.raw[t];if(n==null||t.length!==4||r.has(t))continue;let i;if(typeof n==`string`){if(m(n)){i=new Uint8Array(n.length+2),i[0]=Eu.ISO_8859_1;for(let e=0;e<n.length;e++)i[e+1]=n.charCodeAt(e)}else{let e=p.encode(n);i=new Uint8Array(e.byteLength+2),i[0]=Eu.UTF_8,i.set(e,1)}}else if(n instanceof Uint8Array)i=n;else if(t===`TXXX`&&yt(n)){for(let e in n){let t=n[e],r=m(e)&&m(t),i=r?null:p.encode(e),a=r?null:p.encode(t),o=r?e.length:i.byteLength,s=r?t.length:a.byteLength,c=1+o+1+s+1;this.writeAscii(`TXXX`),this.writeSynchsafeU32(c),this.writeU16(0),this.writeU8(r?Eu.ISO_8859_1:Eu.UTF_8),r?(this.writeIsoString(e),this.writeIsoString(t)):(this.writer.write(i),this.writeU8(0),this.writer.write(a),this.writeU8(0))}continue}else continue;this.writeAscii(t),this.writeSynchsafeU32(i.byteLength),this.writeU16(0),this.writer.write(i)}let i=this.writer.getPos(),a=i-n;return this.writer.seek(t+6),this.writeSynchsafeU32(a),this.writer.seek(i),a+10}writeU8(e){this.helper[0]=e,this.writer.write(this.helper.subarray(0,1))}writeU16(e){this.helperView.setUint16(0,e,!1),this.writer.write(this.helper.subarray(0,2))}writeU32(e){this.helperView.setUint32(0,e,!1),this.writer.write(this.helper.subarray(0,4))}writeAscii(e){for(let t=0;t<e.length;t++)this.helper[t]=e.charCodeAt(t);this.writer.write(this.helper.subarray(0,e.length))}writeSynchsafeU32(e){this.writeU32(Xr(e))}writeIsoString(e){let t=new Uint8Array(e.length+1);for(let n=0;n<e.length;n++)t[n]=e.charCodeAt(n);this.writer.write(t)}writeUtf8String(e){let t=p.encode(e);this.writer.write(t),this.writeU8(0)}writeId3V2TextFrame(e,t){let n=m(t),r=1+(n?t.length:p.encode(t).byteLength)+1;this.writeAscii(e),this.writeSynchsafeU32(r),this.writeU16(0),this.writeU8(n?Eu.ISO_8859_1:Eu.UTF_8),n?this.writeIsoString(t):this.writeUtf8String(t)}writeId3V2LyricsFrame(e){let t=m(e),n=5+e.length+1;this.writeAscii(`USLT`),this.writeSynchsafeU32(n),this.writeU16(0),this.writeU8(t?Eu.ISO_8859_1:Eu.UTF_8),this.writeAscii(`und`),t?(this.writeIsoString(``),this.writeIsoString(e)):(this.writeUtf8String(``),this.writeUtf8String(e))}writeId3V2CommentFrame(e){let t=m(e),n=5+(t?e.length:p.encode(e).byteLength)+1;this.writeAscii(`COMM`),this.writeSynchsafeU32(n),this.writeU16(0),this.writeU8(t?Eu.ISO_8859_1:Eu.UTF_8),this.writeU8(117),this.writeU8(110),this.writeU8(100),t?(this.writeIsoString(``),this.writeIsoString(e)):(this.writeUtf8String(``),this.writeUtf8String(e))}writeId3V2ApicFrame(e,t,n,r){let i=m(e)&&m(n),a=i?n.length:p.encode(n).byteLength,o=1+e.length+1+1+a+1+r.byteLength;this.writeAscii(`APIC`),this.writeSynchsafeU32(o),this.writeU16(0),this.writeU8(i?Eu.ISO_8859_1:Eu.UTF_8),i?this.writeIsoString(e):this.writeUtf8String(e),this.writeU8(t),i?this.writeIsoString(n):this.writeUtf8String(n),this.writer.write(r)}},Pu=class{constructor(e){this.mutex=new ne,this.trackTimestampInfo=new WeakMap,this.output=e}onTrackClose(e){}validateTimestamp(e,t,n){if(t<0)throw Error(`Timestamps must be non-negative (got ${t}s).`);let r=this.trackTimestampInfo.get(e);if(r){if(n&&(r.maxTimestampBeforeLastKeyPacket=r.maxTimestamp),r.maxTimestampBeforeLastKeyPacket!==null&&t<r.maxTimestampBeforeLastKeyPacket)throw Error(`Timestamps cannot be smaller than the largest timestamp of the previous GOP (a GOP begins with a key packet and ends right before the next key packet). Got ${t}s, but largest timestamp is ${r.maxTimestampBeforeLastKeyPacket}s.`);r.maxTimestamp=Math.max(r.maxTimestamp,t)}else{if(!n)throw Error(`First packet must be a key packet.`);r={maxTimestamp:t,maxTimestampBeforeLastKeyPacket:null},this.trackTimestampInfo.set(e,r)}}},Fu=class extends Pu{constructor(e,t){super(e),this.header=null,this.headerBitstream=null,this.inputIsAdts=null,this.format=t}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(!0),wt(this.output._metadataTags)||new Nu(this.writer).writeId3V2Tag(this.output._metadataTags),e()}async getMimeType(){return`audio/aac`}async addEncodedVideoPacket(){throw Error(`ADTS does not support video.`)}async addEncodedAudioPacket(e,t,n){let i=await this.mutex.acquire();try{if(this.validateTimestamp(e,t.timestamp,t.type===`key`),this.inputIsAdts===null){Vr(n,e.source._codec);let t=n?.decoderConfig?.description;if(this.inputIsAdts=!t,!this.inputIsAdts){let e=It(kt(u(t)));this.header=e.header,this.headerBitstream=e.bitstream}}if(this.inputIsAdts){let e=this.writer.getPos();this.writer.write(t.data),this.format._options.onFrame&&this.format._options.onFrame(t.data,e)}else{r(this.header);let e=t.data.byteLength+this.header.byteLength;Lt(this.headerBitstream,e);let n=this.writer.getPos();if(this.writer.write(this.header),this.writer.write(t.data),this.format._options.onFrame){let r=new Uint8Array(e);r.set(this.header,0),r.set(t.data,this.header.byteLength),this.format._options.onFrame(r,n)}}await this.writer.flush()}finally{i()}}async addSubtitleCue(){throw Error(`ADTS does not support subtitles.`)}async finalize(){let e=await this.mutex.acquire();if(this.inputIsAdts===null)throw Error(`Cannot finalize an empty ADTS file: not a single packet was added.`);e()}},Iu=new Uint8Array([102,76,97,67]),Lu=38,Ru=34,zu=class extends Pu{constructor(e,t){super(e),this.metadataWritten=!1,this.blockSizes=[],this.frameSizes=[],this.sampleRate=null,this.channels=null,this.bitsPerSample=null,this.format=t}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(!!this.format._options.appendOnly),this.writer.write(Iu);let t=this.output.tracks[0];r(t?.isAudioTrack()),t.metadata.decoderConfig&&(Vr({decoderConfig:t.metadata.decoderConfig},t.source._codec),this.applyDecoderConfig(t.metadata.decoderConfig)),e()}applyDecoderConfig(e){r(e.description),this.sampleRate=e.sampleRate,this.channels=e.numberOfChannels;let t=new A(u(e.description));t.skipBits(167),this.bitsPerSample=t.readBits(5)+1,this.format._options.appendOnly&&this.writeHeader({minimumBlockSize:16,maximumBlockSize:65535,minimumFrameSize:0,maximumFrameSize:0,sampleRate:this.sampleRate,channels:this.channels,bitsPerSample:this.bitsPerSample,totalSamples:0})}writeHeader({bitsPerSample:e,minimumBlockSize:t,maximumBlockSize:n,minimumFrameSize:i,maximumFrameSize:a,sampleRate:o,channels:s,totalSamples:c}){r(this.writer.getPos()===4);let l=!wt(this.output._metadataTags),u=new A(new Uint8Array(4));u.writeBits(1,Number(!l)),u.writeBits(7,An.STREAMINFO),u.writeBits(24,Ru),this.writer.write(u.bytes);let d=new A(new Uint8Array(18));if(d.writeBits(16,t),d.writeBits(16,n),d.writeBits(24,i),d.writeBits(24,a),d.writeBits(20,o),d.writeBits(3,s-1),d.writeBits(5,e-1),c>=2**32)throw Error(`This muxer only supports writing up to 2 ** 32 samples`);d.writeBits(4,0),d.writeBits(32,c),this.writer.write(d.bytes),this.writer.write(new Uint8Array(16))}writePictureBlock(e){let t=32+e.mimeType.length+(e.description?.length??0)+e.data.length,n=new Uint8Array(t),i=0,a=d(n);a.setUint32(i,e.kind===`coverFront`?3:e.kind===`coverBack`?4:0),i+=4,a.setUint32(i,e.mimeType.length),i+=4,n.set(p.encode(e.mimeType),8),i+=e.mimeType.length,a.setUint32(i,e.description?.length??0),i+=4,n.set(p.encode(e.description??``),i),i+=e.description?.length??0,i+=16,a.setUint32(i,e.data.length),i+=4,n.set(e.data,i),i+=e.data.length,r(i===t);let o=new A(new Uint8Array(4));o.writeBits(1,0),o.writeBits(7,An.PICTURE),o.writeBits(24,t),this.writer.write(o.bytes),this.writer.write(n)}writeVorbisCommentAndPictureBlock(){if(this.format._options.appendOnly||this.writer.seek(Lu+Iu.byteLength),wt(this.output._metadataTags)){this.metadataWritten=!0;return}let e=this.output._metadataTags.images??[];for(let t of e)this.writePictureBlock(t);let t=Mn(new Uint8Array,this.output._metadataTags,!1),n=new A(new Uint8Array(4));n.writeBits(1,1),n.writeBits(7,An.VORBIS_COMMENT),n.writeBits(24,t.length),this.writer.write(n.bytes),this.writer.write(t),this.metadataWritten=!0}async getMimeType(){return`audio/flac`}async addEncodedVideoPacket(){throw Error(`FLAC does not support video.`)}async addEncodedAudioPacket(e,t,n){let i=await this.mutex.acquire();try{this.validateTimestamp(e,t.timestamp,t.type===`key`),this.sampleRate===null&&(Vr(n,e.source._codec),r(n),r(n.decoderConfig),this.applyDecoderConfig(n.decoderConfig)),this.metadataWritten||this.writeVorbisCommentAndPictureBlock();let i=lu.tempFromBytes(t.data);i.skip(2);let a=Ga(new A(V(i,2)).readBits(4));if(a===null)throw Error(`Invalid FLAC frame: Invalid block size.`);qa(i);let o=Ja(i,a);this.format._options.appendOnly||(this.blockSizes.push(o),this.frameSizes.push(t.data.length));let s=this.writer.getPos();this.writer.write(t.data),this.format._options.onFrame&&this.format._options.onFrame(t.data,s),await this.writer.flush()}finally{i()}}addSubtitleCue(){throw Error(`FLAC does not support subtitles.`)}async finalize(){let e=await this.mutex.acquire();if(this.sampleRate===null)throw Error(`Cannot finalize an empty FLAC file: no packets were added and the track specified no decoderConfig in its metadata, so there's no telling what the file should look like.`);if(this.metadataWritten||this.writeVorbisCommentAndPictureBlock(),!this.format._options.appendOnly){let e=1/0,t=0,n=1/0,i=0,a=0;for(let r=0;r<this.blockSizes.length;r++)n=Math.min(n,this.frameSizes[r]),i=Math.max(i,this.frameSizes[r]),t=Math.max(t,this.blockSizes[r]),a+=this.blockSizes[r],r!==this.blockSizes.length-1&&(e=Math.min(e,this.blockSizes[r]));this.blockSizes.length===0&&(e=16,t=65535,n=0,i=0),r(this.channels!==null),r(this.bitsPerSample!==null),this.writer.seek(4),this.writeHeader({minimumBlockSize:e,maximumBlockSize:t,minimumFrameSize:n,maximumFrameSize:i,sampleRate:this.sampleRate,channels:this.channels,bitsPerSample:this.bitsPerSample,totalSamples:a})}e()}},Bu=/(?:(.+?)\n)?((?:\d{2}:)?\d{2}:\d{2}.\d{3})\s+-->\s+((?:\d{2}:)?\d{2}:\d{2}.\d{3})/g,Vu=/^WEBVTT(.|\n)*?\n{2}/,Hu=/<(?:(\d{2}):)?(\d{2}):(\d{2}).(\d{3})>/g,Uu=class{constructor(e){this.preambleText=null,this.preambleEmitted=!1,this.options=e}parse(e){e=e.replaceAll(`\r
|
|
3
|
+
`,`
|
|
4
|
+
`).replaceAll(`\r`,`
|
|
5
|
+
`),Bu.lastIndex=0;let t;if(!this.preambleText){if(!Vu.test(e))throw Error(`WebVTT preamble incorrect.`);t=Bu.exec(e);let n=e.slice(0,t?.index??e.length).trimEnd();if(!n)throw Error(`No WebVTT preamble provided.`);this.preambleText=n,t&&(e=e.slice(t.index),Bu.lastIndex=0)}for(;t=Bu.exec(e);){let n=e.slice(0,t.index),r=t[1],i=t.index+t[0].length,a=e.indexOf(`
|
|
6
|
+
`,i)+1,o=e.slice(i,a).trim(),s=e.indexOf(`
|
|
7
|
+
|
|
8
|
+
`,i);s===-1&&(s=e.length);let c=Gu(t[2]),l=Gu(t[3])-c,u=e.slice(a,s).trim();e=e.slice(s).trimStart(),Bu.lastIndex=0;let d={timestamp:c/1e3,duration:l/1e3,text:u,identifier:r,settings:o,notes:n},f={};this.preambleEmitted||=(f.config={description:this.preambleText},!0),this.options.output(d,f)}}},Wu=/(?:(\d{2}):)?(\d{2}):(\d{2}).(\d{3})/,Gu=e=>{let t=Wu.exec(e);if(!t)throw Error(`Expected match.`);return 36e5*Number(t[1]||`0`)+6e4*Number(t[2])+1e3*Number(t[3])+Number(t[4])},Ku=e=>{let t=Math.floor(e/36e5),n=Math.floor(e%36e5/6e4),r=Math.floor(e%6e4/1e3),i=e%1e3;return t.toString().padStart(2,`0`)+`:`+n.toString().padStart(2,`0`)+`:`+r.toString().padStart(2,`0`)+`.`+i.toString().padStart(3,`0`)},qu=class{constructor(e){this.writer=e,this.helper=new Uint8Array(8),this.helperView=new DataView(this.helper.buffer),this.offsets=new WeakMap}writeU32(e){this.helperView.setUint32(0,e,!1),this.writer.write(this.helper.subarray(0,4))}writeU64(e){this.helperView.setUint32(0,Math.floor(e/2**32),!1),this.helperView.setUint32(4,e,!1),this.writer.write(this.helper.subarray(0,8))}writeAscii(e){for(let t=0;t<e.length;t++)this.helperView.setUint8(t%8,e.charCodeAt(t)),t%8==7&&this.writer.write(this.helper);e.length%8!=0&&this.writer.write(this.helper.subarray(0,e.length%8))}writeBox(e){if(this.offsets.set(e,this.writer.getPos()),e.contents&&!e.children)this.writeBoxHeader(e,e.size??e.contents.byteLength+8),this.writer.write(e.contents);else{let t=this.writer.getPos();if(this.writeBoxHeader(e,0),e.contents&&this.writer.write(e.contents),e.children)for(let t of e.children)t&&this.writeBox(t);let n=this.writer.getPos(),r=e.size??n-t;this.writer.seek(t),this.writeBoxHeader(e,r),this.writer.seek(n)}}writeBoxHeader(e,t){this.writeU32(e.largeSize?1:t),this.writeAscii(e.type),e.largeSize&&this.writeU64(t)}measureBoxHeader(e){return 8+(e.largeSize?8:0)}patchBox(e){let t=this.offsets.get(e);r(t!==void 0);let n=this.writer.getPos();this.writer.seek(t),this.writeBox(e),this.writer.seek(n)}measureBox(e){if(e.contents&&!e.children)return this.measureBoxHeader(e)+e.contents.byteLength;{let t=this.measureBoxHeader(e);if(e.contents&&(t+=e.contents.byteLength),e.children)for(let n of e.children)n&&(t+=this.measureBox(n));return t}}},K=new Uint8Array(8),Ju=new DataView(K.buffer),q=e=>[(e%256+256)%256],J=e=>(Ju.setUint16(0,e,!1),[K[0],K[1]]),Yu=e=>(Ju.setInt16(0,e,!1),[K[0],K[1]]),Xu=e=>(Ju.setUint32(0,e,!1),[K[1],K[2],K[3]]),Y=e=>(Ju.setUint32(0,e,!1),[K[0],K[1],K[2],K[3]]),Zu=e=>(Ju.setInt32(0,e,!1),[K[0],K[1],K[2],K[3]]),Qu=e=>(Ju.setUint32(0,Math.floor(e/2**32),!1),Ju.setUint32(4,e,!1),[K[0],K[1],K[2],K[3],K[4],K[5],K[6],K[7]]),$u=e=>(Ju.setInt32(0,Math.floor(e/2**32),!1),Ju.setUint32(4,e,!1),[K[0],K[1],K[2],K[3],K[4],K[5],K[6],K[7]]),ed=e=>(Ju.setInt16(0,256*e,!1),[K[0],K[1]]),td=e=>(Ju.setInt32(0,2**16*e,!1),[K[0],K[1],K[2],K[3]]),nd=e=>(Ju.setInt32(0,2**30*e,!1),[K[0],K[1],K[2],K[3]]),rd=(e,t)=>{let n=[],r=e;do{let e=r&127;r>>=7,n.length>0&&(e|=128),n.push(e),t!==void 0&&t--}while(r>0||t);return n.reverse()},X=(e,t=!1)=>{let n=Array(e.length).fill(null).map((t,n)=>e.charCodeAt(n));return t&&n.push(0),n},id=e=>{let t=Math.PI/180*e,n=Math.round(Math.cos(t)),r=Math.round(Math.sin(t));return[n,r,0,-r,n,0,0,0,1]},ad=id(0),od=e=>[td(e[0]),td(e[1]),nd(e[2]),td(e[3]),td(e[4]),nd(e[5]),td(e[6]),td(e[7]),nd(e[8])],Z=(e,t,n)=>({type:e,contents:t&&new Uint8Array(t.flat(10)),children:n}),Q=(e,t,n,r,i)=>Z(e,[q(t),Xu(n),r??[]],i),sd=e=>e.isQuickTime?Z(`ftyp`,[X(`qt `),Y(512),X(`qt `)]):e.fragmented?e.cmaf?Z(`ftyp`,[X(`iso5`),Y(512),X(`iso5`),X(`iso6`),X(`mp41`),X(`cmfc`),X(`dash`)]):Z(`ftyp`,[X(`iso5`),Y(512),X(`iso5`),X(`iso6`),X(`mp41`)]):Z(`ftyp`,[X(`isom`),Y(512),X(`isom`),e.holdsAvc?X(`avc1`):[],X(`mp41`)]),cd=()=>Z(`styp`,[X(`iso5`),Y(0),X(`iso5`),X(`iso6`),X(`mp41`),X(`cmfc`),X(`dash`)]),ld=(e,t)=>{let n=e.maxWrittenEndTimestamp-e.minWrittenTimestamp;return Number.isFinite(n)||(n=0),Q(`sidx`,1,0,[Y(1),Y(Jf),Qu($(e.minWrittenTimestamp,Jf)),Qu(0),J(0),J(1),Y(t&2147483647),Y($(n,Jf)),Y(0)])},ud=e=>({type:`mdat`,largeSize:e}),dd=e=>({type:`free`,size:e}),fd=e=>Z(`moov`,void 0,[pd(e.creationTime,e.trackDatas),...e.trackDatas.map(t=>hd(t,e.creationTime)),e.isFragmented?rf(e.trackDatas):null,yf(e)]),pd=(e,t)=>{let n=Math.max(0,...t.map(e=>$(md(e),Jf)+$(e.startTimestampOffset??0,Jf))),r=Math.max(0,...t.map(e=>e.track.id))+1,i=!o(e)||!o(n),a=i?Qu:Y;return Q(`mvhd`,+i,0,[a(e),a(e),Y(Jf),a(n),td(1),ed(1),Array(10).fill(0),od(ad),Array(24).fill(0),Y(r)])},md=e=>{if(e.samples.length===0)return 0;let t=1/0,n=-1/0;for(let r=0;r<e.samples.length;r++){let i=e.samples[r];i.timestamp<t&&(t=i.timestamp),i.timestamp+i.duration>n&&(n=i.timestamp+i.duration)}return t===1/0?0:n-t},hd=(e,t)=>{let n=Xf(e),r=e.startTimestampOffset!==null&&e.startTimestampOffset>0;return Z(`trak`,void 0,[gd(e,t),r?_d(e,e.startTimestampOffset):null,vd(e,t),n.name===void 0?null:Z(`udta`,void 0,[Z(`name`,[...p.encode(n.name)])])])},gd=(e,t)=>{let n=$(md(e),Jf)+$(e.startTimestampOffset??0,Jf),r=!o(t)||!o(n),i=r?Qu:Y,a;if(e.type===`video`){let t=e.track.metadata.rotation;a=id(t??0)}else a=ad;let s=2;e.track.metadata.disposition?.default!==!1&&(s|=1);let c=e.type===`video`?0:e.type===`audio`?1:e.type===`subtitle`?2:E(e);return Q(`tkhd`,+r,s,[i(t),i(t),Y(e.track.id),Y(0),i(n),Array(8).fill(0),J(0),J(c),ed(+(e.type===`audio`)),J(0),od(a),td(e.type===`video`?e.info.width:0),td(e.type===`video`?e.info.height:0)])},_d=(e,t)=>{let n=$(t,Jf),r=$(md(e),Jf),i=!o(n)||!o(r),a=i?Qu:Y,s=i?$u:Zu;return Z(`edts`,void 0,[Q(`elst`,+!!i,0,[Y(2),a(n),s(-1),td(1),a(r),s(0),td(1)])])},vd=(e,t)=>Z(`mdia`,void 0,[yd(e,t),Sd(!0,bd[e.type],xd[e.type]),Cd(e)]),yd=(e,t)=>{let n=$(md(e),e.timescale),r=!o(t)||!o(n),i=r?Qu:Y;return Q(`mdhd`,+r,0,[i(t),i(t),Y(e.timescale),i(n),J(Nf(e.track.metadata.languageCode??`und`)),J(0)])},bd={video:`vide`,audio:`soun`,subtitle:`text`},xd={video:`MediabunnyVideoHandler`,audio:`MediabunnySoundHandler`,subtitle:`MediabunnyTextHandler`},Sd=(e,t,n,r=`\0\0\0\0`)=>Q(`hdlr`,0,0,[e?X(`mhlr`):Y(0),X(t),X(r),Y(0),Y(0),X(n,!0)]),Cd=e=>Z(`minf`,void 0,[wd[e.type](),Td(),Od(e)]),wd={video:()=>Q(`vmhd`,0,1,[J(0),J(0),J(0),J(0)]),audio:()=>Q(`smhd`,0,0,[J(0),J(0)]),subtitle:()=>Q(`nmhd`,0,0)},Td=()=>Z(`dinf`,void 0,[Ed()]),Ed=()=>Q(`dref`,0,0,[Y(1)],[Dd()]),Dd=()=>Q(`url `,0,1),Od=e=>{let t=e.compositionTimeOffsetTable.length>1||e.compositionTimeOffsetTable.some(e=>e.sampleCompositionTimeOffset!==0);return Z(`stbl`,void 0,[kd(e),Xd(e),t?tf(e):null,t?nf(e):null,Qd(e),$d(e),ef(e),Zd(e)])},kd=e=>{let t;if(e.type===`video`)t=Ad(Df(e.track.source._codec,e.info.decoderConfig.codec),e);else if(e.type===`audio`){let n=kf(e.track.source._codec,e.info.decoderConfig.codec,e.muxer.isQuickTime);r(n),t=Ld(n,e)}else e.type===`subtitle`&&(t=Jd(jf[e.track.source._codec],e));return r(t),Q(`stsd`,0,0,[Y(1)],[t])},Ad=(e,t)=>Z(e,[[,,,,,,].fill(0),J(1),J(0),J(0),Array(12).fill(0),J(t.info.width),J(t.info.height),Y(4718592),Y(4718592),Y(0),J(1),q(10),X(`Mediabunny`),Array(21).fill(0),J(t.info.hasAlphaChannel?32:24),Yu(65535)],[Of[t.track.source._codec]?.(t)??null,jd(t),C(t.info.decoderConfig.colorSpace)?null:Md(t)]),jd=e=>e.info.pixelAspectRatio.num===e.info.pixelAspectRatio.den?null:Z(`pasp`,[Y(e.info.pixelAspectRatio.num),Y(e.info.pixelAspectRatio.den)]),Md=e=>{let t=e.info.decoderConfig.colorSpace;return Z(`colr`,[X(e.muxer.isQuickTime?`nclc`:`nclx`),J(t?.primaries==null?2:g[t.primaries]),J(t?.transfer==null?2:v[t.transfer]),J(t?.matrix==null?2:b[t.matrix]),e.muxer.isQuickTime?[]:q(!!t?.fullRange<<7)])},Nd=e=>e.info.decoderConfig&&Z(`avcC`,[...u(e.info.decoderConfig.description)]),Pd=e=>e.info.decoderConfig&&Z(`hvcC`,[...u(e.info.decoderConfig.description)]),Fd=e=>{if(!e.info.decoderConfig)return null;let t=e.info.decoderConfig,n=t.codec.split(`.`),r=Number(n[1]),i=Number(n[2]),a=Number(n[3]),o=n[4]?Number(n[4]):1,s=n[8]?Number(n[8]):Number(t.colorSpace?.fullRange??0),c=(a<<4)+(o<<1)+s,l=n[5]?Number(n[5]):t.colorSpace?.primaries?g[t.colorSpace.primaries]:1,u=n[6]?Number(n[6]):t.colorSpace?.transfer?v[t.colorSpace.transfer]:1,d=n[7]?Number(n[7]):t.colorSpace?.matrix?b[t.colorSpace.matrix]:1;return Q(`vpcC`,1,0,[q(r),q(i),q(c),q(l),q(u),q(d),J(0)])},Id=e=>Z(`av1C`,Sr(e.info.decoderConfig.codec)),Ld=(e,t)=>{let n=0,r,i=16,a=P.includes(t.track.source._codec);if(a){let e=t.track.source._codec,{sampleSize:r}=Ar(e);i=8*r,i>16&&(n=1)}if(t.muxer.isQuickTime&&(n=1),n===0)r=[[,,,,,,].fill(0),J(1),J(n),J(0),Y(0),J(t.info.numberOfChannels),J(i),J(0),J(0),J(t.info.sampleRate<2**16?t.info.sampleRate:0),J(0)];else{let e=a?0:-2;r=[[,,,,,,].fill(0),J(1),J(n),J(0),Y(0),J(t.info.numberOfChannels),J(Math.min(i,16)),Yu(e),J(0),J(t.info.sampleRate<2**16?t.info.sampleRate:0),J(0),a?[Y(1),Y(i/8),Y(t.info.numberOfChannels*i/8)]:[Y(0),Y(0),Y(0)],Y(2)]}return Z(e,r,[Af(t.track.source._codec,t.muxer.isQuickTime)?.(t)??null])},Rd=e=>{let t;switch(e.track.source._codec){case`aac`:t=64;break;case`mp3`:t=107;break;case`vorbis`:t=221;break;default:throw Error(`Unhandled audio codec: ${e.track.source._codec}`)}let n=[...q(t),...q(21),...Xu(0),...Y(0),...Y(0)];if(e.info.decoderConfig.description){let t=u(e.info.decoderConfig.description);n=[...n,...q(5),...rd(t.byteLength),...t]}return n=[...J(1),...q(0),...q(4),...rd(n.length),...n,...q(6),...q(1),...q(2)],n=[...q(3),...rd(n.length),...n],Q(`esds`,0,0,n)},zd=e=>Z(`wave`,void 0,[Bd(e),Vd(e),Z(`\0\0\0\0`)]),Bd=e=>Z(`frma`,[X(kf(e.track.source._codec,e.info.decoderConfig.codec,e.muxer.isQuickTime))]),Vd=e=>{let{littleEndian:t}=Ar(e.track.source._codec);return Z(`enda`,[J(+t)])},Hd=e=>{let t=e.info.numberOfChannels,n=3840,i=e.info.sampleRate,a=0,o=0,s=new Uint8Array,c=e.info.decoderConfig?.description;if(c){r(c.byteLength>=18);let e=Tn(u(c));t=e.outputChannelCount,n=e.preSkip,i=e.inputSampleRate,a=e.outputGain,o=e.channelMappingFamily,e.channelMappingTable&&(s=e.channelMappingTable)}return Z(`dOps`,[q(0),q(t),J(n),Y(i),Yu(a),q(o),...s])},Ud=e=>{let t=e.info.decoderConfig?.description;return r(t),Q(`dfLa`,0,0,[...u(t).subarray(4)])},Wd=e=>{let{littleEndian:t,sampleSize:n}=Ar(e.track.source._codec);return Q(`pcmC`,0,0,[q(+t),q(8*n)])},Gd=e=>{r(e.info.primingPacket);let t=Pn(e.info.primingPacket.data);if(!t)throw Error(`Couldn't extract AC-3 frame info from the audio packet. Ensure the packets contain valid AC-3 sync frames (as specified in ETSI TS 102 366).`);let n=new Uint8Array(3),i=new A(n);return i.writeBits(2,t.fscod),i.writeBits(5,t.bsid),i.writeBits(3,t.bsmod),i.writeBits(3,t.acmod),i.writeBits(1,t.lfeon),i.writeBits(5,t.bitRateCode),i.writeBits(5,0),Z(`dac3`,[...n])},Kd=e=>{r(e.info.primingPacket);let t=Bn(e.info.primingPacket.data);if(!t)throw Error(`Couldn't extract E-AC-3 frame info from the audio packet. Ensure the packets contain valid E-AC-3 sync frames (as specified in ETSI TS 102 366).`);let n=16;for(let e of t.substreams)n+=23,e.numDepSub>0?n+=9:n+=1;let i=Math.ceil(n/8),a=new Uint8Array(i),o=new A(a);o.writeBits(13,t.dataRate),o.writeBits(3,t.substreams.length-1);for(let e of t.substreams)o.writeBits(2,e.fscod),o.writeBits(5,e.bsid),o.writeBits(1,0),o.writeBits(1,0),o.writeBits(3,e.bsmod),o.writeBits(3,e.acmod),o.writeBits(1,e.lfeon),o.writeBits(3,0),o.writeBits(4,e.numDepSub),e.numDepSub>0?o.writeBits(9,e.chanLoc):o.writeBits(1,0);return Z(`dec3`,[...a])},qd=e=>{r(e.info.primingPacket);let t=nr(e.info.primingPacket.data);if(!t)throw Error(`Couldn't extract DTS frame info from the audio packet. Ensure the packets contain valid DTS frames as specified in ETSI TS 102 114.`);return Z(`ddts`,[...sr(t)])},Jd=(e,t)=>Z(e,[[,,,,,,].fill(0),J(1)],[Mf[t.track.source._codec](t)]),Yd=e=>Z(`vttC`,[...p.encode(e.info.config.description)]),Xd=e=>Q(`stts`,0,0,[Y(e.timeToSampleTable.length),e.timeToSampleTable.map(e=>[Y(e.sampleCount),Y(e.sampleDelta)])]),Zd=e=>{if(e.samples.every(e=>e.type===`key`))return null;let t=[...e.samples.entries()].filter(([,e])=>e.type===`key`);return Q(`stss`,0,0,[Y(t.length),t.map(([e])=>Y(e+1))])},Qd=e=>Q(`stsc`,0,0,[Y(e.compactlyCodedChunkTable.length),e.compactlyCodedChunkTable.map(e=>[Y(e.firstChunk),Y(e.samplesPerChunk),Y(1)])]),$d=e=>{if(e.type===`audio`&&e.info.requiresPcmTransformation){let{sampleSize:t}=Ar(e.track.source._codec);return Q(`stsz`,0,0,[Y(t*e.info.numberOfChannels),Y(e.samples.reduce((t,n)=>t+$(n.duration,e.timescale),0))])}return Q(`stsz`,0,0,[Y(0),Y(e.samples.length),e.samples.map(e=>Y(e.size))])},ef=e=>e.finalizedChunks.length>0&&a(e.finalizedChunks).offset>=2**32?Q(`co64`,0,0,[Y(e.finalizedChunks.length),e.finalizedChunks.map(e=>Qu(e.offset))]):Q(`stco`,0,0,[Y(e.finalizedChunks.length),e.finalizedChunks.map(e=>Y(e.offset))]),tf=e=>Q(`ctts`,1,0,[Y(e.compositionTimeOffsetTable.length),e.compositionTimeOffsetTable.map(e=>[Y(e.sampleCount),Zu(e.sampleCompositionTimeOffset)])]),nf=e=>{let t=1/0,n=-1/0,i=1/0,a=-1/0;r(e.compositionTimeOffsetTable.length>0),r(e.samples.length>0);for(let r=0;r<e.compositionTimeOffsetTable.length;r++){let i=e.compositionTimeOffsetTable[r];t=Math.min(t,i.sampleCompositionTimeOffset),n=Math.max(n,i.sampleCompositionTimeOffset)}for(let t=0;t<e.samples.length;t++){let n=e.samples[t];i=Math.min(i,$(n.timestamp,e.timescale)),a=Math.max(a,$(n.timestamp+n.duration,e.timescale))}let o=Math.max(-t,0);return a>=2**31?null:Q(`cslg`,0,0,[Zu(o),Zu(t),Zu(n),Zu(i),Zu(a)])},rf=e=>Z(`mvex`,void 0,e.map(af)),af=e=>Q(`trex`,0,0,[Y(e.track.id),Y(1),Y(0),Y(0),Y(0)]),of=(e,t)=>Z(`moof`,void 0,[sf(e),...t.map(lf)]),sf=e=>Q(`mfhd`,0,0,[Y(e)]),cf=e=>{let t=0,n=0,r=e.type===`delta`;return n|=+r,t|=r?1:2,t<<24|n<<16|0},lf=e=>Z(`traf`,void 0,[uf(e),df(e),ff(e)]),uf=e=>{r(e.currentChunk);let t=0;t|=8,t|=16,t|=32,t|=131072;let n=e.currentChunk.samples[1]??e.currentChunk.samples[0],i={duration:n.timescaleUnitsToNextSample,size:n.size,flags:cf(n)};return Q(`tfhd`,0,t,[Y(e.track.id),Y(i.duration),Y(i.size),Y(i.flags)])},df=e=>(r(e.currentChunk),Q(`tfdt`,1,0,[Qu($(e.currentChunk.startTimestamp,e.timescale))])),ff=e=>{r(e.currentChunk);let t=e.currentChunk.samples.map(e=>e.timescaleUnitsToNextSample),n=e.currentChunk.samples.map(e=>e.size),i=e.currentChunk.samples.map(cf),a=e.currentChunk.samples.map(t=>$(t.timestamp-t.decodeTimestamp,e.timescale)),o=new Set(t),s=new Set(n),c=new Set(i),l=new Set(a),u=c.size===2&&i[0]!==i[1],d=o.size>1,f=s.size>1,p=!u&&c.size>1,m=l.size>1||[...l].some(e=>e!==0),h=0;return h|=1,h|=4*u,h|=256*d,h|=512*f,h|=1024*p,h|=2048*m,Q(`trun`,1,h,[Y(e.currentChunk.samples.length),Y(e.currentChunk.offset-e.currentChunk.moofOffset||0),u?Y(i[0]):[],e.currentChunk.samples.map((e,r)=>[d?Y(t[r]):[],f?Y(n[r]):[],p?Y(i[r]):[],m?Zu(a[r]):[]])])},pf=e=>Z(`mfra`,void 0,[...e.map(mf),hf()]),mf=e=>Q(`tfra`,1,0,[Y(e.track.id),Y(63),Y(e.finalizedChunks.length),e.finalizedChunks.map(t=>[Qu($(t.samples[0].timestamp,e.timescale)),Qu(t.moofOffset),Y(t.trafIndex+1),Y(1),Y(1)])]),hf=()=>Q(`mfro`,0,0,[Y(0)]),gf=()=>Z(`vtte`),_f=(e,t,n,r,i)=>Z(`vttc`,void 0,[i===null?null:Z(`vsid`,[Zu(i)]),n===null?null:Z(`iden`,[...p.encode(n)]),t===null?null:Z(`ctim`,[...p.encode(Ku(t))]),r===null?null:Z(`sttg`,[...p.encode(r)]),Z(`payl`,[...p.encode(e)])]),vf=e=>Z(`vtta`,[...p.encode(e)]),yf=e=>{let t=[],n=e.format._options.metadataFormat??`auto`,r=e.output._metadataTags;if(n===`mdir`||n===`auto`&&!e.isQuickTime){let e=wf(r);e&&t.push(e)}else if(n===`mdta`){let e=Tf(r);e&&t.push(e)}else(n===`udta`||n===`auto`&&e.isQuickTime)&&bf(t,e.output._metadataTags);return t.length===0?null:Z(`udta`,void 0,t)},bf=(e,t)=>{for(let{key:n,value:r}of Ke(t))switch(n){case`title`:e.push(xf(`©nam`,r));break;case`description`:e.push(xf(`©des`,r));break;case`artist`:e.push(xf(`©ART`,r));break;case`album`:e.push(xf(`©alb`,r));break;case`albumArtist`:e.push(xf(`albr`,r));break;case`genre`:e.push(xf(`©gen`,r));break;case`date`:e.push(xf(`©day`,r.toISOString().slice(0,10)));break;case`comment`:e.push(xf(`©cmt`,r));break;case`lyrics`:e.push(xf(`©lyr`,r));break;case`raw`:break;case`discNumber`:case`discsTotal`:case`trackNumber`:case`tracksTotal`:case`images`:break;default:E(n)}if(t.raw)for(let n in t.raw){let r=t.raw[n];r==null||n.length!==4||e.some(e=>e.type===n)||(typeof r==`string`?e.push(xf(n,r)):r instanceof Uint8Array&&e.push(Z(n,Array.from(r))))}},xf=(e,t)=>{let n=p.encode(t);return Z(e,[J(n.length),J(Nf(`und`)),Array.from(n)])},Sf={"image/jpeg":13,"image/png":14,"image/bmp":27},Cf=(e,t)=>{let n=[];for(let{key:r,value:i}of Ke(e))switch(r){case`title`:n.push({key:t?`title`:`©nam`,value:Ef(i)});break;case`description`:n.push({key:t?`description`:`©des`,value:Ef(i)});break;case`artist`:n.push({key:t?`artist`:`©ART`,value:Ef(i)});break;case`album`:n.push({key:t?`album`:`©alb`,value:Ef(i)});break;case`albumArtist`:n.push({key:t?`album_artist`:`aART`,value:Ef(i)});break;case`comment`:n.push({key:t?`comment`:`©cmt`,value:Ef(i)});break;case`genre`:n.push({key:t?`genre`:`©gen`,value:Ef(i)});break;case`lyrics`:n.push({key:t?`lyrics`:`©lyr`,value:Ef(i)});break;case`date`:n.push({key:t?`date`:`©day`,value:Ef(i.toISOString().slice(0,10))});break;case`images`:for(let e of i)e.kind===`coverFront`&&n.push({key:`covr`,value:Z(`data`,[Y(Sf[e.mimeType]??0),Y(0),Array.from(e.data)])});break;case`trackNumber`:if(t){let t=e.tracksTotal===void 0?i.toString():`${i}/${e.tracksTotal}`;n.push({key:`track`,value:Ef(t)})}else n.push({key:`trkn`,value:Z(`data`,[Y(0),Y(0),J(0),J(i),J(e.tracksTotal??0),J(0)])});break;case`discNumber`:t||n.push({key:`disc`,value:Z(`data`,[Y(0),Y(0),J(0),J(i),J(e.discsTotal??0),J(0)])});break;case`tracksTotal`:case`discsTotal`:break;case`raw`:break;default:E(r)}if(e.raw)for(let r in e.raw){let i=e.raw[r];i==null||!t&&r.length!==4||n.some(e=>e.key===r)||(typeof i==`string`?n.push({key:r,value:Ef(i)}):i instanceof Uint8Array?n.push({key:r,value:Z(`data`,[Y(0),Y(0),Array.from(i)])}):i instanceof xt&&n.push({key:r,value:Z(`data`,[Y(Sf[i.mimeType]??0),Y(0),Array.from(i.data)])}))}return n},wf=e=>{let t=Cf(e,!1);return t.length===0?null:Q(`meta`,0,0,void 0,[Sd(!1,`mdir`,``,`appl`),Z(`ilst`,void 0,t.map(e=>Z(e.key,void 0,[e.value])))])},Tf=e=>{let t=Cf(e,!0);return t.length===0?null:Z(`meta`,void 0,[Sd(!1,`mdta`,``),Q(`keys`,0,0,[Y(t.length)],t.map(e=>Z(`mdta`,[...p.encode(e.key)]))),Z(`ilst`,void 0,t.map((e,t)=>Z(String.fromCharCode(...Y(t+1)),void 0,[e.value])))])},Ef=e=>Z(`data`,[Y(1),Y(0),...p.encode(e)]),Df=(e,t)=>{switch(e){case`avc`:return t.startsWith(`avc3`)?`avc3`:`avc1`;case`hevc`:return`hvc1`;case`vp8`:return`vp08`;case`vp9`:return`vp09`;case`av1`:return`av01`;case`prores`:return t}},Of={avc:Nd,hevc:Pd,vp8:Fd,vp9:Fd,av1:Id,prores:null},kf=(e,t,n)=>{switch(e){case`aac`:return`mp4a`;case`mp3`:return`mp4a`;case`opus`:return`Opus`;case`vorbis`:return`mp4a`;case`flac`:return`fLaC`;case`ulaw`:return`ulaw`;case`alaw`:return`alaw`;case`pcm-u8`:return`raw `;case`pcm-s8`:return`sowt`;case`ac3`:return`ac-3`;case`eac3`:return`ec-3`;case`dts`:return t}if(n)switch(e){case`pcm-s16`:return`sowt`;case`pcm-s16be`:return`twos`;case`pcm-s24`:return`in24`;case`pcm-s24be`:return`in24`;case`pcm-s32`:return`in32`;case`pcm-s32be`:return`in32`;case`pcm-f32`:return`fl32`;case`pcm-f32be`:return`fl32`;case`pcm-f64`:return`fl64`;case`pcm-f64be`:return`fl64`}else switch(e){case`pcm-s16`:return`ipcm`;case`pcm-s16be`:return`ipcm`;case`pcm-s24`:return`ipcm`;case`pcm-s24be`:return`ipcm`;case`pcm-s32`:return`ipcm`;case`pcm-s32be`:return`ipcm`;case`pcm-f32`:return`fpcm`;case`pcm-f32be`:return`fpcm`;case`pcm-f64`:return`fpcm`;case`pcm-f64be`:return`fpcm`}},Af=(e,t)=>{switch(e){case`aac`:return Rd;case`mp3`:return Rd;case`opus`:return Hd;case`vorbis`:return Rd;case`flac`:return Ud;case`ac3`:return Gd;case`eac3`:return Kd;case`dts`:return qd}if(t)switch(e){case`pcm-s24`:return zd;case`pcm-s24be`:return zd;case`pcm-s32`:return zd;case`pcm-s32be`:return zd;case`pcm-f32`:return zd;case`pcm-f32be`:return zd;case`pcm-f64`:return zd;case`pcm-f64be`:return zd}else switch(e){case`pcm-s16`:return Wd;case`pcm-s16be`:return Wd;case`pcm-s24`:return Wd;case`pcm-s24be`:return Wd;case`pcm-s32`:return Wd;case`pcm-s32be`:return Wd;case`pcm-f32`:return Wd;case`pcm-f32be`:return Wd;case`pcm-f64`:return Wd;case`pcm-f64be`:return Wd}return null},jf={webvtt:`wvtt`},Mf={webvtt:Yd},Nf=e=>{r(e.length===3);let t=0;for(let n=0;n<3;n++)t<<=5,t+=e.charCodeAt(n)-96;return t},Pf=class{constructor(e,t){if(this.finalized=!1,this.started=!1,this.pos=0,this.trackedWrites=null,this.trackedStart=-1,this.trackedEnd=-1,e._writerAcquired)throw Error(`Can't have multiple Writers for the same Target.`);this.target=e,e._setMonotonicity(t),e._writerAcquired=!0}start(){r(!this.started),this.target._start(),this.started=!0}write(e){r(this.started&&!this.finalized),this.maybeTrackWrites(e),this.target._write(e,this.pos),this.pos+=e.byteLength}seek(e){this.pos=e}getPos(){return this.pos}async flush(){return r(this.started&&!this.finalized),this.target._flush()}async finalize(){r(this.started&&!this.finalized),await this.target._finalize(),this.finalized=!0}maybeTrackWrites(e){if(!this.trackedWrites)return;let t=this.getPos();if(t<this.trackedStart){if(t+e.byteLength<=this.trackedStart)return;e=e.subarray(this.trackedStart-t),t=0}let n=t+e.byteLength-this.trackedStart,r=this.trackedWrites.byteLength;for(;r<n;)r*=2;if(r!==this.trackedWrites.byteLength){let e=new Uint8Array(r);e.set(this.trackedWrites,0),this.trackedWrites=e}this.trackedWrites.set(e,t-this.trackedStart),this.trackedEnd=Math.max(this.trackedEnd,t+e.byteLength)}startTrackingWrites(){this.trackedWrites=new Uint8Array(1024),this.trackedStart=this.getPos(),this.trackedEnd=this.trackedStart}stopTrackingWrites(){if(!this.trackedWrites)throw Error(`Internal error: Can't get tracked writes since nothing was tracked.`);let e={data:this.trackedWrites.subarray(0,this.trackedEnd-this.trackedStart),start:this.trackedStart,end:this.trackedEnd};return this.trackedWrites=null,e}},Ff=Fo===void 0?void 0:Fo,If=class extends gt{constructor(){super(...arguments),this._writerAcquired=!1,this._monotonicity=null,this.onwrite=null}_setMonotonicity(e){this._monotonicity!==!1&&(this._monotonicity=e)}_dispatchWrite(e,t){this.onwrite?.(e,t),this._emit(`write`,{start:e,end:t})}slice(e){if(!Number.isInteger(e)||e<0)throw TypeError(`offset must be a non-negative integer.`);return new Kf(this,e)}},Lf=2**16,Rf=2**32,zf=class extends If{constructor(e={}){if(super(),this.buffer=null,this._maxPos=0,!e||typeof e!=`object`)throw TypeError(`BufferTarget options, when provided, must be an object.`);if(e.onFinalize!==void 0&&typeof e.onFinalize!=`function`)throw TypeError(`options.onFinalize, when provided, must be a function.`);if(this._options=e,this._supportsResize=`resize`in new ArrayBuffer(0),this._supportsResize)try{this._buffer=new ArrayBuffer(Lf,{maxByteLength:Rf})}catch{this._buffer=new ArrayBuffer(Lf),this._supportsResize=!1}else this._buffer=new ArrayBuffer(Lf);this._bytes=new Uint8Array(this._buffer)}_ensureSize(e){let t=this._buffer.byteLength;for(;t<e;)t*=2;if(t!==this._buffer.byteLength){if(t>Rf)throw Error(`ArrayBuffer exceeded maximum size of ${Rf} bytes. Please consider using another target.`);if(this._supportsResize)this._buffer.resize(t);else{let e=new ArrayBuffer(t),n=new Uint8Array(e);n.set(this._bytes,0),this._buffer=e,this._bytes=n}}}_start(){}_write(e,t){this._ensureSize(t+e.byteLength),this._bytes.set(e,t),this._maxPos=Math.max(this._maxPos,t+e.byteLength),this._dispatchWrite(t,t+e.byteLength)}async _flush(){}async _finalize(){this.buffer=this._buffer.slice(0,this._maxPos),this._options.onFinalize&&await this._options.onFinalize(this.buffer),this._emit(`finalized`)}async _close(){}_getSlice(e,t){return this._bytes.slice(e,t)}},Bf=2**24,Vf=2,Hf=class extends If{constructor(e,t={}){if(super(),this._sections=[],this._lastWriteEnd=0,this._lastFlushEnd=0,this._streamWriter=null,this._writeError=null,this._chunks=[],!(e instanceof WritableStream))throw TypeError(`StreamTarget requires a WritableStream instance.`);if(t!=null&&typeof t!=`object`)throw TypeError(`StreamTarget options, when provided, must be an object.`);if(t.chunked!==void 0&&typeof t.chunked!=`boolean`)throw TypeError(`options.chunked, when provided, must be a boolean.`);if(t.chunkSize!==void 0&&(!Number.isInteger(t.chunkSize)||t.chunkSize<1024))throw TypeError(`options.chunkSize, when provided, must be an integer and not smaller than 1024.`);this._writable=e,this._options=t,this._chunked=t.chunked??!1,this._chunkSize=t.chunkSize??Bf}_start(){this._streamWriter=this._writable.getWriter()}_write(e,t){if(t>this._lastWriteEnd){let e=t-this._lastWriteEnd;this._write(new Uint8Array(e),this._lastWriteEnd)}this._sections.push({data:e.slice(),start:t}),this._lastWriteEnd=Math.max(this._lastWriteEnd,t+e.byteLength),this._dispatchWrite(t,t+e.byteLength)}async _flush(){if(this._writeError!==null)throw this._writeError;if(r(this._streamWriter),this._sections.length===0)return;let e=[],t=[...this._sections].sort((e,t)=>e.start-t.start);e.push({start:t[0].start,size:t[0].data.byteLength});for(let n=1;n<t.length;n++){let r=e[e.length-1],i=t[n];i.start<=r.start+r.size?r.size=Math.max(r.size,i.start+i.data.byteLength-r.start):e.push({start:i.start,size:i.data.byteLength})}for(let t of e){t.data=new Uint8Array(t.size);for(let e of this._sections)t.start<=e.start&&e.start<t.start+t.size&&t.data.set(e.data,e.start-t.start);if(this._streamWriter.desiredSize!==null&&this._streamWriter.desiredSize<=0&&await this._streamWriter.ready,this._chunked)this._writeDataIntoChunks(t.data,t.start),this._tryToFlushChunks();else{if(this._monotonicity===!0&&t.start!==this._lastFlushEnd)throw Error(`Internal error: Monotonicity violation.`);this._streamWriter.write({type:`write`,data:t.data,position:t.start}).catch(e=>{this._writeError??=e}),this._lastFlushEnd=t.start+t.data.byteLength}}this._sections.length=0}_writeDataIntoChunks(e,t){let n=this._chunks.findIndex(e=>e.start<=t&&t<e.start+this._chunkSize);n===-1&&(n=this._createChunk(t));let r=this._chunks[n],i=t-r.start,a=e.subarray(0,Math.min(this._chunkSize-i,e.byteLength));r.data.set(a,i);let o={start:i,end:i+a.byteLength};if(this._insertSectionIntoChunk(r,o),r.written[0].start===0&&r.written[0].end===this._chunkSize&&(r.shouldFlush=!0),this._chunks.length>Vf){for(let e=0;e<this._chunks.length-1;e++)this._chunks[e].shouldFlush=!0;this._tryToFlushChunks()}a.byteLength<e.byteLength&&this._writeDataIntoChunks(e.subarray(a.byteLength),t+a.byteLength)}_insertSectionIntoChunk(e,t){let n=0,r=e.written.length-1,i=-1;for(;n<=r;){let a=Math.floor(n+(r-n+1)/2);e.written[a].start<=t.start?(n=a+1,i=a):r=a-1}for(e.written.splice(i+1,0,t),(i===-1||e.written[i].end<t.start)&&i++;i<e.written.length-1&&e.written[i].end>=e.written[i+1].start;)e.written[i].end=Math.max(e.written[i].end,e.written[i+1].end),e.written.splice(i+1,1)}_createChunk(e){let t={start:Math.floor(e/this._chunkSize)*this._chunkSize,data:new Uint8Array(this._chunkSize),written:[],shouldFlush:!1};return this._chunks.push(t),this._chunks.sort((e,t)=>e.start-t.start),this._chunks.indexOf(t)}_tryToFlushChunks(e=!1){r(this._streamWriter);for(let t=0;t<this._chunks.length;t++){let n=this._chunks[t];if(n.shouldFlush||e){for(let e of n.written){let t=n.start+e.start;if(this._monotonicity===!0&&t!==this._lastFlushEnd)throw Error(`Internal error: Monotonicity violation.`);let r=e.start!==0||e.end!==n.data.byteLength,i;i=r&&Le()?n.data.slice(e.start,e.end):n.data.subarray(e.start,e.end),this._streamWriter.write({type:`write`,data:i,position:t}).catch(e=>{this._writeError??=e}),this._lastFlushEnd=n.start+e.end}this._chunks.splice(t--,1)}}}async _finalize(){if(this._chunked&&this._tryToFlushChunks(!0),this._writeError!==null)throw this._writeError;r(this._streamWriter),await this._streamWriter.ready,await this._streamWriter.close(),this._emit(`finalized`)}async _close(){return this._streamWriter?.close()}},Uf=class extends If{constructor(e){super(),this._writer=null,this._nextWritePos=0,this._writable=e,this._streamTarget=new Hf(new WritableStream({start:()=>{this._writer=this._writable.getWriter()},write:e=>{if(this._monotonicity!==!0)throw Error(`AppendOnlyStreamTarget requires that data be written monotonically (always appended to the end). You must use a format that guarantees this behavior.`);return r(e.position===this._nextWritePos),this._nextWritePos+=e.data.byteLength,r(this._writer),this._writer.write(e.data)},close:()=>this._writer?.close()}))}_start(){this._streamTarget._start()}_write(e,t){this._streamTarget._write(e,t)}_flush(){return this._streamTarget._flush()}_finalize(){return this._streamTarget._finalize()}_close(){return this._streamTarget._close()}_setMonotonicity(e){super._setMonotonicity(e),this._streamTarget._setMonotonicity(e)}},Wf=class extends If{constructor(e,t={}){if(typeof e!=`string`)throw TypeError(`filePath must be a string.`);if(!t||typeof t!=`object`)throw TypeError(`options must be an object.`);if(!Ff.fs)throw Error(`FilePathTarget is only available in server-side environments (Node.js, Bun, Deno).`);super(),this._fileHandle=null;let n=new WritableStream({start:async()=>{this._fileHandle=await Ff.fs.open(e,`w`)},write:async e=>{r(this._fileHandle),await this._fileHandle.write(e.data,0,e.data.byteLength,e.position)},close:async()=>{this._fileHandle&&=(await this._fileHandle.close(),null)}});this._streamTarget=new Hf(n,{chunked:!0,...t})}_start(){this._streamTarget._start()}_write(e,t){this._streamTarget._write(e,t),this._dispatchWrite(t,t+e.byteLength)}async _flush(){return this._streamTarget._flush()}async _finalize(){await this._streamTarget._finalize(),this._emit(`finalized`)}async _close(){return this._streamTarget._close()}_setMonotonicity(e){super._setMonotonicity(e),this._streamTarget._setMonotonicity(e)}},Gf=class extends If{_start(){}_write(e,t){this._dispatchWrite(t,t+e.byteLength)}async _flush(){}async _finalize(){this._emit(`finalized`)}async _close(){}},Kf=class extends If{constructor(e,t){super(),this._baseTarget=e,this._offset=t}_start(){}_write(e,t){this._baseTarget._write(e,this._offset+t),this._dispatchWrite(t,t+e.byteLength)}_flush(){return this._baseTarget._flush()}async _finalize(){this._emit(`finalized`)}async _close(){}_setMonotonicity(e){super._setMonotonicity(e),this._baseTarget._setMonotonicity(e)}},qf=class{constructor(e,t){if(this.rootPath=e,this.getTarget=t,typeof e!=`string`)throw TypeError(`rootPath must be a string.`);if(typeof t!=`function`)throw TypeError(`getTarget must be a function.`)}},Jf=57600,Yf=2082844800,Xf=e=>{let t={},n=e.track;return n.metadata.name!==void 0&&(t.name=n.metadata.name),t},$=(e,t,n=!0)=>{let r=e*t;return n?Math.round(r):r},Zf=class extends Pu{constructor(e,t){super(e),this.writer=null,this.boxWriter=null,this.initWriter=null,this.initBoxWriter=null,this.auxTarget=new zf,this.auxWriter=new Pf(this.auxTarget,!1),this.auxBoxWriter=new qu(this.auxWriter),this.mdat=null,this.ftypSize=null,this.trackDatas=[],this.allTracksKnown=T(),this.creationTime=Math.floor(Date.now()/1e3)+Yf,this.finalizedChunks=[],this.wroteFragmentedHeader=!1,this.nextFragmentNumber=1,this.maxWrittenTimestamp=-1/0,this.minWrittenTimestamp=1/0,this.maxWrittenEndTimestamp=-1/0,this.segmentHeaderSize=null,this.format=t,this.formatOptions={...t._options},this.isQuickTime=t instanceof cm,this.isCmaf=t instanceof sm,this.minimumFragmentDuration=this.formatOptions.minimumFragmentDuration??(t instanceof sm?1/0:1),this.auxWriter.start()}async start(){let e=await this.mutex.acquire();if(this.isCmaf?(this.fastStart=`fragmented`,this.isFragmented=!0):(this.writer=await this.output._getRootWriter(e=>this.formatOptions.fastStart===void 0?e instanceof zf:this.formatOptions.fastStart===`fragmented`),this.boxWriter=new qu(this.writer),this.fastStart=this.formatOptions.fastStart??(this.writer.target instanceof zf&&`in-memory`),this.isFragmented=this.fastStart===`fragmented`),this.isCmaf){if(!this.output._hasInitTarget())throw Error(`CMAF outputs require the initTarget field in OutputOptions to be set; the init segment will be written to it.`);let e=new Pf(await this.output._getInitTarget(),!0);e.start(),this.initWriter=e,this.initBoxWriter=new qu(e)}let t=this.output.tracks.some(e=>e.isVideoTrack()&&e.source._codec===`avc`);{let e=this.initBoxWriter??this.boxWriter;if(r(e),this.formatOptions.onFtyp&&e.writer.startTrackingWrites(),e.writeBox(sd({isQuickTime:this.isQuickTime,holdsAvc:t,fragmented:this.isFragmented,cmaf:this.isCmaf})),this.formatOptions.onFtyp){let{data:t,start:n}=e.writer.stopTrackingWrites();this.formatOptions.onFtyp(t,n)}this.ftypSize=e.writer.getPos(),this.isCmaf&&await this.initWriter.flush()}if(this.fastStart!==`in-memory`){if(this.fastStart===`reserve`){for(let e of this.output.tracks)if(e.metadata.maximumPacketCount===void 0)throw Error(`All tracks must specify maximumPacketCount in their metadata when using fastStart: 'reserve'.`)}else this.isFragmented||(r(this.writer),r(this.boxWriter),this.formatOptions.onMdat&&this.writer.startTrackingWrites(),this.mdat=ud(!0),this.boxWriter.writeBox(this.mdat))}await this.writer?.flush();for(let e of this.output.tracks)e.isVideoTrack()&&e.metadata.decoderConfig?this.getVideoTrackData(e,e.metadata.primingPacket??null,{decoderConfig:e.metadata.decoderConfig}):e.isAudioTrack()&&e.metadata.decoderConfig&&this.getAudioTrackData(e,e.metadata.primingPacket??null,{decoderConfig:e.metadata.decoderConfig});e()}allTracksAreKnown(){for(let e of this.output.tracks)if(!e.source._closed&&!this.trackDatas.some(t=>t.track===e))return!1;return!0}async getMimeType(){await this.allTracksKnown.promise;let e=this.trackDatas.map(e=>e.type===`video`||e.type===`audio`?e.info.decoderConfig.codec:{webvtt:`wvtt`}[e.track.source._codec]);return ni({isQuickTime:this.isQuickTime,hasVideo:this.trackDatas.some(e=>e.type===`video`),hasAudio:this.trackDatas.some(e=>e.type===`audio`),codecStrings:e})}getVideoTrackData(e,t,n){let i=this.trackDatas.find(t=>t.track===e);if(i)return i;zr(n,e.source._codec),r(n),r(n.decoderConfig);let a={...n.decoderConfig};r(a.codedWidth!==void 0),r(a.codedHeight!==void 0);let o=!1;if(e.source._codec===`avc`&&!a.description){if(!t)throw Error(`No AVC description provided; you must therefore provide a priming packet.`);let e=Yt(t.data);if(!e)throw Error(`Couldn't extract an AVCDecoderConfigurationRecord from the AVC packet. Make sure the packets are in Annex B format (as specified in ITU-T-REC-H.264) when not providing a description, or provide a description (must be an AVCDecoderConfigurationRecord as specified in ISO 14496-15) and ensure the packets are in AVCC format.`);a.description=Xt(e),o=!0}else if(e.source._codec===`hevc`&&!a.description){if(!t)throw Error(`No HEVC description provided; you must therefore provide a priming packet.`);let e=on(t.data);if(!e)throw Error(`Couldn't extract an HEVCDecoderConfigurationRecord from the HEVC packet. Make sure the packets are in Annex B format (as specified in ITU-T-REC-H.265) when not providing a description, or provide a description (must be an HEVCDecoderConfigurationRecord as specified in ISO 14496-15) and ensure the packets are in HEVC format.`);a.description=mn(e),o=!0}let s=Pe(1/(e.metadata.frameRate??57600),1e6).den,c=a.displayAspectWidth,l=a.displayAspectHeight,u=c===void 0||l===void 0?{num:1,den:1}:rt({num:c*a.codedHeight,den:l*a.codedWidth}),d=a.codec===`ap4h`||a.codec===`ap4x`,f={muxer:this,track:e,type:`video`,info:{width:a.codedWidth,height:a.codedHeight,pixelAspectRatio:u,decoderConfig:a,requiresAnnexBTransformation:o,hasAlphaChannel:d},timescale:s,samples:[],sampleQueue:[],timestampProcessingQueue:[],timeToSampleTable:[],compositionTimeOffsetTable:[],lastTimescaleUnits:null,lastSample:null,startTimestampOffset:null,finalizedChunks:[],currentChunk:null,compactlyCodedChunkTable:[],closed:!1};return this.trackDatas.push(f),this.trackDatas.sort((e,t)=>e.track.id-t.track.id),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),f}getAudioTrackData(e,t,n){let i=this.trackDatas.find(t=>t.track===e);if(i)return i;Vr(n,e.source._codec),r(n),r(n.decoderConfig);let a={...n.decoderConfig},o=!1;if(e.source._codec===`aac`&&!a.description){if(!t)throw Error(`No AAC description provided; you must therefore provide a priming packet.`);let e=Va(lu.tempFromBytes(t.data));if(!e)throw Error(`Couldn't parse ADTS header from the AAC packet. Make sure the packets are in ADTS format (as specified in ISO 13818-7) when not providing a description, or provide a description (must be an AudioSpecificConfig as specified in ISO 14496-3) and ensure the packets are raw AAC data.`);let n=Dt[e.samplingFrequencyIndex],r=Ot[e.channelConfiguration];if(n===void 0||r===void 0)throw Error(`Invalid ADTS frame header.`);a.description=Mt({objectType:e.objectType,outputSampleRate:n,outputNumberOfChannels:r}),o=!0}if(!t){if(e.source._codec===`ac3`||e.source._codec===`eac3`)throw Error(`AC-3/E-AC-3 require a priming packet.`);if(e.source._codec===`dts`)throw Error(`DTS requires a priming packet.`)}let s={muxer:this,track:e,type:`audio`,info:{numberOfChannels:n.decoderConfig.numberOfChannels,sampleRate:n.decoderConfig.sampleRate,decoderConfig:a,requiresPcmTransformation:!this.isFragmented&&P.includes(e.source._codec),expectedNextPcmPacketTimestamp:null,requiresAdtsStripping:o,primingPacket:t},timescale:a.sampleRate,samples:[],sampleQueue:[],timestampProcessingQueue:[],timeToSampleTable:[],compositionTimeOffsetTable:[],lastTimescaleUnits:null,lastSample:null,startTimestampOffset:null,finalizedChunks:[],currentChunk:null,compactlyCodedChunkTable:[],closed:!1};return this.trackDatas.push(s),this.trackDatas.sort((e,t)=>e.track.id-t.track.id),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),s}getSubtitleTrackData(e,t){let n=this.trackDatas.find(t=>t.track===e);if(n)return n;Hr(t),r(t),r(t.config);let i={muxer:this,track:e,type:`subtitle`,info:{config:t.config},timescale:1e3,samples:[],sampleQueue:[],timestampProcessingQueue:[],timeToSampleTable:[],compositionTimeOffsetTable:[],lastTimescaleUnits:null,lastSample:null,startTimestampOffset:null,finalizedChunks:[],currentChunk:null,compactlyCodedChunkTable:[],closed:!1,lastCueEndTimestamp:0,cueQueue:[],nextSourceId:0,cueToSourceId:new WeakMap};return this.trackDatas.push(i),this.trackDatas.sort((e,t)=>e.track.id-t.track.id),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),i}async addEncodedVideoPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getVideoTrackData(e,t,n),i=t.data;if(r.info.requiresAnnexBTransformation){let e=[...Bt(i)].map(e=>i.subarray(e.offset,e.offset+e.length));if(e.length===0)throw Error(`Failed to transform packet data. Make sure all packets are provided in Annex B format, as specified in ITU-T-REC-H.264 and ITU-T-REC-H.265.`);i=qt(e,4)}this.validateTimestamp(r.track,t.timestamp,t.type===`key`);let a=this.createSampleForTrack(r,i,t.timestamp,t.duration,t.type);await this.registerSample(r,a)}finally{r()}}async addEncodedAudioPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getAudioTrackData(e,t,n),i=t.data;if(r.info.requiresAdtsStripping){let e=Va(lu.tempFromBytes(i));if(!e)throw Error(`Expected ADTS frame, didn't get one.`);let t=e.crcCheck===null?7:9;i=i.subarray(t)}this.validateTimestamp(r.track,t.timestamp,t.type===`key`);let a=t.timestamp,o=t.duration;if(r.info.requiresPcmTransformation){let e=Ar(r.info.decoderConfig.codec).sampleSize*r.info.numberOfChannels;if(o=i.byteLength/e/r.info.sampleRate,r.info.expectedNextPcmPacketTimestamp!==null){let e=a-r.info.expectedNextPcmPacketTimestamp;if(e<.01)a=r.info.expectedNextPcmPacketTimestamp;else{let t=await this.padWithSilence(r,r.info.expectedNextPcmPacketTimestamp,e);a=r.info.expectedNextPcmPacketTimestamp+t}}r.info.expectedNextPcmPacketTimestamp=a+o}let s=this.createSampleForTrack(r,i,a,o,t.type);await this.registerSample(r,s)}finally{r()}}async padWithSilence(e,t,n){let r=$(n,e.timescale);if(n=r/e.timescale,r>0){let{sampleSize:i,silentValue:a}=Ar(e.info.decoderConfig.codec),o=r*e.info.numberOfChannels,s=new Uint8Array(i*o).fill(a),c=this.createSampleForTrack(e,new Uint8Array(s.buffer),t,n,`key`);await this.registerSample(e,c)}return n}async addSubtitleCue(e,t,n){let r=await this.mutex.acquire();try{let r=this.getSubtitleTrackData(e,n);this.validateTimestamp(r.track,t.timestamp,!0),e.source._codec===`webvtt`&&(r.cueQueue.push(t),await this.processWebVTTCues(r,t.timestamp))}finally{r()}}async processWebVTTCues(e,t){for(;e.cueQueue.length>0;){let n=new Set([]);for(let i of e.cueQueue)r(i.timestamp<=t),r(e.lastCueEndTimestamp<=i.timestamp+i.duration),n.add(Math.max(i.timestamp,e.lastCueEndTimestamp)),n.add(i.timestamp+i.duration);let i=[...n].sort((e,t)=>e-t),a=i[0],o=i[1]??a;if(t<o)break;if(e.lastCueEndTimestamp<a){this.auxWriter.seek(0);let t=gf();this.auxBoxWriter.writeBox(t);let n=this.auxTarget._getSlice(0,this.auxWriter.getPos()),r=this.createSampleForTrack(e,n,e.lastCueEndTimestamp,a-e.lastCueEndTimestamp,`key`);await this.registerSample(e,r),e.lastCueEndTimestamp=a}this.auxWriter.seek(0);for(let t=0;t<e.cueQueue.length;t++){let n=e.cueQueue[t];if(n.timestamp>=o)break;Hu.lastIndex=0;let r=Hu.test(n.text),i=n.timestamp+n.duration,s=e.cueToSourceId.get(n);if(s===void 0&&o<i&&(s=e.nextSourceId++,e.cueToSourceId.set(n,s)),n.notes){let e=vf(n.notes);this.auxBoxWriter.writeBox(e)}let c=_f(n.text,r?a:null,n.identifier??null,n.settings??null,s??null);this.auxBoxWriter.writeBox(c),i===o&&e.cueQueue.splice(t--,1)}let s=this.auxTarget._getSlice(0,this.auxWriter.getPos()),c=this.createSampleForTrack(e,s,a,o-a,`key`);await this.registerSample(e,c),e.lastCueEndTimestamp=o}}createSampleForTrack(e,t,n,r,i){return{timestamp:n,decodeTimestamp:n,duration:r,data:t,size:t.byteLength,type:i,timescaleUnitsToNextSample:$(r,e.timescale)}}processTimestamps(e,t){if(e.timestampProcessingQueue.length===0)return;if(e.type===`audio`&&e.info.requiresPcmTransformation){this.isFragmented||(e.startTimestampOffset??=e.timestampProcessingQueue[0].timestamp);let t=0;for(let n=0;n<e.timestampProcessingQueue.length;n++){let r=e.timestampProcessingQueue[n],i=$(r.duration,e.timescale);t+=i}if(e.timeToSampleTable.length===0)e.timeToSampleTable.push({sampleCount:t,sampleDelta:1});else{let n=a(e.timeToSampleTable);n.sampleCount+=t}e.timestampProcessingQueue.length=0;return}let n=e.timestampProcessingQueue.map(e=>e.timestamp).sort((e,t)=>e-t);this.isFragmented||(e.startTimestampOffset??=n[0]);for(let t=0;t<e.timestampProcessingQueue.length;t++){let i=e.timestampProcessingQueue[t];i.decodeTimestamp=n[t];let o=$(i.timestamp-i.decodeTimestamp,e.timescale),s=$(i.duration,e.timescale);if(e.lastTimescaleUnits!==null){r(e.lastSample);let t=$(i.decodeTimestamp,e.timescale,!1),n=Math.round(t-e.lastTimescaleUnits);if(r(n>=0),e.lastTimescaleUnits+=n,e.lastSample.timescaleUnitsToNextSample=n,!this.isFragmented){let t=a(e.timeToSampleTable);if(r(t),t.sampleCount===1){t.sampleDelta=n;let r=e.timeToSampleTable[e.timeToSampleTable.length-2];r&&r.sampleDelta===n&&(r.sampleCount++,e.timeToSampleTable.pop(),t=r)}else t.sampleDelta!==n&&(t.sampleCount--,e.timeToSampleTable.push(t={sampleCount:1,sampleDelta:n}));t.sampleDelta===s?t.sampleCount++:e.timeToSampleTable.push({sampleCount:1,sampleDelta:s});let i=a(e.compositionTimeOffsetTable);r(i),i.sampleCompositionTimeOffset===o?i.sampleCount++:e.compositionTimeOffsetTable.push({sampleCount:1,sampleCompositionTimeOffset:o})}}else e.lastTimescaleUnits=$(i.decodeTimestamp,e.timescale,!1),this.isFragmented||(e.timeToSampleTable.push({sampleCount:1,sampleDelta:s}),e.compositionTimeOffsetTable.push({sampleCount:1,sampleCompositionTimeOffset:o}));e.lastSample=i}if(e.timestampProcessingQueue.length=0,r(e.lastSample),r(e.lastTimescaleUnits!==null),t!==void 0&&e.lastSample.timescaleUnitsToNextSample===0){r(t.type===`key`);let n=$(t.timestamp,e.timescale,!1),i=Math.round(n-e.lastTimescaleUnits);e.lastSample.timescaleUnitsToNextSample=i}}async registerSample(e,t){t.type===`key`&&this.processTimestamps(e,t),e.timestampProcessingQueue.push(t),this.isFragmented?(e.sampleQueue.push(t),await this.interleaveSamples()):this.fastStart===`reserve`?await this.registerSampleFastStartReserve(e,t):await this.addSampleToTrack(e,t)}async addSampleToTrack(e,t){if(!this.isFragmented&&(e.samples.push(t),this.fastStart===`reserve`)){let t=e.track.metadata.maximumPacketCount;if(r(t!==void 0),e.samples.length>t)throw Error(`Track #${e.track.id} has already reached the maximum packet count (${t}). Either add less packets or increase the maximum packet count.`)}let n=!1;if(!e.currentChunk)n=!0;else{e.currentChunk.startTimestamp=Math.min(e.currentChunk.startTimestamp,t.timestamp);let r=t.timestamp-e.currentChunk.startTimestamp;if(this.isFragmented){let i=this.trackDatas.every(n=>{if(e===n)return t.type===`key`;let r=n.sampleQueue[0];return r?r.type===`key`:n.closed});r>=this.minimumFragmentDuration&&i&&t.timestamp>this.maxWrittenTimestamp&&(n=!0,await this.finalizeFragment())}else n=r>=.5}n&&(e.currentChunk&&await this.finalizeCurrentChunk(e),e.currentChunk={startTimestamp:t.timestamp,samples:[],offset:null,moofOffset:null,trafIndex:null}),r(e.currentChunk),e.currentChunk.samples.push(t),this.isFragmented&&(this.maxWrittenTimestamp=Math.max(this.maxWrittenTimestamp,t.timestamp),this.maxWrittenEndTimestamp=Math.max(this.maxWrittenEndTimestamp,t.timestamp+t.duration),this.minWrittenTimestamp=Math.min(this.minWrittenTimestamp,t.timestamp))}async finalizeCurrentChunk(e){if(r(!this.isFragmented),r(this.writer),!e.currentChunk)return;e.finalizedChunks.push(e.currentChunk),this.finalizedChunks.push(e.currentChunk);let t=e.currentChunk.samples.length;if(e.type===`audio`&&e.info.requiresPcmTransformation&&(t=e.currentChunk.samples.reduce((t,n)=>t+$(n.duration,e.timescale),0)),(e.compactlyCodedChunkTable.length===0||a(e.compactlyCodedChunkTable).samplesPerChunk!==t)&&e.compactlyCodedChunkTable.push({firstChunk:e.finalizedChunks.length,samplesPerChunk:t}),this.fastStart===`in-memory`){e.currentChunk.offset=0;return}e.currentChunk.offset=this.writer.getPos();for(let t of e.currentChunk.samples)r(t.data),this.writer.write(t.data),t.data=null;await this.writer.flush()}async interleaveSamples(e=!1){if(r(this.isFragmented),e||this.allTracksAreKnown())outer:for(;;){let t=null,n=1/0;for(let r of this.trackDatas){if(!e&&r.sampleQueue.length===0&&!r.closed)break outer;r.sampleQueue.length>0&&r.sampleQueue[0].timestamp<n&&(t=r,n=r.sampleQueue[0].timestamp)}if(!t)break;let r=t.sampleQueue.shift();await this.addSampleToTrack(t,r)}}async finalizeFragment(e=!this.isCmaf){if(r(this.isFragmented),!this.wroteFragmentedHeader){this.wroteFragmentedHeader=!0;let e=this.initBoxWriter??this.boxWriter;r(e),this.formatOptions.onMoov&&e.writer.startTrackingWrites(),this.ensureOneEnabledTrack();let t=fd(this);if(e.writeBox(t),this.formatOptions.onMoov){let{data:t,start:n}=e.writer.stopTrackingWrites();this.formatOptions.onMoov(t,n)}if(this.isCmaf){r(this.initWriter),await this.initWriter.flush(),await this.initWriter.finalize(),this.writer=await this.output._getRootWriter(!0),this.boxWriter=new qu(this.writer);let e=this.boxWriter.measureBox(cd()),t=this.boxWriter.measureBox(ld(this,0));this.segmentHeaderSize=e+t,this.writer.seek(this.segmentHeaderSize)}}r(this.writer),r(this.boxWriter);let t=this.trackDatas.filter(e=>e.currentChunk);if(t.length===0){e&&await this.writer.flush();return}let n=this.nextFragmentNumber++,i=of(n,t),a=this.writer.getPos(),o=a+this.boxWriter.measureBox(i),s=o+8,c=1/0;for(let e=0;e<t.length;e++){let n=t[e];n.currentChunk.offset=s,n.currentChunk.moofOffset=a,n.currentChunk.trafIndex=e;for(let e of n.currentChunk.samples)s+=e.size;c=Math.min(c,n.currentChunk.startTimestamp)}let l=s-o,u=l>=2**32;if(u)for(let e of t)e.currentChunk.offset+=8;this.formatOptions.onMoof&&this.writer.startTrackingWrites();let d=of(n,t);if(this.boxWriter.writeBox(d),this.formatOptions.onMoof){let{data:e,start:t}=this.writer.stopTrackingWrites();this.formatOptions.onMoof(e,t,c)}r(this.writer.getPos()===o),this.formatOptions.onMdat&&this.writer.startTrackingWrites();let f=ud(u);f.size=l,this.boxWriter.writeBox(f),this.writer.seek(o+(u?16:8));for(let e of t)for(let t of e.currentChunk.samples)this.writer.write(t.data),t.data=null;if(this.formatOptions.onMdat){let{data:e,start:t}=this.writer.stopTrackingWrites();this.formatOptions.onMdat(e,t)}for(let e of t)e.finalizedChunks.push(e.currentChunk),this.finalizedChunks.push(e.currentChunk),e.currentChunk=null;e&&await this.writer.flush()}async registerSampleFastStartReserve(e,t){this.allTracksAreKnown()?(this.mdat||await this.createFastStartReserveMdat(),await this.addSampleToTrack(e,t)):e.sampleQueue.push(t)}async createFastStartReserveMdat(){r(this.writer),r(this.boxWriter),this.ensureOneEnabledTrack();let e=fd(this),t=this.boxWriter.measureBox(e)+this.computeSampleTableSizeUpperBound()+4096;r(this.ftypSize!==null),this.writer.seek(this.ftypSize+t),this.formatOptions.onMdat&&this.writer.startTrackingWrites(),this.mdat=ud(!0),this.boxWriter.writeBox(this.mdat);for(let e of this.trackDatas){for(let t of e.sampleQueue)await this.addSampleToTrack(e,t);e.sampleQueue.length=0}}computeSampleTableSizeUpperBound(){r(this.fastStart===`reserve`);let e=0;for(let t of this.trackDatas){let n=t.track.metadata.maximumPacketCount;r(n!==void 0),e+=8*Math.ceil(2/3*n),e+=4*n,e+=8*Math.ceil(2/3*n),e+=12*Math.ceil(2/3*n),e+=4*n,e+=8*n}return e}async onTrackClose(e){let t=await this.mutex.acquire(),n=this.trackDatas.find(t=>t.track===e);n&&(n.closed=!0,n.type===`subtitle`&&e.source._codec===`webvtt`&&await this.processWebVTTCues(n,1/0),this.processTimestamps(n)),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),this.isFragmented&&await this.interleaveSamples(),t()}ensureOneEnabledTrack(){for(let e of[`video`,`audio`,`subtitle`]){let t=this.trackDatas.filter(t=>t.type===e);if(t.length!==0&&!t.some(e=>e.track.metadata.disposition?.default!==!1)){let e=t[0];e.track.metadata.disposition={...e.track.metadata.disposition,default:!0}}}}async forceFragmentFinalization(){r(this.isFragmented);let e=await this.mutex.acquire();try{for(let e of this.trackDatas)e.type===`subtitle`&&e.track.source._codec===`webvtt`&&await this.processWebVTTCues(e,1/0),this.processTimestamps(e);await this.interleaveSamples(!0),await this.finalizeFragment()}finally{e()}}async finalize(){let e=await this.mutex.acquire();this.allTracksKnown.resolve(),this.ensureOneEnabledTrack(),!this.mdat&&this.fastStart===`reserve`&&await this.createFastStartReserveMdat();for(let e of this.trackDatas)e.closed=!0,e.type===`subtitle`&&e.track.source._codec===`webvtt`&&await this.processWebVTTCues(e,1/0),this.processTimestamps(e);if(this.isFragmented)await this.interleaveSamples(!0),await this.finalizeFragment(!1);else for(let e of this.trackDatas)if(await this.finalizeCurrentChunk(e),e.startTimestampOffset!==null)for(let t=0;t<e.samples.length;t++){let n=e.samples[t];n.timestamp-=e.startTimestampOffset,n.decodeTimestamp-=e.startTimestampOffset}if(r(this.writer),r(this.boxWriter),this.fastStart===`in-memory`){this.mdat=ud(!1);let e;for(let t=0;t<2;t++){let t=fd(this),n=this.boxWriter.measureBox(t);e=this.boxWriter.measureBox(this.mdat);let i=this.writer.getPos()+n+e;for(let t of this.finalizedChunks){t.offset=i;for(let{data:n}of t.samples)r(n),i+=n.byteLength,e+=n.byteLength}if(i<2**32)break;e>=2**32&&(this.mdat.largeSize=!0)}this.formatOptions.onMoov&&this.writer.startTrackingWrites();let t=fd(this);if(this.boxWriter.writeBox(t),this.formatOptions.onMoov){let{data:e,start:t}=this.writer.stopTrackingWrites();this.formatOptions.onMoov(e,t)}this.formatOptions.onMdat&&this.writer.startTrackingWrites(),this.mdat.size=e,this.boxWriter.writeBox(this.mdat);for(let e of this.finalizedChunks)for(let t of e.samples)r(t.data),this.writer.write(t.data),t.data=null;if(this.formatOptions.onMdat){let{data:e,start:t}=this.writer.stopTrackingWrites();this.formatOptions.onMdat(e,t)}}else if(this.isFragmented){if(this.isCmaf){let e=this.segmentHeaderSize===null?0:this.writer.getPos()-this.segmentHeaderSize;this.writer.seek(0),this.boxWriter.writeBox(cd()),this.boxWriter.writeBox(ld(this,e))}else{let e=this.writer.getPos(),t=pf(this.trackDatas);this.boxWriter.writeBox(t);let n=this.writer.getPos()-e;this.writer.seek(this.writer.getPos()-4),this.boxWriter.writeU32(n)}}else{r(this.mdat);let e=this.boxWriter.offsets.get(this.mdat);r(e!==void 0);let t=this.writer.getPos()-e;if(this.mdat.size=t,this.mdat.largeSize=t>=2**32,this.boxWriter.patchBox(this.mdat),this.formatOptions.onMdat){let{data:e,start:t}=this.writer.stopTrackingWrites();this.formatOptions.onMdat(e,t)}let n=fd(this);if(this.fastStart===`reserve`){r(this.ftypSize!==null),this.writer.seek(this.ftypSize),this.formatOptions.onMoov&&this.writer.startTrackingWrites(),this.boxWriter.writeBox(n);let e=this.boxWriter.offsets.get(this.mdat)-this.writer.getPos();this.boxWriter.writeBox(dd(e))}else this.formatOptions.onMoov&&this.writer.startTrackingWrites(),this.boxWriter.writeBox(n);if(this.formatOptions.onMoov){let{data:e,start:t}=this.writer.stopTrackingWrites();this.formatOptions.onMoov(e,t)}}e()}},Qf=-(2**15),$f=2**15-1,ep=`Mediabunny`,tp=6,np=5,rp={video:1,audio:2,subtitle:17},ip=class extends Pu{constructor(e,t){super(e),this.trackDatas=[],this.allTracksKnown=T(),this.segment=null,this.segmentInfo=null,this.seekHead=null,this.tracksElement=null,this.tagsElement=null,this.attachmentsElement=null,this.segmentDuration=null,this.cues=null,this.currentCluster=null,this.currentClusterStartMsTimestamp=null,this.currentClusterMaxMsTimestamp=null,this.trackDatasInCurrentCluster=new Map,this.startTimestamp=1/0,this.endTimestamp=-1/0,this.format=t}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(!!this.format._options.appendOnly),this.ebmlWriter=new Zi(this.writer),this.writeEBMLHeader(),this.createSegmentInfo(),this.createCues(),await this.writer.flush();for(let e of this.output.tracks)e.isVideoTrack()&&e.metadata.decoderConfig?this.getVideoTrackData(e,e.metadata.primingPacket??null,{decoderConfig:e.metadata.decoderConfig}):e.isAudioTrack()&&e.metadata.decoderConfig&&this.getAudioTrackData(e,e.metadata.primingPacket??null,{decoderConfig:e.metadata.decoderConfig});e()}writeEBMLHeader(){this.format._options.onEbmlHeader&&this.writer.startTrackingWrites();let e={id:L.EBML,data:[{id:L.EBMLVersion,data:1},{id:L.EBMLReadVersion,data:1},{id:L.EBMLMaxIDLength,data:4},{id:L.EBMLMaxSizeLength,data:8},{id:L.DocType,data:this.format instanceof um?`webm`:`matroska`},{id:L.DocTypeVersion,data:2},{id:L.DocTypeReadVersion,data:2}]};if(this.ebmlWriter.writeEBML(e),this.format._options.onEbmlHeader){let{data:e,start:t}=this.writer.stopTrackingWrites();this.format._options.onEbmlHeader(e,t)}}maybeCreateSeekHead(e){if(this.format._options.appendOnly)return;let t=new Uint8Array([28,83,187,107]),n=new Uint8Array([21,73,169,102]),r=new Uint8Array([22,84,174,107]),i=new Uint8Array([25,65,164,105]),a=new Uint8Array([18,84,195,103]),o={id:L.SeekHead,data:[{id:L.Seek,data:[{id:L.SeekID,data:t},{id:L.SeekPosition,size:5,data:e?this.ebmlWriter.offsets.get(this.cues)-this.segmentDataOffset:0}]},{id:L.Seek,data:[{id:L.SeekID,data:n},{id:L.SeekPosition,size:5,data:e?this.ebmlWriter.offsets.get(this.segmentInfo)-this.segmentDataOffset:0}]},{id:L.Seek,data:[{id:L.SeekID,data:r},{id:L.SeekPosition,size:5,data:e?this.ebmlWriter.offsets.get(this.tracksElement)-this.segmentDataOffset:0}]},this.attachmentsElement?{id:L.Seek,data:[{id:L.SeekID,data:i},{id:L.SeekPosition,size:5,data:e?this.ebmlWriter.offsets.get(this.attachmentsElement)-this.segmentDataOffset:0}]}:null,this.tagsElement?{id:L.Seek,data:[{id:L.SeekID,data:a},{id:L.SeekPosition,size:5,data:e?this.ebmlWriter.offsets.get(this.tagsElement)-this.segmentDataOffset:0}]}:null]};this.seekHead=o}createSegmentInfo(){let e={id:L.Duration,data:new Vi(0)};this.segmentDuration=e;let t={id:L.Info,data:[{id:L.TimestampScale,data:1e6},{id:L.MuxingApp,data:ep},{id:L.WritingApp,data:ep},this.format._options.appendOnly?null:e]};this.segmentInfo=t}createTracks(){let e={id:L.Tracks,data:[]};this.tracksElement=e;for(let t of this.trackDatas){let n=la[t.track.source._codec];r(n),t.type===`audio`&&t.track.source._codec===`dts`&&(t.info.decoderConfig.codec===`dtse`?n=`A_DTS/EXPRESS`:t.info.decoderConfig.codec===`dtsl`&&(n=`A_DTS/LOSSLESS`));let i=0;if(t.type===`audio`&&t.track.source._codec===`opus`){i=8e7;let e=t.info.decoderConfig.description;if(e){let t=Tn(u(e));i=Math.round(1e9*(t.preSkip/Or))}}e.data.push({id:L.TrackEntry,data:[{id:L.TrackNumber,data:t.track.id},{id:L.TrackUID,data:t.track.id},{id:L.TrackType,data:rp[t.type]},t.track.metadata.disposition?.default===!1?{id:L.FlagDefault,data:0}:null,t.track.metadata.disposition?.forced?{id:L.FlagForced,data:1}:null,t.track.metadata.disposition?.hearingImpaired?{id:L.FlagHearingImpaired,data:1}:null,t.track.metadata.disposition?.visuallyImpaired?{id:L.FlagVisualImpaired,data:1}:null,t.track.metadata.disposition?.original?{id:L.FlagOriginal,data:1}:null,t.track.metadata.disposition?.commentary?{id:L.FlagCommentary,data:1}:null,{id:L.FlagLacing,data:0},{id:L.Language,data:t.track.metadata.languageCode??`und`},{id:L.CodecID,data:n},t.codecPrivate?{id:L.CodecPrivate,data:u(t.codecPrivate)}:null,{id:L.CodecDelay,data:0},{id:L.SeekPreRoll,data:i},t.track.metadata.name===void 0?null:{id:L.Name,data:new Ui(t.track.metadata.name)},t.type===`video`?this.videoSpecificTrackInfo(t):null,t.type===`audio`?this.audioSpecificTrackInfo(t):null,t.type===`subtitle`?this.subtitleSpecificTrackInfo(t):null]})}}videoSpecificTrackInfo(e){let{frameRate:t,rotation:n}=e.track.metadata,r=[t?{id:L.DefaultDuration,data:1e9/t}:null],a=n?i(-n):0,o=!!e.info.aspectRatio&&e.info.aspectRatio.num*e.info.height!==e.info.aspectRatio.den*e.info.width,s=e.info.decoderConfig.colorSpace,c={id:L.Video,data:[{id:L.PixelWidth,data:e.info.width},{id:L.PixelHeight,data:e.info.height},o?{id:L.DisplayWidth,data:e.info.aspectRatio.num}:null,o?{id:L.DisplayHeight,data:e.info.aspectRatio.den}:null,o?{id:L.DisplayUnit,data:3}:null,e.info.alphaMode?{id:L.AlphaMode,data:1}:null,C(s)?null:{id:L.Colour,data:[{id:L.MatrixCoefficients,data:s?.matrix==null?2:b[s.matrix]},{id:L.TransferCharacteristics,data:s?.transfer==null?2:v[s.transfer]},{id:L.Primaries,data:s?.primaries==null?2:g[s.primaries]},{id:L.Range,data:s?.fullRange==null?0:s.fullRange?2:1}]},a?{id:L.Projection,data:[{id:L.ProjectionType,data:0},{id:L.ProjectionPoseRoll,data:new Bi((a+180)%360-180)}]}:null]};return r.push(c),r}audioSpecificTrackInfo(e){let t=P.includes(e.track.source._codec)?Ar(e.track.source._codec):null;return[{id:L.Audio,data:[{id:L.SamplingFrequency,data:new Bi(e.info.sampleRate)},{id:L.Channels,data:e.info.numberOfChannels},t?{id:L.BitDepth,data:8*t.sampleSize}:null]}]}subtitleSpecificTrackInfo(e){return[]}maybeCreateTags(){let e=[],t=(t,n)=>{e.push({id:L.SimpleTag,data:[{id:L.TagName,data:new Ui(t)},typeof n==`string`?{id:L.TagString,data:new Ui(n)}:{id:L.TagBinary,data:n}]})},n=this.output._metadataTags,r=new Set;for(let{key:e,value:i}of Ke(n))switch(e){case`title`:t(`TITLE`,i),r.add(`TITLE`);break;case`description`:t(`DESCRIPTION`,i),r.add(`DESCRIPTION`);break;case`artist`:t(`ARTIST`,i),r.add(`ARTIST`);break;case`album`:t(`ALBUM`,i),r.add(`ALBUM`);break;case`albumArtist`:t(`ALBUM_ARTIST`,i),r.add(`ALBUM_ARTIST`);break;case`genre`:t(`GENRE`,i),r.add(`GENRE`);break;case`comment`:t(`COMMENT`,i),r.add(`COMMENT`);break;case`lyrics`:t(`LYRICS`,i),r.add(`LYRICS`);break;case`date`:t(`DATE`,i.toISOString().slice(0,10)),r.add(`DATE`);break;case`trackNumber`:t(`PART_NUMBER`,n.tracksTotal===void 0?i.toString():`${i}/${n.tracksTotal}`),r.add(`PART_NUMBER`);break;case`discNumber`:t(`DISC`,n.discsTotal===void 0?i.toString():`${i}/${n.discsTotal}`),r.add(`DISC`);break;case`tracksTotal`:case`discsTotal`:break;case`images`:case`raw`:break;default:E(e)}if(n.raw)for(let e in n.raw){let i=n.raw[e];i==null||r.has(e)||(typeof i==`string`||i instanceof Uint8Array)&&t(e,i)}e.length!==0&&(this.tagsElement={id:L.Tags,data:[{id:L.Tag,data:[{id:L.Targets,data:[{id:L.TargetTypeValue,data:50},{id:L.TargetType,data:`MOVIE`}]},...e]}]})}maybeCreateAttachments(){let e=this.output._metadataTags,t=[],n=new Set,r=e.images??[];for(let e of r){let r=e.name;r===void 0&&(r=(e.kind===`coverFront`?`cover`:e.kind===`coverBack`?`back`:`image`)+(qe(e.mimeType)??``));let i;for(;;){i=0n;for(let e=0;e<8;e++)i<<=8n,i|=BigInt(Math.floor(Math.random()*256));if(i!==0n&&!n.has(i))break}n.add(i),t.push({id:L.AttachedFile,data:[e.description===void 0?null:{id:L.FileDescription,data:new Ui(e.description)},{id:L.FileName,data:new Ui(r)},{id:L.FileMediaType,data:e.mimeType},{id:L.FileData,data:e.data},{id:L.FileUID,data:i}]})}for(let[n,i]of Object.entries(e.raw??{}))i instanceof St&&/^\d+$/.test(n)&&(r.find(e=>e.mimeType===i.mimeType&&Xe(e.data,i.data))||t.push({id:L.AttachedFile,data:[i.description===void 0?null:{id:L.FileDescription,data:new Ui(i.description)},{id:L.FileName,data:new Ui(i.name??``)},{id:L.FileMediaType,data:i.mimeType??``},{id:L.FileData,data:i.data},{id:L.FileUID,data:BigInt(n)}]}));t.length!==0&&(this.attachmentsElement={id:L.Attachments,data:t})}createSegment(){this.createTracks(),this.maybeCreateTags(),this.maybeCreateAttachments(),this.maybeCreateSeekHead(!1);let e={id:L.Segment,size:this.format._options.appendOnly?-1:tp,data:[this.seekHead,this.segmentInfo,this.tracksElement,this.attachmentsElement,this.tagsElement]};if(this.segment=e,this.format._options.onSegmentHeader&&this.writer.startTrackingWrites(),this.ebmlWriter.writeEBML(e),this.format._options.onSegmentHeader){let{data:e,start:t}=this.writer.stopTrackingWrites();this.format._options.onSegmentHeader(e,t)}}createCues(){this.cues={id:L.Cues,data:[]}}get segmentDataOffset(){return r(this.segment),this.ebmlWriter.dataOffsets.get(this.segment)}allTracksAreKnown(){for(let e of this.output.tracks)if(!e.source._closed&&!this.trackDatas.some(t=>t.track===e))return!1;return!0}async getMimeType(){await this.allTracksKnown.promise;let e=this.trackDatas.map(e=>e.type===`video`||e.type===`audio`?e.info.decoderConfig.codec:{webvtt:`wvtt`}[e.track.source._codec]);return da({isWebM:this.format instanceof um,hasVideo:this.trackDatas.some(e=>e.type===`video`),hasAudio:this.trackDatas.some(e=>e.type===`audio`),codecStrings:e})}getVideoTrackData(e,t,n){let i=this.trackDatas.find(t=>t.track===e);if(i)return i;zr(n,e.source._codec),r(n),r(n.decoderConfig),r(n.decoderConfig.codedWidth!==void 0),r(n.decoderConfig.codedHeight!==void 0);let a=n.decoderConfig.displayAspectWidth,o=n.decoderConfig.displayAspectHeight,s=a===void 0||o===void 0?null:rt({num:a,den:o}),c={track:e,type:`video`,info:{width:n.decoderConfig.codedWidth,height:n.decoderConfig.codedHeight,aspectRatio:s,decoderConfig:n.decoderConfig,alphaMode:t?!!t.sideData.alpha:null},chunkQueue:[],lastWrittenMsTimestamp:null,codecPrivate:n.decoderConfig.description??null,closed:!1};return e.source._codec===`vp9`?c.codecPrivate=new Uint8Array(xr(c.info.decoderConfig.codec)):e.source._codec===`av1`?c.codecPrivate=new Uint8Array(Sr(c.info.decoderConfig.codec)):e.source._codec===`prores`&&(c.codecPrivate=p.encode(n.decoderConfig.codec)),this.trackDatas.push(c),this.trackDatas.sort((e,t)=>e.track.id-t.track.id),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),c}getAudioTrackData(e,t,n){let i=this.trackDatas.find(t=>t.track===e);if(i)return i;Vr(n,e.source._codec),r(n),r(n.decoderConfig);let a={...n.decoderConfig},o=!1;if(e.source._codec===`aac`&&!a.description){if(!t)throw Error(`No AAC description provided; you must therefore provide a priming packet.`);let e=Va(lu.tempFromBytes(t.data));if(!e)throw Error(`Couldn't parse ADTS header from the AAC packet. Make sure the packets are in ADTS format (as specified in ISO 13818-7) when not providing a description, or provide a description (must be an AudioSpecificConfig as specified in ISO 14496-3) and ensure the packets are raw AAC data.`);let n=Dt[e.samplingFrequencyIndex],r=Ot[e.channelConfiguration];if(n===void 0||r===void 0)throw Error(`Invalid ADTS frame header.`);a.description=Mt({objectType:e.objectType,outputSampleRate:n,outputNumberOfChannels:r}),o=!0}let s={track:e,type:`audio`,info:{numberOfChannels:n.decoderConfig.numberOfChannels,sampleRate:n.decoderConfig.sampleRate,decoderConfig:a,requiresAdtsStripping:o},chunkQueue:[],lastWrittenMsTimestamp:null,codecPrivate:a.description??null,closed:!1};return this.trackDatas.push(s),this.trackDatas.sort((e,t)=>e.track.id-t.track.id),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),s}getSubtitleTrackData(e,t){let n=this.trackDatas.find(t=>t.track===e);if(n)return n;Hr(t),r(t),r(t.config);let i={track:e,type:`subtitle`,info:{config:t.config},chunkQueue:[],lastWrittenMsTimestamp:null,codecPrivate:p.encode(t.config.description),closed:!1};return this.trackDatas.push(i),this.trackDatas.sort((e,t)=>e.track.id-t.track.id),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),i}async addEncodedVideoPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getVideoTrackData(e,t,n);r.info.alphaMode??=!!t.sideData.alpha;let i=t.data;if(e.source._codec===`prores`){if(i.byteLength<8)throw Error(`ProRes packet too small, expected at least 8 bytes.`);i=i.subarray(8)}let a=t.type===`key`;this.validateTimestamp(r.track,t.timestamp,a);let o=t.timestamp,s=t.duration;e.metadata.frameRate!==void 0&&(o=Ce(o,e.metadata.frameRate),s=Ce(s,e.metadata.frameRate));let c=r.info.alphaMode?t.sideData.alpha??null:null,l=this.createInternalChunk(i,o,s,t.type,c);e.source._codec===`vp9`&&this.fixVP9ColorSpace(r,l),r.chunkQueue.push(l),await this.interleaveChunks()}finally{r()}}async addEncodedAudioPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getAudioTrackData(e,t,n),i=t.data;if(r.info.requiresAdtsStripping){let e=Va(lu.tempFromBytes(i));if(!e)throw Error(`Expected ADTS frame, didn't get one.`);let t=e.crcCheck===null?7:9;i=i.subarray(t)}let a=t.type===`key`;this.validateTimestamp(r.track,t.timestamp,a);let o=this.createInternalChunk(i,t.timestamp,t.duration,t.type);r.chunkQueue.push(o),await this.interleaveChunks()}finally{r()}}async addSubtitleCue(e,t,n){let r=await this.mutex.acquire();try{let r=this.getSubtitleTrackData(e,n);this.validateTimestamp(r.track,t.timestamp,!0);let i=t.text,a=Math.round(t.timestamp*1e3);Hu.lastIndex=0,i=i.replace(Hu,e=>`<${Ku(Gu(e.slice(1,-1))-a)}>`);let o=p.encode(i),s=`${t.settings??``}\n${t.identifier??``}\n${t.notes??``}`,c=this.createInternalChunk(o,t.timestamp,t.duration,`key`,s.trim()?p.encode(s):null);r.chunkQueue.push(c),await this.interleaveChunks()}finally{r()}}async interleaveChunks(e=!1){if(e||this.allTracksAreKnown()){outer:for(;;){let t=null,n=1/0;for(let r of this.trackDatas){if(!e&&r.chunkQueue.length===0&&!r.closed)break outer;r.chunkQueue.length>0&&r.chunkQueue[0].timestamp<n&&(t=r,n=r.chunkQueue[0].timestamp)}if(!t)break;let r=t.chunkQueue.shift();this.writeBlock(t,r)}e||await this.writer.flush()}}fixVP9ColorSpace(e,t){if(t.type!==`key`||!e.info.decoderConfig.colorSpace||!e.info.decoderConfig.colorSpace.matrix)return;let n=new A(t.data);n.skipBits(2);let r=n.readBits(1),i=(n.readBits(1)<<1)+r;if(i===3&&n.skipBits(1),n.readBits(1)||n.readBits(1)!==0||(n.skipBits(2),n.readBits(24)!==4817730))return;i>=2&&n.skipBits(1);let a={rgb:7,bt709:2,bt470bg:1,smpte170m:3}[e.info.decoderConfig.colorSpace.matrix];l(t.data,n.pos,n.pos+3,a)}createInternalChunk(e,t,n,r,i=null){return{data:e,type:r,timestamp:t,duration:n,additions:i}}writeBlock(e,t){this.segment||this.createSegment();let n=Math.round(1e3*t.timestamp),i=this.trackDatas.every(n=>{if(e===n)return t.type===`key`;let r=n.chunkQueue[0];return r?r.type===`key`:n.closed}),a=!1;if(!this.currentCluster)a=!0;else{r(this.currentClusterStartMsTimestamp!==null),r(this.currentClusterMaxMsTimestamp!==null);let e=n-this.currentClusterStartMsTimestamp;a=i&&n>this.currentClusterMaxMsTimestamp&&e>=1e3*(this.format._options.minimumClusterDuration??1)||e>$f}a&&this.createNewCluster(n);let o=n-this.currentClusterStartMsTimestamp;if(o<Qf)return;let s=new Uint8Array(4),c=new DataView(s.buffer);c.setUint8(0,128|e.track.id),c.setInt16(1,o,!1);let l=Math.round(1e3*t.duration);if(t.additions||e.type===`subtitle`){let r={id:L.BlockGroup,data:[{id:L.Block,data:[s,t.data]},t.type===`delta`?{id:L.ReferenceBlock,data:new Hi(e.lastWrittenMsTimestamp-n)}:null,t.additions?{id:L.BlockAdditions,data:[{id:L.BlockMore,data:[{id:L.BlockAddID,data:1},{id:L.BlockAdditional,data:t.additions}]}]}:null,l>0?{id:L.BlockDuration,data:l}:null]};this.ebmlWriter.writeEBML(r)}else{c.setUint8(3,Number(t.type===`key`)<<7);let e={id:L.SimpleBlock,data:[s,t.data]};this.ebmlWriter.writeEBML(e)}this.startTimestamp=Math.min(this.startTimestamp,n),this.endTimestamp=Math.max(this.endTimestamp,n+l),e.lastWrittenMsTimestamp=n,this.trackDatasInCurrentCluster.has(e)||this.trackDatasInCurrentCluster.set(e,{firstMsTimestamp:n}),this.currentClusterMaxMsTimestamp=Math.max(this.currentClusterMaxMsTimestamp,n)}createNewCluster(e){this.currentCluster&&this.finalizeCurrentCluster(),this.format._options.onCluster&&this.writer.startTrackingWrites(),this.currentCluster={id:L.Cluster,size:this.format._options.appendOnly?-1:np,data:[{id:L.Timestamp,data:e}]},this.ebmlWriter.writeEBML(this.currentCluster),this.currentClusterStartMsTimestamp=e,this.currentClusterMaxMsTimestamp=e,this.trackDatasInCurrentCluster.clear()}finalizeCurrentCluster(){if(r(this.currentCluster),!this.format._options.appendOnly){let e=this.writer.getPos()-this.ebmlWriter.dataOffsets.get(this.currentCluster),t=this.writer.getPos();this.writer.seek(this.ebmlWriter.offsets.get(this.currentCluster)+4),this.ebmlWriter.writeVarInt(e,np),this.writer.seek(t)}if(this.format._options.onCluster){r(this.currentClusterStartMsTimestamp!==null);let{data:e,start:t}=this.writer.stopTrackingWrites();this.format._options.onCluster(e,t,this.currentClusterStartMsTimestamp/1e3)}let e=this.ebmlWriter.offsets.get(this.currentCluster)-this.segmentDataOffset,t=new Map;for(let[e,{firstMsTimestamp:n}]of this.trackDatasInCurrentCluster)t.has(n)||t.set(n,[]),t.get(n).push(e);let n=[...t.entries()].sort((e,t)=>e[0]-t[0]);for(let[t,i]of n)r(this.cues),this.cues.data.push({id:L.CuePoint,data:[{id:L.CueTime,data:t},...i.map(t=>({id:L.CueTrackPositions,data:[{id:L.CueTrack,data:t.track.id},{id:L.CueClusterPosition,data:e}]}))]})}async onTrackClose(e){let t=await this.mutex.acquire(),n=this.trackDatas.find(t=>t.track===e);n&&(n.closed=!0),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),await this.interleaveChunks(),t()}async finalize(){let e=await this.mutex.acquire();this.allTracksKnown.resolve();for(let e of this.trackDatas)e.closed=!0;if(this.segment||this.createSegment(),await this.interleaveChunks(!0),this.currentCluster&&this.finalizeCurrentCluster(),r(this.cues),this.ebmlWriter.writeEBML(this.cues),!this.format._options.appendOnly){let e=this.writer.getPos()-this.segmentDataOffset;this.writer.seek(this.ebmlWriter.offsets.get(this.segment)+4),this.ebmlWriter.writeVarInt(e,tp);let t=this.startTimestamp===1/0?0:this.endTimestamp-this.startTimestamp;this.segmentDuration.data=new Vi(t),this.writer.seek(this.ebmlWriter.offsets.get(this.segmentDuration)),this.ebmlWriter.writeEBML(this.segmentDuration),r(this.seekHead),this.writer.seek(this.ebmlWriter.offsets.get(this.seekHead)),this.maybeCreateSeekHead(!0),this.ebmlWriter.writeEBML(this.seekHead)}e()}},ap=class{constructor(e){this.writer=e,this.helper=new Uint8Array(8),this.helperView=new DataView(this.helper.buffer)}writeU32(e){this.helperView.setUint32(0,e,!1),this.writer.write(this.helper.subarray(0,4))}writeXingFrame(e){let t=this.writer.getPos(),n=224|e.mpegVersionId<<3|e.layer<<1,r;r=e.mpegVersionId&2&&e.mpegVersionId&1?0:1;let i=-1,a=r*16*4+e.layer*16;for(let t=0;t<16;t++){let n=Wr[a+t];if(Kr(r,e.layer,1e3*n,e.sampleRate,0)>=155){i=t;break}}if(i===-1)throw Error(`No suitable bitrate found.`);let o=i<<4|e.frequencyIndex<<2|0,s=e.channel<<6|e.modeExtension<<4|e.copyright<<3|e.original<<2|e.emphasis;this.helper[0]=255,this.helper[1]=n,this.helper[2]=o,this.helper[3]=s,this.writer.write(this.helper.subarray(0,4));let c=Jr(e.mpegVersionId,e.channel);this.writer.seek(t+c),this.writeU32(Gr);let l=0;e.frameCount!==null&&(l|=Qr.FrameCount),e.fileSize!==null&&(l|=Qr.FileSize),e.toc!==null&&(l|=Qr.Toc),this.writeU32(l),this.writeU32(e.frameCount??0),this.writeU32(e.fileSize??0),this.writer.write(e.toc??new Uint8Array(100));let u=Wr[a+i],d=Kr(r,e.layer,1e3*u,e.sampleRate,0);this.writer.write(new Uint8Array(t+d-this.writer.getPos()))}},op=class extends Pu{constructor(e,t){super(e),this.xingFrameData=null,this.frameCount=0,this.framePositions=[],this.xingFramePos=null,this.format=t}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(this.format._options.xingHeader===!1),this.mp3Writer=new ap(this.writer),wt(this.output._metadataTags)||new Nu(this.writer).writeId3V2Tag(this.output._metadataTags),e()}async getMimeType(){return`audio/mpeg`}async addEncodedVideoPacket(){throw Error(`MP3 does not support video.`)}async addEncodedAudioPacket(e,t){let n=await this.mutex.acquire();try{let n=this.format._options.xingHeader!==!1;if(!this.xingFrameData&&n){let e=d(t.data);if(e.byteLength<4)throw Error(`Invalid MP3 header in sample.`);let n=Yr(e.getUint32(0,!1),null).header;if(!n)throw Error(`Invalid MP3 header in sample.`);let r=Jr(n.mpegVersionId,n.channel);if(e.byteLength>=r+4){let t=e.getUint32(r,!1);if(t===1483304551||t===1231971951)return}this.xingFrameData={mpegVersionId:n.mpegVersionId,layer:n.layer,frequencyIndex:n.frequencyIndex,sampleRate:n.sampleRate,channel:n.channel,modeExtension:n.modeExtension,copyright:n.copyright,original:n.original,emphasis:n.emphasis,frameCount:null,fileSize:null,toc:null},this.xingFramePos=this.writer.getPos(),this.mp3Writer.writeXingFrame(this.xingFrameData),this.frameCount++}this.validateTimestamp(e,t.timestamp,t.type===`key`),n&&this.framePositions.push(this.writer.getPos()),this.writer.write(t.data),this.frameCount++,await this.writer.flush()}finally{n()}}async addSubtitleCue(){throw Error(`MP3 does not support subtitles.`)}async finalize(){let e=await this.mutex.acquire();if(!this.xingFrameData&&this.format._options.xingHeader===!1)throw Error(`Cannot finalize an empty MP3 file: not a single packet was added and the Xing header is disabled, so there's no frame we could write.`);if(!this.xingFrameData){let e=this.output.tracks[0];r(e?.isAudioTrack());let t=e.metadata.primingPacket;if(t){let e=d(t.data);if(e.byteLength<4)throw Error(`Invalid MP3 header in priming packet.`);let n=Yr(e.getUint32(0,!1),null).header;if(!n)throw Error(`Invalid MP3 header in priming packet.`);this.xingFrameData={mpegVersionId:n.mpegVersionId,layer:n.layer,frequencyIndex:n.frequencyIndex,sampleRate:n.sampleRate,channel:n.channel,modeExtension:n.modeExtension,copyright:n.copyright,original:n.original,emphasis:n.emphasis,frameCount:null,fileSize:null,toc:null}}else if(e.metadata.decoderConfig){let{sampleRate:t,numberOfChannels:n}=e.metadata.decoderConfig,r=[3,2,0],i=null,a=-1;for(let e=0;e<r.length;e++)if(a=Ur.indexOf(t<<e),a!==-1){i=r[e];break}if(i===null)throw Error(`${t} Hz is not a valid MP3 sample rate.`);this.xingFrameData={mpegVersionId:i,layer:1,frequencyIndex:a,sampleRate:t,channel:n===1?3:0,modeExtension:0,copyright:0,original:0,emphasis:0,frameCount:null,fileSize:null,toc:null}}else throw Error(`Cannot finalize an empty MP3 file: no packets were added and the track specified neither a decoderConfig nor a primingPacket in its metadata, so there's no telling what the file should look like.`);this.xingFramePos=this.writer.getPos(),this.mp3Writer.writeXingFrame(this.xingFrameData),this.frameCount++}r(this.xingFramePos!==null);let t=this.writer.getPos()-this.xingFramePos;if(this.writer.seek(this.xingFramePos),this.framePositions.length>0){let e=new Uint8Array(100);for(let n=0;n<100;n++){let r=Math.floor(this.framePositions.length*(n/100)),i=this.framePositions[r]-this.xingFramePos;e[n]=i/t*256}this.xingFrameData.toc=e}if(this.xingFrameData.frameCount=this.frameCount,this.xingFrameData.fileSize=t,this.format._options.onXingFrame&&this.writer.startTrackingWrites(),this.mp3Writer.writeXingFrame(this.xingFrameData),this.format._options.onXingFrame){let{data:e,start:t}=this.writer.stopTrackingWrites();this.format._options.onXingFrame(e,t)}e()}},sp=8192,cp=class extends Pu{constructor(e,t){super(e),this.trackDatas=[],this.bosPagesWritten=!1,this.allTracksKnown=T(),this.pageBytes=new Uint8Array(Aa),this.pageView=new DataView(this.pageBytes.buffer),this.format=t}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(!0);for(let e of this.output.tracks)r(e.isAudioTrack()),e.metadata.decoderConfig&&this.getTrackData(e,{decoderConfig:e.metadata.decoderConfig});e()}async getMimeType(){return await this.allTracksKnown.promise,ka({codecStrings:this.trackDatas.map(e=>e.codecInfo.codec)})}addEncodedVideoPacket(){throw Error(`Video tracks are not supported.`)}getTrackData(e,t){let n=this.trackDatas.find(t=>t.track===e);if(n)return n;let i;do i=Math.floor(2**32*Math.random());while(this.trackDatas.some(e=>e.serialNumber===i));r(e.source._codec===`vorbis`||e.source._codec===`opus`),Vr(t,e.source._codec),r(t),r(t.decoderConfig);let a={track:e,serialNumber:i,internalSampleRate:e.source._codec===`opus`?Or:t.decoderConfig.sampleRate,codecInfo:{codec:e.source._codec,vorbisInfo:null,opusInfo:null},vorbisLastBlocksize:null,packetQueue:[],currentTimestampInSamples:0,pagesWritten:0,currentGranulePosition:0,currentLacingValues:[],currentPageData:[],currentPageSize:27,currentPageStartsWithFreshPacket:!0,currentPageStartTimestampInSamples:0,closed:!1};return this.queueHeaderPackets(a,t),this.trackDatas.push(a),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),a}queueHeaderPackets(e,t){if(r(t.decoderConfig),e.track.source._codec===`vorbis`){r(t.decoderConfig.description);let n=u(t.decoderConfig.description);if(n[0]!==2)throw TypeError(`First byte of Vorbis decoder description must be 2.`);let i=1,a=()=>{let e=0;for(;;){let t=n[i++];if(t===void 0)throw TypeError(`Vorbis decoder description is too short.`);if(e+=t,t<255)return e}},o=a(),s=a();if(n.length-i<=0)throw TypeError(`Vorbis decoder description is too short.`);let c=n.subarray(i,i+=o);i+=s;let l=n.subarray(i),f=new Uint8Array(7);f[0]=3,f[1]=118,f[2]=111,f[3]=114,f[4]=98,f[5]=105,f[6]=115;let p=Mn(f,this.output._metadataTags,!0);e.packetQueue.push({data:c,timestampInSamples:0,durationInSamples:0,forcePageFlush:!0},{data:p,timestampInSamples:0,durationInSamples:0,forcePageFlush:!1},{data:l,timestampInSamples:0,durationInSamples:0,forcePageFlush:!0});let m=d(c).getUint8(28);e.codecInfo.vorbisInfo={blocksizes:[1<<(m&15),1<<(m>>4)],modeBlockflags:On(l).modeBlockflags}}else if(e.track.source._codec===`opus`){if(!t.decoderConfig.description)throw TypeError(`For Ogg, Opus decoder description is required.`);let n=u(t.decoderConfig.description),r=new Uint8Array(8),i=d(r);i.setUint32(0,1332770163,!1),i.setUint32(4,1415669619,!1);let a=Mn(r,this.output._metadataTags,!0);e.packetQueue.push({data:n,timestampInSamples:0,durationInSamples:0,forcePageFlush:!0},{data:a,timestampInSamples:0,durationInSamples:0,forcePageFlush:!0}),e.codecInfo.opusInfo={preSkip:Tn(n).preSkip}}}async addEncodedAudioPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getTrackData(e,n);this.validateTimestamp(r.track,t.timestamp,t.type===`key`);let i=r.currentTimestampInSamples,{durationInSamples:a,vorbisBlockSize:o}=Oa(t.data,r.codecInfo,r.vorbisLastBlocksize);r.currentTimestampInSamples+=a,r.vorbisLastBlocksize=o,r.packetQueue.push({data:t.data,timestampInSamples:i,durationInSamples:a,forcePageFlush:!1}),await this.interleavePages()}finally{r()}}addSubtitleCue(){throw Error(`Subtitle tracks are not supported.`)}allTracksAreKnown(){for(let e of this.output.tracks)if(!e.source._closed&&!this.trackDatas.some(t=>t.track===e))return!1;return!0}async interleavePages(e=!1){if(!this.bosPagesWritten){if(!this.allTracksAreKnown()&&!e)return;for(let e of this.trackDatas)for(;e.packetQueue.length>0;){let t=e.packetQueue.shift();if(this.writePacket(e,t,!1),t.forcePageFlush)break}this.bosPagesWritten=!0}outer:for(;;){let t=null,n=1/0;for(let r of this.trackDatas){if(!e&&r.packetQueue.length<=1&&!r.closed)break outer;r.packetQueue.length>0&&r.packetQueue[0].timestampInSamples<n&&(t=r,n=r.packetQueue[0].timestampInSamples)}if(!t)break;let r=t.packetQueue.shift(),i=t.packetQueue.length===0;this.writePacket(t,r,i)}e||await this.writer.flush()}writePacket(e,t,n){let r=t.timestampInSamples+t.durationInSamples;if(this.format._options.maximumPageDuration!==void 0){let t=this.format._options.maximumPageDuration*e.internalSampleRate;e.currentLacingValues.length>0&&r-e.currentPageStartTimestampInSamples>t&&this.writePage(e,!1)}let i=t.data.length,a=0,o=0;for(;;){e.currentLacingValues.length===0&&a>0&&(e.currentPageStartsWithFreshPacket=!1);let r=Math.min(255,i);e.currentLacingValues.push(r),e.currentPageSize++,o+=r;let s=i<255;if(e.currentLacingValues.length===255){let r=t.data.subarray(a,o);if(a=o,e.currentPageData.push(r),e.currentPageSize+=r.length,this.writePage(e,n&&s),s)return}if(s)break;i-=255}let s=t.data.subarray(a);e.currentPageData.push(s),e.currentPageSize+=s.length,e.currentGranulePosition=r,(e.currentPageSize>=sp||t.forcePageFlush)&&this.writePage(e,n)}writePage(e,t){this.pageView.setUint32(0,wa,!0),this.pageView.setUint8(4,0);let n=0;e.currentPageStartsWithFreshPacket||(n|=1),e.pagesWritten===0&&(n|=2),t&&(n|=4),this.pageView.setUint8(5,n);let r=e.currentLacingValues.every(e=>e===255)?-1:e.currentGranulePosition;ve(this.pageView,6,r,!0),this.pageView.setUint32(14,e.serialNumber,!0),this.pageView.setUint32(18,e.pagesWritten,!0),this.pageView.setUint32(22,0,!0),this.pageView.setUint8(26,e.currentLacingValues.length),this.pageBytes.set(e.currentLacingValues,27);let i=27+e.currentLacingValues.length;for(let t of e.currentPageData)this.pageBytes.set(t,i),i+=t.length;let a=this.pageBytes.subarray(0,i),o=Da(a);if(this.pageView.setUint32(22,o,!0),e.pagesWritten++,e.currentLacingValues.length=0,e.currentPageData.length=0,e.currentPageSize=27,e.currentPageStartsWithFreshPacket=!0,e.currentPageStartTimestampInSamples=e.currentGranulePosition,this.format._options.onPage&&this.writer.startTrackingWrites(),this.writer.write(a),this.format._options.onPage){let{data:t,start:n}=this.writer.stopTrackingWrites();this.format._options.onPage(t,n,e.track.source)}}async onTrackClose(e){let t=await this.mutex.acquire(),n=this.trackDatas.find(t=>t.track===e);n&&(n.closed=!0),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),await this.interleavePages(),t()}async finalize(){let e=await this.mutex.acquire();this.allTracksKnown.resolve();for(let e of this.trackDatas)e.closed=!0;await this.interleavePages(!0);for(let e of this.trackDatas)e.currentLacingValues.length>0&&this.writePage(e,!0);e()}},lp=0,up=4096,dp=256,fp=224,pp=192,mp=new Uint8Array([9,240]),hp=new Uint8Array([70,1]),gp=class extends Pu{constructor(e,t){super(e),this.trackDatas=[],this.tablesWritten=!1,this.continuityCounters=new Map,this.packetBuffer=new Uint8Array(188),this.packetView=d(this.packetBuffer),this.allTracksKnown=T(),this.videoTrackIndex=0,this.audioTrackIndex=0,this.adaptationFieldBuffer=new Uint8Array(184),this.payloadBuffer=new Uint8Array(184),this.format=t}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(!0),e()}async getMimeType(){return await this.allTracksKnown.promise,eo(this.trackDatas.map(e=>e.codecString))}getVideoTrackData(e,t){let n=this.trackDatas.find(t=>t.track===e);if(n)return n;zr(t,e.source._codec),r(t?.decoderConfig);let i=e.source._codec;r(i===`avc`||i===`hevc`);let a=i===`avc`?27:36,o={track:e,pid:dp+this.trackDatas.length,streamType:a,streamId:fp+this.videoTrackIndex++,codecString:t.decoderConfig.codec,timestampProcessingQueue:[],packetQueue:[],inputIsAnnexB:null,inputIsAdts:null,avcDecoderConfig:null,hevcDecoderConfig:null,adtsHeader:null,adtsHeaderBitstream:null,firstPacketWritten:!1,closed:!1};return this.trackDatas.push(o),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),o}getAudioTrackData(e,t){let n=this.trackDatas.find(t=>t.track===e);if(n)return n;Vr(t,e.source._codec),r(t?.decoderConfig);let i=e.source._codec;r(i===`aac`||i===`mp3`||i===`ac3`||i===`eac3`||i===`dts`);let a,o;switch(i){case`aac`:a=15,o=pp+this.audioTrackIndex++;break;case`mp3`:a=3,o=pp+this.audioTrackIndex++;break;case`ac3`:a=129,o=189;break;case`eac3`:a=135,o=189;break;case`dts`:a=130,o=189}let s={track:e,pid:dp+this.trackDatas.length,streamType:a,streamId:o,codecString:t.decoderConfig.codec,timestampProcessingQueue:[],packetQueue:[],inputIsAnnexB:null,inputIsAdts:null,avcDecoderConfig:null,hevcDecoderConfig:null,adtsHeader:null,adtsHeaderBitstream:null,firstPacketWritten:!1,closed:!1};return this.trackDatas.push(s),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),s}async addEncodedVideoPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getVideoTrackData(e,n);this.validateTimestamp(r.track,t.timestamp,t.type===`key`);let i=this.prepareVideoPacket(r,t,n);t.type===`key`&&await this.flushTimestampQueue(r),r.timestampProcessingQueue.push({data:i,presentationTimestamp:t.timestamp,decodeTimestamp:null,isKeyframe:t.type===`key`})}finally{r()}}async addEncodedAudioPacket(e,t,n){let r=await this.mutex.acquire();try{let r=this.getAudioTrackData(e,n);this.validateTimestamp(r.track,t.timestamp,t.type===`key`);let i=this.prepareAudioPacket(r,t,n);t.type===`key`&&await this.flushTimestampQueue(r),r.timestampProcessingQueue.push({data:i,presentationTimestamp:t.timestamp,decodeTimestamp:null,isKeyframe:t.type===`key`})}finally{r()}}async addSubtitleCue(){throw Error(`MPEG-TS does not support subtitles.`)}prepareVideoPacket(e,t,n){let r=e.track.source._codec;if(e.inputIsAnnexB===null){let t=n?.decoderConfig?.description;if(e.inputIsAnnexB=!t,!e.inputIsAnnexB){let n=u(t);r===`avc`?e.avcDecoderConfig=Zt(n):e.hevcDecoderConfig=hn(n)}}return e.inputIsAnnexB?this.prepareAnnexBVideoPacket(t.data,r):this.prepareLengthPrefixedVideoPacket(e,t,r)}prepareAnnexBVideoPacket(e,t){let n=[];for(let r of Bt(e)){let i=e.subarray(r.offset,r.offset+r.length);(t===`avc`?Ut(i[0])===j.AUD:rn(i[0])===M.AUD_NUT)||n.push(i)}let r=t===`avc`?mp:hp;return n.unshift(r),Kt(n)}prepareLengthPrefixedVideoPacket(e,t,n){let r=t.data,i=n===`avc`?e.avcDecoderConfig.lengthSizeMinusOne+1:e.hevcDecoderConfig.lengthSizeMinusOne+1,a=[];for(let e of Vt(r,i)){let t=r.subarray(e.offset,e.offset+e.length);(n===`avc`?Ut(t[0])===j.AUD:rn(t[0])===M.AUD_NUT)||a.push(t)}if(t.type===`key`){if(n===`avc`){let t=e.avcDecoderConfig;for(let e of t.pictureParameterSets)a.unshift(e);for(let e of t.sequenceParameterSets)a.unshift(e)}else{let t=e.hevcDecoderConfig;for(let e of t.arrays)if(e.nalUnitType===M.PPS_NUT)for(let t of e.nalUnits)a.unshift(t);for(let e of t.arrays)if(e.nalUnitType===M.SPS_NUT)for(let t of e.nalUnits)a.unshift(t);for(let e of t.arrays)if(e.nalUnitType===M.VPS_NUT)for(let t of e.nalUnits)a.unshift(t)}}let o=n===`avc`?mp:hp;return a.unshift(o),Kt(a)}prepareAudioPacket(e,t,n){let i=e.track.source._codec;if(i===`mp3`||i===`ac3`||i===`eac3`||i===`dts`)return t.data;if(e.inputIsAdts===null){let t=n?.decoderConfig?.description;if(e.inputIsAdts=!t,!e.inputIsAdts){let n=It(kt(u(t)));e.adtsHeader=n.header,e.adtsHeaderBitstream=n.bitstream}}if(e.inputIsAdts)return t.data;r(e.adtsHeader),r(e.adtsHeaderBitstream);let a=e.adtsHeader,o=t.data.byteLength+a.byteLength;Lt(e.adtsHeaderBitstream,o);let s=new Uint8Array(o);return s.set(a,0),s.set(t.data,a.byteLength),s}allTracksAreKnown(){for(let e of this.output.tracks)if(!e.source._closed&&!this.trackDatas.some(t=>t.track===e))return!1;return!0}async flushTimestampQueue(e,t=!0){if(e.timestampProcessingQueue.length===0)return;let n=e.timestampProcessingQueue.map(e=>e.presentationTimestamp).sort((e,t)=>e-t);for(let t=0;t<e.timestampProcessingQueue.length;t++){let r=e.timestampProcessingQueue[t];r.decodeTimestamp=n[t],e.packetQueue.push(r)}e.timestampProcessingQueue.length=0,t&&await this.interleavePackets()}async interleavePackets(e=!1){if(!this.tablesWritten){if(!this.allTracksAreKnown()&&!e)return;this.writeTables()}outer:for(;;){let t=null,n=1/0;for(let r of this.trackDatas){if(!e&&r.packetQueue.length===0&&!r.closed)break outer;r.packetQueue.length>0&&r.packetQueue[0].presentationTimestamp<n&&(t=r,n=r.packetQueue[0].presentationTimestamp)}if(!t)break;let r=t.packetQueue.shift();this.writePesPacket(t,r)}e||await this.writer.flush()}writeTables(){r(!this.tablesWritten),this.writePsiSection(lp,bp),this.writePsiSection(up,xp(this.trackDatas)),this.tablesWritten=!0}writePsiSection(e,t){let n=0,r=!0;for(;n<t.length;){let i=184-!!r,a=t.length-n,o=Math.min(i,a),s;r?(s=this.payloadBuffer.subarray(0,1+o),s[0]=0,s.set(t.subarray(n,n+o),1)):s=t.subarray(n,n+o),this.writeTsPacket(e,r,null,s),n+=o,r=!1}}writePesPacket(e,t){let n=e.track.type===`video`,i=n?10:5,a=new Uint8Array(9+i),o=d(a),s=new A(a.subarray(9));ge(o,0,1,!1),a[3]=e.streamId;let c=e.track.type===`video`?0:Math.min(8+t.data.length,65535);o.setUint16(4,c,!1),o.setUint8(6,132),o.setUint8(7,n?192:128),o.setUint8(8,i);let l=Math.round(t.presentationTimestamp*$a);if(s.pos=0,s.writeBits(4,n?3:2),s.writeBits(3,l>>>30&7),s.writeBits(1,1),s.writeBits(15,l>>>15&32767),s.writeBits(1,1),s.writeBits(15,l&32767),s.writeBits(1,1),n){r(t.decodeTimestamp!==null);let e=Math.round(t.decodeTimestamp*$a);s.writeBits(4,1),s.writeBits(3,e>>>30&7),s.writeBits(1,1),s.writeBits(15,e>>>15&32767),s.writeBits(1,1),s.writeBits(15,e&32767),s.writeBits(1,1)}let u=a.length+t.data.length,f=0,p=!0;for(;f<u;){let n=p,r=u-f,i=p&&t.isKeyframe,o=p&&!e.firstPacketWritten,s=Math.max(0,184-r),c;c=i||o?Math.max(2,s):s;let l=null;if(c>0){let e=this.adaptationFieldBuffer;c===1?e[0]=0:(e[0]=c-1,e[1]=Number(o)<<7|Number(i)<<6,e.fill(255,2,c)),l=e.subarray(0,c)}let d=Math.min(184-c,r),m=this.payloadBuffer.subarray(0,d),h=0;if(f<a.length){let e=Math.min(a.length-f,d);m.set(a.subarray(f,f+e),0),h=e}let g=Math.max(0,f-a.length),_=g+(d-h);h<d&&m.set(t.data.subarray(g,_),h),this.writeTsPacket(e.pid,n,l,m),f+=d,p=!1}e.firstPacketWritten=!0}writeTsPacket(e,t,n,r){let i=this.continuityCounters.get(e)??0,a=r.length>0,o=n?a?3:2:+!!a;this.packetBuffer[0]=71,this.packetView.setUint16(1,(t?16384:0)|e&8191,!1),this.packetBuffer[3]=o<<4|i&15,a&&this.continuityCounters.set(e,i+1&15);let s=4;n&&(this.packetBuffer.set(n,s),s+=n.length),this.packetBuffer.set(r,s),s+=r.length,s<188&&this.packetBuffer.fill(255,s);let c=this.writer.getPos();this.writer.write(this.packetBuffer),this.format._options.onPacket&&this.format._options.onPacket(this.packetBuffer.slice(),c)}async onTrackClose(e){let t=await this.mutex.acquire(),n=this.trackDatas.find(t=>t.track===e);n&&(n.closed=!0,await this.flushTimestampQueue(n,!1)),this.allTracksAreKnown()&&this.allTracksKnown.resolve(),await this.interleavePackets(),t()}async finalize(){let e=await this.mutex.acquire();this.allTracksKnown.resolve();for(let e of this.trackDatas)e.closed=!0,await this.flushTimestampQueue(e,!1);await this.interleavePackets(!0),e()}},_p=79764919,vp=new Uint32Array(256);for(let e=0;e<256;e++){let t=e<<24;for(let e=0;e<8;e++)t=t&2147483648?t<<1^_p:t<<1;vp[e]=t>>>0&4294967295}var yp=e=>{let t=4294967295;for(let n=0;n<e.length;n++){let r=e[n];t=(t<<8^vp[t>>>24^r])>>>0}return t},bp=new Uint8Array(16);{let e=d(bp);bp[0]=0,e.setUint16(1,45069,!1),e.setUint16(3,1,!1),bp[5]=193,bp[6]=0,bp[7]=0,e.setUint16(8,1,!1),e.setUint16(10,61440,!1),e.setUint32(12,yp(bp.subarray(0,12)),!1)}var xp=e=>{let t=0;for(let n of e)t+=5,n.streamType===129?t+=Ln.length:n.streamType===135&&(t+=Rn.length);let n=9+t+4,r=new Uint8Array(3+n-4),i=d(r);r[0]=2,i.setUint16(1,45056|n&4095,!1),i.setUint16(3,1,!1),r[5]=193,r[6]=0,r[7]=0,i.setUint16(8,65535,!1),i.setUint16(10,61440,!1);let a=12;for(let t of e)r[a++]=t.streamType,i.setUint16(a,57344|t.pid&8191,!1),a+=2,t.streamType===129?(i.setUint16(a,61440|Ln.length,!1),a+=2,r.set(Ln,a),a+=Ln.length):t.streamType===135?(i.setUint16(a,61440|Rn.length,!1),a+=2,r.set(Rn,a),a+=Rn.length):(i.setUint16(a,61440,!1),a+=2);let o=yp(r),s=new Uint8Array(r.length+4);return s.set(r,0),d(s).setUint32(r.length,o,!1),s},Sp=class{constructor(e){this.writer=e,this.helper=new Uint8Array(8),this.helperView=new DataView(this.helper.buffer)}writeU16(e){this.helperView.setUint16(0,e,!0),this.writer.write(this.helper.subarray(0,2))}writeU32(e){this.helperView.setUint32(0,e,!0),this.writer.write(this.helper.subarray(0,4))}writeU64(e){this.helperView.setUint32(0,e,!0),this.helperView.setUint32(4,Math.floor(e/2**32),!0),this.writer.write(this.helper)}writeAscii(e){this.writer.write(new TextEncoder().encode(e))}},Cp=class extends Pu{constructor(e,t){super(e),this.headerWritten=!1,this.dataSize=0,this.sampleRate=null,this.sampleCount=0,this.riffSizePos=null,this.dataSizePos=null,this.ds64RiffSizePos=null,this.ds64DataSizePos=null,this.ds64SampleCountPos=null,this.format=t,this.isRf64=!!t._options.large}async start(){let e=await this.mutex.acquire();this.writer=await this.output._getRootWriter(!1),this.riffWriter=new Sp(this.writer);let t=this.output.tracks[0];r(t?.isAudioTrack()),t.metadata.decoderConfig&&(Vr({decoderConfig:t.metadata.decoderConfig},t.source._codec),this.writeHeader(t,t.metadata.decoderConfig),this.sampleRate=t.metadata.decoderConfig.sampleRate,this.headerWritten=!0),e()}async getMimeType(){return`audio/wav`}async addEncodedVideoPacket(){throw Error(`WAVE does not support video.`)}async addEncodedAudioPacket(e,t,n){let i=await this.mutex.acquire();try{if(this.headerWritten||=(Vr(n,e.source._codec),r(n),r(n.decoderConfig),this.writeHeader(e,n.decoderConfig),this.sampleRate=n.decoderConfig.sampleRate,!0),this.validateTimestamp(e,t.timestamp,t.type===`key`),!this.isRf64&&this.writer.getPos()+t.data.byteLength>=2**32)throw Error("Adding more audio data would exceed the maximum RIFF size of 4 GiB. To write larger files, use RF64 by setting `large: true` in the WavOutputFormatOptions.");this.writer.write(t.data),this.dataSize+=t.data.byteLength,this.sampleCount+=Math.round(t.duration*this.sampleRate),await this.writer.flush()}finally{i()}}async addSubtitleCue(){throw Error(`WAVE does not support subtitles.`)}writeHeader(e,t){this.format._options.onHeader&&this.writer.startTrackingWrites();let n,r=e.source._codec,i=Ar(r);n=i.dataType===`ulaw`?La.MULAW:i.dataType===`alaw`?La.ALAW:i.dataType===`float`?La.IEEE_FLOAT:La.PCM;let a=t.numberOfChannels,o=t.sampleRate,s=i.sampleSize*a;if(this.riffWriter.writeAscii(this.isRf64?`RF64`:`RIFF`),this.isRf64?this.riffWriter.writeU32(4294967295):(this.riffSizePos=this.writer.getPos(),this.riffWriter.writeU32(0)),this.riffWriter.writeAscii(`WAVE`),this.isRf64&&(this.riffWriter.writeAscii(`ds64`),this.riffWriter.writeU32(28),this.ds64RiffSizePos=this.writer.getPos(),this.riffWriter.writeU64(0),this.ds64DataSizePos=this.writer.getPos(),this.riffWriter.writeU64(0),this.ds64SampleCountPos=this.writer.getPos(),this.riffWriter.writeU64(0),this.riffWriter.writeU32(0)),this.riffWriter.writeAscii(`fmt `),this.riffWriter.writeU32(16),this.riffWriter.writeU16(n),this.riffWriter.writeU16(a),this.riffWriter.writeU32(o),this.riffWriter.writeU32(o*s),this.riffWriter.writeU16(s),this.riffWriter.writeU16(8*i.sampleSize),!wt(this.output._metadataTags)){let e=this.format._options.metadataFormat??`info`;e===`info`?this.writeInfoChunk(this.output._metadataTags):e===`id3`?this.writeId3Chunk(this.output._metadataTags):E(e)}if(this.riffWriter.writeAscii(`data`),this.isRf64?this.riffWriter.writeU32(4294967295):(this.dataSizePos=this.writer.getPos(),this.riffWriter.writeU32(0)),this.format._options.onHeader){let{data:e,start:t}=this.writer.stopTrackingWrites();this.format._options.onHeader(e,t)}}writeInfoChunk(e){let t=this.writer.getPos();this.riffWriter.writeAscii(`LIST`),this.riffWriter.writeU32(0),this.riffWriter.writeAscii(`INFO`);let n=new Set,r=(e,t)=>{if(!m(t)){k._warn(`Didn't write tag '${e}' because '${t}' is not ISO 8859-1-compatible.`);return}let r=t.length+1,i=new Uint8Array(r);for(let e=0;e<t.length;e++)i[e]=t.charCodeAt(e);this.riffWriter.writeAscii(e),this.riffWriter.writeU32(r),this.writer.write(i),r&1&&this.writer.write(new Uint8Array(1)),n.add(e)};for(let{key:t,value:i}of Ke(e))switch(t){case`title`:r(`INAM`,i),n.add(`INAM`);break;case`artist`:r(`IART`,i),n.add(`IART`);break;case`album`:r(`IPRD`,i),n.add(`IPRD`);break;case`trackNumber`:r(`ITRK`,e.tracksTotal===void 0?i.toString():`${i}/${e.tracksTotal}`),n.add(`ITRK`);break;case`genre`:r(`IGNR`,i),n.add(`IGNR`);break;case`date`:r(`ICRD`,i.toISOString().slice(0,10)),n.add(`ICRD`);break;case`comment`:r(`ICMT`,i),n.add(`ICMT`);break;case`albumArtist`:case`discNumber`:case`tracksTotal`:case`discsTotal`:case`description`:case`lyrics`:case`images`:break;case`raw`:break;default:E(t)}if(e.raw)for(let t in e.raw){let i=e.raw[t];i==null||t.length!==4||n.has(t)||typeof i==`string`&&r(t,i)}let i=this.writer.getPos(),a=i-t-8;this.writer.seek(t+4),this.riffWriter.writeU32(a),this.writer.seek(i),a&1&&this.writer.write(new Uint8Array(1))}writeId3Chunk(e){let t=this.writer.getPos();this.riffWriter.writeAscii(`ID3 `),this.riffWriter.writeU32(0);let n=new Nu(this.writer).writeId3V2Tag(e),r=this.writer.getPos();this.writer.seek(t+4),this.riffWriter.writeU32(n),this.writer.seek(r),n&1&&this.writer.write(new Uint8Array(1))}async finalize(){let e=await this.mutex.acquire();if(!this.headerWritten)throw Error(`Cannot finalize an empty WAVE file: no packets were added and the track specified no decoderConfig in its metadata, so there's no telling what the file should look like.`);let t=this.writer.getPos();this.isRf64?(r(this.ds64RiffSizePos!==null),this.writer.seek(this.ds64RiffSizePos),this.riffWriter.writeU64(t-8),r(this.ds64DataSizePos!==null),this.writer.seek(this.ds64DataSizePos),this.riffWriter.writeU64(this.dataSize),r(this.ds64SampleCountPos!==null),this.writer.seek(this.ds64SampleCountPos),this.riffWriter.writeU64(this.sampleCount)):(r(this.riffSizePos!==null),this.writer.seek(this.riffSizePos),this.riffWriter.writeU32(t-8),r(this.dataSizePos!==null),this.writer.seek(this.dataSizePos),this.riffWriter.writeU32(this.dataSize)),e()}},wp=class{constructor(e){this.sourceSampleRate=null,this.sourceNumberOfChannels=null,this.startTime=null,this.bufferStartFrame=0,this.maxWrittenFrame=null,this.targetSampleRate=e.targetSampleRate,this.targetNumberOfChannels=e.targetNumberOfChannels,this.onSample=e.onSample,this.bufferSizeInFrames=Math.floor(this.targetSampleRate*5),this.bufferSizeInSamples=this.bufferSizeInFrames*this.targetNumberOfChannels,this.outputBuffer=new Float32Array(this.bufferSizeInSamples)}doChannelMixerSetup(){r(this.sourceNumberOfChannels!==null);let e=this.sourceNumberOfChannels,t=this.targetNumberOfChannels;this.channelMixer=e===1&&t===2?(t,n)=>t[n*e]:e===1&&t===4?(t,n,r)=>t[n*e]*+(r<2):e===1&&t===6?(t,n,r)=>t[n*e]*+(r===2):e===2&&t===1?(t,n)=>{let r=n*e;return .5*(t[r]+t[r+1])}:e===2&&t===4||e===2&&t===6?(t,n,r)=>t[n*e+r]*+(r<2):e===4&&t===1?(t,n)=>{let r=n*e;return .25*(t[r]+t[r+1]+t[r+2]+t[r+3])}:e===4&&t===2?(t,n,r)=>{let i=n*e;return .5*(t[i+r]+t[i+r+2])}:e===4&&t===6?(t,n,r)=>{let i=n*e;return r<2?t[i+r]:r===2||r===3?0:t[i+r-2]}:e===6&&t===1?(t,n)=>{let r=n*e;return Math.SQRT1_2*(t[r]+t[r+1])+t[r+2]+.5*(t[r+4]+t[r+5])}:e===6&&t===2?(t,n,r)=>{let i=n*e;return t[i+r]+Math.SQRT1_2*(t[i+2]+t[i+r+4])}:e===6&&t===4?(t,n,r)=>{let i=n*e;return r<2?t[i+r]+Math.SQRT1_2*t[i+2]:t[i+r+2]}:(t,n,r)=>r<e?t[n*e+r]:0}ensureTempBufferSize(e){let t=this.tempSourceBuffer.length;for(;t<e;)t*=2;if(t!==this.tempSourceBuffer.length){let e=new Float32Array(t);e.set(this.tempSourceBuffer),this.tempSourceBuffer=e}}async add(e){this.sourceSampleRate===null&&(this.sourceSampleRate=e.sampleRate,this.sourceNumberOfChannels=e.numberOfChannels,this.startTime=e.timestamp,this.tempSourceBuffer=new Float32Array(this.sourceSampleRate*this.sourceNumberOfChannels),this.doChannelMixerSetup()),r(this.startTime!==null);let t=e.numberOfFrames*e.numberOfChannels;this.ensureTempBufferSize(t);let n=e.allocationSize({planeIndex:0,format:`f32`}),i=new Float32Array(this.tempSourceBuffer.buffer,0,n/4);e.copyTo(i,{planeIndex:0,format:`f32`});let a=e.timestamp-this.startTime,o=a+e.duration,s=Math.floor((a-1/this.sourceSampleRate)*this.targetSampleRate)+1,c=Math.ceil(o*this.targetSampleRate);for(let t=s;t<c;t++){if(t<this.bufferStartFrame)continue;for(;t>=this.bufferStartFrame+this.bufferSizeInFrames;)await this.finalizeCurrentBuffer(),this.bufferStartFrame+=this.bufferSizeInFrames;let n=t-this.bufferStartFrame;r(n<this.bufferSizeInFrames);let o=(t/this.targetSampleRate-a)*this.sourceSampleRate,s=Math.floor(o),c=Math.ceil(o),l=o-s;for(let t=0;t<this.targetNumberOfChannels;t++){let r=0,a=0;s>=0&&s<e.numberOfFrames&&(r=this.channelMixer(i,s,t)),c>=0&&c<e.numberOfFrames&&(a=this.channelMixer(i,c,t));let o=r+l*(a-r),u=n*this.targetNumberOfChannels+t;this.outputBuffer[u]+=o}this.maxWrittenFrame=this.maxWrittenFrame===null?n:Math.max(this.maxWrittenFrame,n)}}async finalizeCurrentBuffer(){if(this.maxWrittenFrame===null)return;r(this.startTime!==null);let e=(this.maxWrittenFrame+1)*this.targetNumberOfChannels,t=new Float32Array(e);t.set(this.outputBuffer.subarray(0,e));let n=new kc({format:`f32`,sampleRate:this.targetSampleRate,numberOfChannels:this.targetNumberOfChannels,timestamp:this.startTime+this.bufferStartFrame/this.targetSampleRate,data:t});await this.onSample(n),this.outputBuffer.fill(0),this.maxWrittenFrame=null}finalize(){return this.finalizeCurrentBuffer()}},Tp=function(e,t,n){if(t!=null){if(typeof t!=`object`&&typeof t!=`function`)throw TypeError(`Object expected.`);var r,i;if(n){if(!Symbol.asyncDispose)throw TypeError(`Symbol.asyncDispose is not defined.`);r=t[Symbol.asyncDispose]}if(r===void 0){if(!Symbol.dispose)throw TypeError(`Symbol.dispose is not defined.`);r=t[Symbol.dispose],n&&(i=r)}if(typeof r!=`function`)throw TypeError(`Object not disposable.`);i&&(r=function(){try{i.call(this)}catch(e){return Promise.reject(e)}}),e.stack.push({value:t,dispose:r,async:n})}else n&&e.stack.push({async:!0});return t},Ep=(function(e){return function(t){function n(n){t.error=t.hasError?new e(n,t.error,`An error was suppressed during disposal.`):n,t.hasError=!0}var r,i=0;function a(){for(;r=t.stack.pop();)try{if(!r.async&&i===1)return i=0,t.stack.push(r),Promise.resolve().then(a);if(r.dispose){var e=r.dispose.call(r.value);if(r.async)return i|=2,Promise.resolve(e).then(a,function(e){return n(e),a()})}else i|=1}catch(e){n(e)}if(i===1)return t.hasError?Promise.reject(t.error):Promise.resolve();if(t.hasError)throw t.error}return a()}})(typeof SuppressedError==`function`?SuppressedError:function(e,t,n){var r=Error(n);return r.name=`SuppressedError`,r.error=e,r.suppressed=t,r}),Dp=class{constructor(){this._connectedTrack=null,this._closingPromise=null,this._closed=!1}_ensureValidAdd(){if(!this._connectedTrack)throw Error(`Source is not connected to an output track.`);if(this._connectedTrack.output.state===`canceled`)throw Error(`Output has been canceled.`);if(this._connectedTrack.output.state===`finalizing`||this._connectedTrack.output.state===`finalized`)throw Error(`Output has been finalized.`);if(this._connectedTrack.output.state===`pending`)throw Error(`Output has not started.`);if(this._closed)throw Error(`Source is closed.`)}async _start(){}async _flushAndClose(e){}close(){if(this._closingPromise)return;let e=this._connectedTrack;if(!e)throw Error(`Cannot call close without connecting the source to an output track.`);if(e.output.state===`pending`)throw Error(`Cannot call close before output has been started.`);this._closingPromise=(async()=>{await this._flushAndClose(!1),this._closed=!0,e.output.state!==`finalizing`&&e.output.state!==`finalized`&&e.output._muxer.onTrackClose(e)})()}async _flushOrWaitForOngoingClose(e){return this._closingPromise??=(async()=>{await this._flushAndClose(e),this._closed=!0})()}},Op=class extends Dp{constructor(e){if(super(),this._connectedTrack=null,!N.includes(e))throw TypeError(`Invalid video codec '${e}'. Must be one of: ${N.join(`, `)}.`);this._codec=e}},kp=(e,t)=>{if(e.metadata.hasOnlyKeyPackets&&t.type!==`key`)throw Error(`Cannot add non-key packets to a hasOnlyKeyPackets video track.`)},Ap=class extends Op{constructor(e){super(e)}add(e,t){if(!(e instanceof I))throw TypeError(`packet must be an EncodedPacket.`);if(e.isMetadataOnly)throw TypeError(`Metadata-only packets cannot be added.`);if(t!==void 0&&(!t||typeof t!=`object`))throw TypeError(`meta, when provided, must be an object.`);return this._ensureValidAdd(),kp(this._connectedTrack,e),this._connectedTrack.output._muxer.addEncodedVideoPacket(this._connectedTrack,e,t)}},jp=class{setError(e){this.errorSet||=(this.error=e,!0)}constructor(e,t){this.source=e,this.encodingConfig=t,this.ensureEncoderPromise=null,this.encoderInitialized=!1,this.encoder=null,this.muxer=null,this.lastMultipleOfKeyFrameInterval=-1,this.emittedEncoderPackets=0,this.codedWidth=null,this.codedHeight=null,this.outputWidth=null,this.outputHeight=null,this.frameRateLastSample=null,this.frameRateLastTimestamp=null,this.frameRateLastEndTimestamp=null,this.preciseTimings=[],this.customEncoder=null,this.customEncoderCallSerializer=new Fe,this.customEncoderQueueSize=0,this.defaultEncodeOptions={},this.alphaEncoder=null,this.splitter=null,this.splitterCreationFailed=!1,this.alphaFrameQueue=[],this.error=null,this.errorSet=!1,this.lastMuxerPromise=Promise.resolve(),this.closed=!1}async add(e,t,n){let i=e;try{this.checkForEncoderError(),this.source._ensureValidAdd();let a=this.encodingConfig,o=a.sizeChangeBehavior??`deny`,s=!1;if(this.codedWidth!==null&&this.codedHeight!==null){if((e.codedWidth!==this.codedWidth||e.codedHeight!==this.codedHeight)&&(s=!0,o===`deny`))throw Error(`Video sample size must remain constant. Expected ${this.codedWidth}x${this.codedHeight}, got ${e.codedWidth}x${e.codedHeight}. To allow the sample size to change over time, set \`sizeChangeBehavior\` to a value other than 'deny' in the encoding options.`)}else this.codedWidth=e.codedWidth,this.codedHeight=e.codedHeight;if(a.transform?.width!==void 0||a.transform?.height!==void 0||a.transform?.rotate!==void 0||a.transform?.crop!==void 0||a.transform?.force===!0||s&&o!==`passThrough`){let n=a.transform?.width,i=a.transform?.height,c=a.transform?.fit??`fill`;s&&o!==`passThrough`&&(r(this.outputWidth),r(this.outputHeight),r(o!==`deny`),n=this.outputWidth,i=this.outputHeight,c=o);let l=await e.transform({width:n,height:i,roundDimensionsTo:2,crop:a.transform?.crop,rotate:a.transform?.rotate,fit:c,alpha:a.alpha});(this.outputWidth===null||this.outputHeight===null)&&(this.outputWidth=l.displayWidth,this.outputHeight=l.displayHeight),t&&e.close(),e=l,t=!0}else(this.outputWidth===null||this.outputHeight===null)&&(this.outputWidth=e.codedWidth,this.outputHeight=e.codedHeight);let c=a.transform?.frameRate;if(c!==void 0){let r=e.timestamp+e.duration,a=Te(e.timestamp,c);if(this.frameRateLastSample!==null){if(a<=this.frameRateLastTimestamp){this.frameRateLastSample.close(),this.frameRateLastSample=e.clone(),this.frameRateLastEndTimestamp=r;return}await this.padFrameRate(a,n)}e===i&&(e=e.clone(),t=!0),e.setTimestamp(a),e.setDuration(1/c),this.frameRateLastSample?.close(),this.frameRateLastSample=e.clone(),this.frameRateLastTimestamp=a,this.frameRateLastEndTimestamp=r}await this.processAndEncode(e,n)}finally{t&&e.close()}}async processAndEncode(e,t){let n=this.encodingConfig,i;if(n.transform?.process){let t=n.transform.process(e);if(O(t)&&(t=await t),t===null)return;Array.isArray(t)||(t=[t]);let r=[];try{for(let n of t)n instanceof lc?r.push(n):typeof VideoFrame<`u`&&n instanceof VideoFrame?r.push(new lc(n)):r.push(new lc(n,{timestamp:e.timestamp,duration:e.duration}))}catch(n){for(let t of r)t!==e&&t.close();for(let n of t)(n instanceof lc&&n!==e||typeof VideoFrame<`u`&&n instanceof VideoFrame)&&n.close();throw n}i=r}else i=[e];try{for(let e of i){if(this.encoderInitialized||(this.ensureEncoderPromise||this.ensureEncoder(e),this.encoderInitialized||await this.ensureEncoderPromise),r(this.encoderInitialized),this.closed)break;let n=this.encodingConfig.keyFrameInterval??2,i=Math.floor(e.timestamp/n),a={...this.defaultEncodeOptions,...e.encodeOptions,...t},o={...a,keyFrame:a.keyFrame===void 0?n===0||i!==this.lastMultipleOfKeyFrameInterval:a.keyFrame};if(this.lastMultipleOfKeyFrameInterval=i,this.encodingConfig.onEncodedSample?.(e),this.customEncoder){this.customEncoderQueueSize++;let t=e.clone(),n=this.customEncoderCallSerializer.call(()=>this.customEncoder.encode(t,o)).catch(e=>this.setError(e)).finally(()=>{this.customEncoderQueueSize--,t.close()});this.customEncoderQueueSize>=4&&await n}else{r(this.encoder);let t=e.toVideoFrame(),n=w(this.preciseTimings,t.timestamp,e=>e.microsecondTimestamp),i=n===-1?null:this.preciseTimings[n];if(i&&i.microsecondTimestamp===t.timestamp?(i.timestamp!==e.timestamp&&(i.timestampIsValid=!1),i.duration!==e.duration&&(i.durationIsValid=!1)):(this.preciseTimings.splice(n+1,0,{microsecondTimestamp:t.timestamp,timestamp:e.timestamp,duration:e.duration,timestampIsValid:!0,durationIsValid:!0}),this.preciseTimings.length>128&&this.preciseTimings.shift()),!this.alphaEncoder)try{this.encoder.encode(t,o)}finally{t.close()}else if(t.format&&!t.format.includes(`A`)||this.splitterCreationFailed){this.alphaFrameQueue.push(null);try{this.encoder.encode(t,o)}finally{t.close()}}else{this.splitter||=new Np;let{colorFrame:e,alphaFrame:n}=await this.splitter.split(t);this.alphaFrameQueue.push(n);try{this.encoder.encode(e,o)}finally{e.close()}}this.encoder.encodeQueueSize>=4&&await new Promise(e=>this.encoder.addEventListener(`dequeue`,e,{once:!0}))}await this.lastMuxerPromise}}finally{for(let t of i)t!==e&&t.close()}}async padFrameRate(e,t){let n=this.encodingConfig.transform.frameRate;r(this.frameRateLastSample);let i=Math.round((e-this.frameRateLastTimestamp)*n);for(let e=1;e<i;e++){let r={stack:[],error:void 0,hasError:!1};try{let i=Tp(r,this.frameRateLastSample.clone(),!1);i.setTimestamp(this.frameRateLastTimestamp+e/n),i.setDuration(1/n),await this.processAndEncode(i,t)}catch(e){r.error=e,r.hasError=!0}finally{Ep(r)}}}ensureEncoder(e){this.ensureEncoderPromise=(async()=>{let t=al(this.encodingConfig.quality,this.encodingConfig.bitrate);r(t!==void 0);let n=Hc({...this.encodingConfig,quality:t,width:e.codedWidth,height:e.codedHeight,squarePixelWidth:e.squarePixelWidth,squarePixelHeight:e.squarePixelHeight,framerate:this.source._connectedTrack?.metadata.frameRate}),i=null,a;for(let e of n){let t=e.config;if(this.encodingConfig.onEncoderConfig?.(t),a=bl.find(e=>e.supports(this.encodingConfig.codec,t)),a){i=e;break}if(!(typeof VideoEncoder>`u`)){if(t.alpha=`discard`,this.encodingConfig.alpha===`keep`&&(t.latencyMode=`quality`),(t.width%2==1||t.height%2==1)&&(this.encodingConfig.codec===`avc`||this.encodingConfig.codec===`hevc`))throw Error(`The dimensions ${t.width}x${t.height} are not supported for codec '${this.encodingConfig.codec}'; both width and height must be even numbers. Make sure to round your dimensions to the nearest even number.`);try{if((await VideoEncoder.isConfigSupported(t)).supported){i=e;break}}catch{}}}if(!i){if(typeof VideoEncoder>`u`)throw Error(He(`VideoEncoder`));let e=n[0].config,t=n.map(({config:e,quantizer:t})=>t===null?`${e.bitrate} bps`:`quantizer ${t}`);throw Error(`This specific encoder configuration (${e.codec}, ${t.join(` / `)}, ${e.width}x${e.height}, hardware acceleration: ${e.hardwareAcceleration??`no-preference`}) is not supported in this environment. Consider using another codec or changing your video parameters.`)}let o=i.config;if(i.quantizer!==null&&(this.defaultEncodeOptions=Xc(this.encodingConfig.codec,i.quantizer)),a)this.customEncoder=new a,this.customEncoder.codec=this.encodingConfig.codec,this.customEncoder.config=o,this.customEncoder.onPacket=(e,t)=>{if(!(e instanceof I))throw TypeError(`The first argument passed to onPacket must be an EncodedPacket.`);if(t!==void 0&&(!t||typeof t!=`object`))throw TypeError(`The second argument passed to onPacket must be an object or undefined.`);kp(this.source._connectedTrack,e),this.encodingConfig.onEncodedPacket?.(e,t),this.lastMuxerPromise=this.muxer.addEncodedVideoPacket(this.source._connectedTrack,e,t).catch(e=>{this.setError(e)})},this.customEncoder.onError=e=>{this.setError(e)},await this.customEncoder.init();else{let e=[],t=[],n=0,i=0,a=(e,t,n)=>{let r={};if(t){let e=new Uint8Array(t.byteLength);t.copyTo(e),r.alpha=e}let i=I.fromEncodedChunk(e,r),a=w(this.preciseTimings,e.timestamp,e=>e.microsecondTimestamp),o=a===-1?null:this.preciseTimings[a],s=null;this.emittedEncoderPackets===0&&i.type===`delta`&&n?.decoderConfig&&(s=kn(this.encodingConfig.codec,n.decoderConfig,i.data)),(o&&o.microsecondTimestamp===e.timestamp||s!==null)&&(i=i.clone({timestamp:o?.timestampIsValid?o.timestamp:void 0,duration:o?.durationIsValid?o.duration:void 0,type:s??void 0})),kp(this.source._connectedTrack,i),this.encodingConfig.onEncodedPacket?.(i,n),this.lastMuxerPromise=this.muxer.addEncodedVideoPacket(this.source._connectedTrack,i,n).catch(e=>{this.setError(e)}),this.emittedEncoderPackets++},s=Error(`Encoding error`).stack;if(this.encoder=new VideoEncoder({output:(o,s)=>{if(!this.alphaEncoder){a(o,null,s);return}let c=this.alphaFrameQueue.shift();r(c!==void 0),c?(this.alphaEncoder.encode(c,{...this.defaultEncodeOptions,keyFrame:o.type===`key`}),i++,c.close(),e.push({chunk:o,meta:s})):i===0?a(o,null,s):(t.push(n+i),e.push({chunk:o,meta:s}))},error:e=>{e.stack=s,this.setError(e)}}),this.encoder.configure(o),this.encodingConfig.alpha===`keep`){let s=Error(`Encoding error`).stack;this.alphaEncoder=new VideoEncoder({output:(o,s)=>{i--;let c=e.shift();for(r(c!==void 0),a(c.chunk,o,c.meta),n++;t.length>0&&t[0]===n;){t.shift();let n=e.shift();r(n!==void 0),a(n.chunk,null,n.meta)}},error:e=>{e.stack=s,this.setError(e)}}),this.alphaEncoder.configure(o)}}r(this.source._connectedTrack),this.muxer=this.source._connectedTrack.output._muxer,this.encoderInitialized=!0})()}async flushAndClose(e){try{if(!e&&(this.checkForEncoderError(),this.frameRateLastSample)){let e=this.encodingConfig.transform.frameRate,t=Te(this.frameRateLastEndTimestamp,e);await this.padFrameRate(t)}this.closed=!0,e||(this.customEncoder?this.customEncoderCallSerializer.call(()=>this.customEncoder.flush()):this.encoder&&(await this.encoder.flush(),await this.alphaEncoder?.flush(),await mt(25)))}finally{this.closed=!0,this.frameRateLastSample?.close(),this.frameRateLastSample=null,this.customEncoder?await this.customEncoderCallSerializer.call(()=>this.customEncoder.close()).catch(e=>this.setError(e)):this.encoder&&(this.encoder.state!==`closed`&&this.encoder.close(),this.alphaEncoder&&this.alphaEncoder.state!==`closed`&&this.alphaEncoder.close(),this.alphaFrameQueue.forEach(e=>e?.close()),this.alphaFrameQueue.length=0,this.splitter?.close())}e||this.checkForEncoderError()}getQueueSize(){return this.customEncoder?this.customEncoderQueueSize:this.encoder?.encodeQueueSize??0}checkForEncoderError(){if(this.errorSet)throw this.error}},Mp=null,Np=class{constructor(){this.worker=null,this.pendingRequests=new Map,this.nextRequestId=0}split(e){if(!this.worker){if(!Mp){let e=new Blob([`(${Pp.toString()})()`],{type:`application/javascript`});Mp=URL.createObjectURL(e)}this.worker=new Worker(Mp),this.worker.addEventListener(`message`,e=>{let t=e.data,n=this.pendingRequests.get(t.id);n&&(this.pendingRequests.delete(t.id),`error`in t?n.reject(Error(t.error)):n.resolve({colorFrame:t.colorFrame,alphaFrame:t.alphaFrame}))}),this.worker.addEventListener(`error`,e=>{let t=Error(e.message||`Color/alpha splitter worker error.`);for(let e of this.pendingRequests.values())e.reject(t);this.pendingRequests.clear()})}let t=this.nextRequestId++,n=T();return this.pendingRequests.set(t,n),this.worker.postMessage({id:t,sourceFrame:e},{transfer:[e]}),n.promise}close(){this.worker?.terminate(),this.worker=null;let e=Error(`Color/alpha splitter closed.`);for(let t of this.pendingRequests.values())t.reject(e);this.pendingRequests.clear()}},Pp=()=>{let e=null,t=Promise.resolve();self.addEventListener(`message`,e=>{let{id:r,sourceFrame:i}=e.data;t=t.then(async()=>{try{let{colorFrame:e,alphaFrame:t}=await n(i);self.postMessage({id:r,colorFrame:e,alphaFrame:t},{transfer:[e,t]})}catch(e){self.postMessage({id:r,error:e.message})}finally{i.close()}})});let n=async t=>{let n=t.format;if(!n)throw Error(`CPU color/alpha splitting requires a known VideoFrame format.`);let a=t.allocationSize();if((!e||e.byteLength!==a)&&(e=new Uint8Array(a)),await t.copyTo(e),n===`RGBA`||n===`BGRA`)return r(e,n,t);if(n===`I420A`||n===`I420AP10`||n===`I420AP12`||n===`I422A`||n===`I422AP10`||n===`I422AP12`||n===`I444A`||n===`I444AP10`||n===`I444AP12`)return i(e,n,t);throw Error(`CPU color/alpha splitting does not support format '${n}'.`)},r=(e,t,n)=>{let r=n.visibleRect?.width??n.codedWidth,i=n.visibleRect?.height??n.codedHeight,a=r*i,o=a+Math.ceil(r/2)*Math.ceil(i/2)*2,s=new Uint8Array(o);for(let t=0,n=3;t<a;t++,n+=4)s[t]=e[n];s.fill(128,a);let c=new VideoFrame(e,{format:t===`RGBA`?`RGBX`:`BGRX`,codedWidth:r,codedHeight:i,timestamp:n.timestamp,duration:n.duration??void 0}),l={format:`I420`,codedWidth:r,codedHeight:i,timestamp:n.timestamp,duration:n.duration??void 0,transfer:[s.buffer]};return{colorFrame:c,alphaFrame:new VideoFrame(s,l)}},i=(e,t,n)=>{let r=n.visibleRect?.width??n.codedWidth,i=n.visibleRect?.height??n.codedHeight,a=t.includes(`P10`),o=t.includes(`P12`),s=a||o?2:1,c,l;t.startsWith(`I420`)?(c=Math.ceil(r/2),l=Math.ceil(i/2)):t.startsWith(`I422`)?(c=Math.ceil(r/2),l=i):(c=r,l=i);let u=r*i,d=c*l,f=u*s,p=d*s,m=u*s,h=f+p*2,g=t.replace(`A`,``),_=Math.ceil(r/2)*Math.ceil(i/2),v=m+_*s*2,y=new Uint8Array(v),b=h;y.set(e.subarray(b,b+m),0);let x=m,S=a?512:o?2048:128;s===1?y.fill(S,x):new Uint16Array(y.buffer,x,2*_).fill(S);let C=a?`I420P10`:o?`I420P12`:`I420`,ee=new VideoFrame(e.subarray(0,h),{format:g,codedWidth:r,codedHeight:i,timestamp:n.timestamp,duration:n.duration??void 0}),te={format:C,codedWidth:r,codedHeight:i,timestamp:n.timestamp,duration:n.duration??void 0,transfer:[y.buffer]};return{colorFrame:ee,alphaFrame:new VideoFrame(y,te)}}},Fp=class extends Op{constructor(e){Bc(e),super(e.codec),this._encoder=new jp(this,e)}add(e,t){if(!(e instanceof lc))throw TypeError(`videoSample must be a VideoSample.`);return this._encoder.add(e,!1,t)}_flushAndClose(e){return this._encoder.flushAndClose(e)}},Ip=class extends Op{constructor(e,t){if(!(typeof HTMLCanvasElement<`u`&&e instanceof HTMLCanvasElement)&&!(typeof OffscreenCanvas<`u`&&e instanceof OffscreenCanvas))throw TypeError(`canvas must be an HTMLCanvasElement or OffscreenCanvas.`);Bc(t),super(t.codec),this._encoder=new jp(this,t),this._canvas=e}add(e,t=0,n){if(!Number.isFinite(e)||e<0)throw TypeError(`timestamp must be a non-negative number.`);if(!Number.isFinite(t)||t<0)throw TypeError(`duration must be a non-negative number.`);let r=new lc(this._canvas,{timestamp:e,duration:t});return this._encoder.add(r,!0,n)}_flushAndClose(e){return this._encoder.flushAndClose(e)}},Lp=class extends Op{get errorPromise(){return this._errorPromiseAccessed=!0,this._promiseWithResolvers.promise}get paused(){return this._paused}constructor(e,t,n={}){if(!(e instanceof MediaStreamTrack)||e.kind!==`video`)throw TypeError(`track must be a video MediaStreamTrack.`);if(Bc(t),typeof n!=`object`||!n)throw TypeError(`options must be an object.`);if(n.frameRate!=null&&(typeof n.frameRate!=`number`||n.frameRate<=0))throw TypeError(`options.frameRate, when provided, must be either a positive number or null.`);if(n.timestampBase!==void 0&&n.timestampBase!==`synced-zero`&&n.timestampBase!==`zero`&&n.timestampBase!==`unix`)throw TypeError(`options.timestampBase, when provided, must be one of 'synced-zero', 'zero', or 'unix'.`);t={...t,latencyMode:`realtime`},super(t.codec),this._abortController=null,this._workerTrackId=null,this._workerListener=null,this._promiseWithResolvers=T(),this._errorPromiseAccessed=!1,this._paused=!1,this._lastVideoFrame=null,this._timerHandle=null,this._videoElement=null,this._options=n,this._encoder=new jp(this,t),this._track=e}async _start(){this._errorPromiseAccessed||k._warn("Make sure not to ignore the `errorPromise` field on MediaStreamVideoTrackSource, so that any internal errors get bubbled up properly.");let e=this._options.frameRate===void 0?this._track.getSettings().frameRate??null:this._options.frameRate;this._abortController=new AbortController;let t=null,n=null,i=0,a=!1,o=null,s=0,c=()=>{if(r(e!==null),!this._lastVideoFrame)return;r(n!==null),r(t!==null);let a=performance.now();for(;a-n>1e3/e;){n+=1e3/e;let r=t+i/e,o=new VideoFrame(this._videoElement??this._lastVideoFrame,{timestamp:1e6*r,duration:1e6/e});u(o,a)}};e!==null&&(this._timerHandle=ft(c,4));let l=t=>{if(e===null)u(t);else{let e=performance.now();this._lastVideoFrame?(c(),this._lastVideoFrame?.close(),this._lastVideoFrame=t):(u(t.clone(),e),n=e,this._lastVideoFrame=t)}},u=(e,n=performance.now())=>{if(a){e.close();return}i++;let r=e.timestamp/1e6;if(this._paused){if(t!==null){if(o!==null&&this._options.timestampBase!==`unix`){let e=r-o;s-=e}o=r}e.close();return}if(t===null){t=r;let e,i=this._options.timestampBase??`synced-zero`;if(i===`unix`)e=Date.now()/1e3;else if(i===`zero`)e=0;else{let t=this._connectedTrack.output;t._firstMediaStreamTimestamp===null?(t._firstMediaStreamTimestamp=n/1e3,e=0):e=n/1e3-t._firstMediaStreamTimestamp}s=e-t}if(o=r,this._encoder.getQueueSize()>=8){e.close();return}let c=new lc(e,{timestamp:r+s});this._encoder.add(c,!0).catch(e=>{a=!0,this._abortController?.abort(),this._promiseWithResolvers.reject(e),this._workerTrackId!==null&&Xp({type:`stopTrack`,trackId:this._workerTrackId})})};if(typeof MediaStreamTrackProcessor<`u`){let e=new MediaStreamTrackProcessor({track:this._track}),t=new WritableStream({write:l});e.readable.pipeTo(t,{signal:this._abortController.signal}).catch(e=>{e instanceof DOMException&&e.name===`AbortError`||this._promiseWithResolvers.reject(e)})}else if(await Yp())this._workerTrackId=Gp++,Xp({type:`videoTrack`,trackId:this._workerTrackId,track:this._track}),this._workerListener=e=>{let t=e.data;t.type===`videoFrame`&&t.trackId===this._workerTrackId?l(t.videoFrame):t.type===`error`&&t.trackId===this._workerTrackId&&this._promiseWithResolvers.reject(t.error)},Kp.addEventListener(`message`,this._workerListener);else if(e!==null){let e=document.createElement(`video`);e.style.position=`fixed`,e.style.left=`-10000px`,e.style.top=`-10000px`,e.style.width=`1px`,e.style.height=`1px`,e.style.opacity=`0`,e.style.pointerEvents=`none`,e.muted=!0,e.srcObject=new MediaStream([this._track]),document.body.appendChild(e),this._videoElement=e,e.addEventListener(`loadeddata`,()=>{if(a||!this._videoElement)return;let t=new VideoFrame(e,{timestamp:1e3*performance.now()});l(t),t.close()},{once:!0}),e.play().catch(e=>{a=!0,this._promiseWithResolvers.reject(e)})}else throw Error(`When no explicit frame rate is set, MediaStreamTrackProcessor is required; but it's not available in this environment.`)}pause(){this._paused=!0}resume(){this._paused=!1}async _flushAndClose(e){this._abortController&&=(this._abortController.abort(),null),this._timerHandle&&pt(this._timerHandle),this._lastVideoFrame?.close(),this._videoElement&&=(this._videoElement.srcObject=null,this._videoElement.remove(),null),this._workerTrackId!==null&&(r(this._workerListener),Xp({type:`stopTrack`,trackId:this._workerTrackId}),await new Promise(e=>{let t=n=>{let i=n.data;i.type===`trackStopped`&&i.trackId===this._workerTrackId&&(r(this._workerListener),Kp.removeEventListener(`message`,this._workerListener),Kp.removeEventListener(`message`,t),e())};Kp.addEventListener(`message`,t)})),await this._encoder.flushAndClose(e)}},Rp=class extends Dp{constructor(e){if(super(),this._connectedTrack=null,!F.includes(e))throw TypeError(`Invalid audio codec '${e}'. Must be one of: ${F.join(`, `)}.`);this._codec=e}},zp=class extends Rp{constructor(e){super(e)}add(e,t){if(!(e instanceof I))throw TypeError(`packet must be an EncodedPacket.`);if(e.isMetadataOnly)throw TypeError(`Metadata-only packets cannot be added.`);if(t!==void 0&&(!t||typeof t!=`object`))throw TypeError(`meta, when provided, must be an object.`);return this._ensureValidAdd(),this._connectedTrack.output._muxer.addEncodedAudioPacket(this._connectedTrack,e,t)}},Bp=class{setError(e){this.errorSet||=(this.error=e,!0)}constructor(e,t){this.source=e,this.encodingConfig=t,this.ensureEncoderPromise=null,this.encoderInitialized=!1,this.encoder=null,this.muxer=null,this.lastNumberOfChannels=null,this.lastSampleRate=null,this.isPcmEncoder=!1,this.outputSampleSize=null,this.writeOutputValue=null,this.customEncoder=null,this.customEncoderCallSerializer=new Fe,this.customEncoderQueueSize=0,this.lastEndSampleIndex=null,this.resampler=null,this.error=null,this.errorSet=!1,this.lastMuxerPromise=Promise.resolve(),this.closed=!1}async add(e,t){try{if(this.checkForEncoderError(),this.source._ensureValidAdd(),this.lastNumberOfChannels!==null&&this.lastSampleRate!==null){if(e.numberOfChannels!==this.lastNumberOfChannels||e.sampleRate!==this.lastSampleRate)throw Error(`Audio parameters must remain constant. Expected ${this.lastNumberOfChannels} channels at ${this.lastSampleRate} Hz, got ${e.numberOfChannels} channels at ${e.sampleRate} Hz.`)}else this.lastNumberOfChannels=e.numberOfChannels,this.lastSampleRate=e.sampleRate;let n=this.encodingConfig;n.transform?.numberOfChannels!==void 0||n.transform?.sampleRate!==void 0?(this.resampler||=new wp({targetNumberOfChannels:n.transform.numberOfChannels??e.numberOfChannels,targetSampleRate:n.transform.sampleRate??e.sampleRate,onSample:async e=>{await this.processAndEncode(e,!0)}}),await this.resampler.add(e)):await this.processAndEncode(e,t)}finally{t&&e.close()}}async processAndEncode(e,t){let n=this.encodingConfig;if(n.transform?.sampleFormat!==void 0&&Fc(e.format)!==n.transform.sampleFormat){let r=Lc(e,n.transform.sampleFormat);t&&e.close(),e=r,t=!0}if(n.transform?.process)try{let t=n.transform.process(e);if(O(t)&&(t=await t),t===null)return;Array.isArray(t)||(t=[t]);try{for(let e of t)if(!(e instanceof kc))throw TypeError(`The audio process function must return an AudioSample, null, or an array of AudioSamples.`);for(let e of t)await this.encodeSample(e,!0)}finally{for(let e of t)e instanceof kc&&e.close()}}finally{t&&e.close()}else await this.encodeSample(e,t)}async encodeSample(e,t){try{if(this.encoderInitialized||(this.ensureEncoderPromise||this.ensureEncoder(e),this.encoderInitialized||await this.ensureEncoderPromise),r(this.encoderInitialized),this.closed)return;{let t=Math.round(e.timestamp*e.sampleRate),n=Math.round((e.timestamp+e.duration)*e.sampleRate);if(this.lastEndSampleIndex===null)this.lastEndSampleIndex=n;else{let n=t-this.lastEndSampleIndex;if(n>=64){let t=new kc({data:new Float32Array(n*e.numberOfChannels),format:`f32-planar`,sampleRate:e.sampleRate,numberOfChannels:e.numberOfChannels,numberOfFrames:n,timestamp:this.lastEndSampleIndex/e.sampleRate});await this.encodeSample(t,!0)}this.lastEndSampleIndex+=e.numberOfFrames}}if(this.encodingConfig.onEncodedSample?.(e),this.customEncoder){this.customEncoderQueueSize++;let t=e.clone(),n=this.customEncoderCallSerializer.call(()=>this.customEncoder.encode(t)).catch(e=>this.setError(e)).finally(()=>{this.customEncoderQueueSize--,t.close()});this.customEncoderQueueSize>=4&&await n,await this.lastMuxerPromise}else if(this.isPcmEncoder)await this.doPcmEncoding(e,t);else{r(this.encoder);let n=e.toAudioData();this.encoder.encode(n),n.close(),t&&e.close(),this.encoder.encodeQueueSize>=4&&await new Promise(e=>this.encoder.addEventListener(`dequeue`,e,{once:!0})),await this.lastMuxerPromise}}finally{t&&e.close()}}async doPcmEncoding(e,t){r(this.outputSampleSize),r(this.writeOutputValue);let{numberOfChannels:n,numberOfFrames:i,sampleRate:a,timestamp:o}=e,s=2048,c=[];for(let t=0;t<i;t+=s){let r=Math.min(s,e.numberOfFrames-t),i=r*n*this.outputSampleSize,a=new ArrayBuffer(i),o=new DataView(a);c.push({frameCount:r,view:o})}let l=e.allocationSize({planeIndex:0,format:`f32-planar`}),u=new Float32Array(l/Float32Array.BYTES_PER_ELEMENT);for(let t=0;t<n;t++){e.copyTo(u,{planeIndex:t,format:`f32-planar`});for(let e=0;e<c.length;e++){let{frameCount:r,view:i}=c[e];for(let a=0;a<r;a++)this.writeOutputValue(i,(a*n+t)*this.outputSampleSize,u[e*s+a])}}t&&e.close();let d={decoderConfig:{codec:this.encodingConfig.codec,numberOfChannels:n,sampleRate:a}};for(let e=0;e<c.length;e++){let{frameCount:t,view:n}=c[e],r=n.buffer,i=e*s,l=new I(new Uint8Array(r),`key`,o+i/a,t/a);this.encodingConfig.onEncodedPacket?.(l,d),await this.muxer.addEncodedAudioPacket(this.source._connectedTrack,l,d)}}ensureEncoder(e){this.ensureEncoderPromise=(async()=>{let{numberOfChannels:t,sampleRate:n}=e,i=al(this.encodingConfig.quality,this.encodingConfig.bitrate),o=Gc({numberOfChannels:t,sampleRate:n,...this.encodingConfig,quality:i});this.encodingConfig.onEncoderConfig?.(o);let s=xl.find(e=>e.supports(this.encodingConfig.codec,o));if(s)this.customEncoder=new s,this.customEncoder.codec=this.encodingConfig.codec,this.customEncoder.config=o,this.customEncoder.onPacket=(e,t)=>{if(!(e instanceof I))throw TypeError(`The first argument passed to onPacket must be an EncodedPacket.`);if(t!==void 0&&(!t||typeof t!=`object`))throw TypeError(`The second argument passed to onPacket must be an object or undefined.`);this.encodingConfig.onEncodedPacket?.(e,t),this.lastMuxerPromise=this.muxer.addEncodedAudioPacket(this.source._connectedTrack,e,t).catch(e=>{this.setError(e)})},this.customEncoder.onError=e=>{this.setError(e)},await this.customEncoder.init();else if(P.includes(this.encodingConfig.codec))this.initPcmEncoder();else{if(typeof AudioEncoder>`u`)throw Error(He(`AudioEncoder`));let e;try{e=(await AudioEncoder.isConfigSupported(o)).supported??!1}catch{e=!1}if(!e)throw Error(`This specific encoder configuration (${o.codec}, ${o.bitrate} bps, ${o.numberOfChannels} channels, ${o.sampleRate} Hz) is not supported in this environment. Consider using another codec or changing your audio parameters.`);let t=Error(`Encoding error`).stack;this.encoder=new AudioEncoder({output:(e,t)=>{if(this.encodingConfig.codec===`aac`&&t?.decoderConfig){let e=!1;if(e=!t.decoderConfig.description||t.decoderConfig.description.byteLength<2||kt(u(t.decoderConfig.description)).objectType===0,e){let e=Number(a(o.codec.split(`.`)));t.decoderConfig.description=Mt({objectType:e,outputNumberOfChannels:t.decoderConfig.numberOfChannels,outputSampleRate:t.decoderConfig.sampleRate})}}let n=I.fromEncodedChunk(e);n=n.clone({timestamp:Ce(n.timestamp,o.sampleRate),duration:e.duration==null?void 0:Ce(n.duration,o.sampleRate)}),this.encodingConfig.onEncodedPacket?.(n,t),this.lastMuxerPromise=this.muxer.addEncodedAudioPacket(this.source._connectedTrack,n,t).catch(e=>{this.setError(e)})},error:e=>{e.stack=t,this.setError(e)}}),this.encoder.configure(o)}r(this.source._connectedTrack),this.muxer=this.source._connectedTrack.output._muxer,this.encoderInitialized=!0})()}initPcmEncoder(){this.isPcmEncoder=!0;let e=this.encodingConfig.codec,{dataType:t,sampleSize:n,littleEndian:i}=Ar(e);switch(this.outputSampleSize=n,n){case 1:t===`unsigned`?this.writeOutputValue=(e,t,n)=>e.setUint8(t,D((n+1)*127.5,0,255)):t===`signed`?this.writeOutputValue=(e,t,n)=>{e.setInt8(t,D(Math.round(n*128),-128,127))}:t===`ulaw`?this.writeOutputValue=(e,t,n)=>{let r=D(Math.floor(n*32767),-32768,32767);e.setUint8(t,wl(r))}:t===`alaw`?this.writeOutputValue=(e,t,n)=>{let r=D(Math.floor(n*32767),-32768,32767);e.setUint8(t,El(r))}:r(!1);break;case 2:t===`unsigned`?this.writeOutputValue=(e,t,n)=>e.setUint16(t,D((n+1)*32767.5,0,65535),i):t===`signed`?this.writeOutputValue=(e,t,n)=>e.setInt16(t,D(Math.round(n*32767),-32768,32767),i):r(!1);break;case 3:t===`unsigned`?this.writeOutputValue=(e,t,n)=>ge(e,t,D((n+1)*8388607.5,0,16777215),i):t===`signed`?this.writeOutputValue=(e,t,n)=>_e(e,t,D(Math.round(n*8388607),-8388608,8388607),i):r(!1);break;case 4:t===`unsigned`?this.writeOutputValue=(e,t,n)=>e.setUint32(t,D((n+1)*2147483647.5,0,4294967295),i):t===`signed`?this.writeOutputValue=(e,t,n)=>e.setInt32(t,D(Math.round(n*2147483647),-2147483648,2147483647),i):t===`float`?this.writeOutputValue=(e,t,n)=>e.setFloat32(t,n,i):r(!1);break;case 8:t===`float`?this.writeOutputValue=(e,t,n)=>e.setFloat64(t,n,i):r(!1);break;default:E(n),r(!1)}}async flushAndClose(e){try{e||(this.checkForEncoderError(),this.resampler&&await this.resampler.finalize()),this.closed=!0,e||(this.customEncoder?this.customEncoderCallSerializer.call(()=>this.customEncoder.flush()):this.encoder&&await this.encoder.flush())}finally{this.closed=!0,this.resampler=null,this.customEncoder?await this.customEncoderCallSerializer.call(()=>this.customEncoder.close()).catch(e=>this.setError(e)):this.encoder&&this.encoder.state!==`closed`&&this.encoder.close()}e||this.checkForEncoderError()}getQueueSize(){return this.customEncoder?this.customEncoderQueueSize:this.isPcmEncoder?0:this.encoder?.encodeQueueSize??0}checkForEncoderError(){if(this.errorSet)throw this.error}},Vp=class extends Rp{constructor(e){Uc(e),super(e.codec),this._encoder=new Bp(this,e)}add(e){if(!(e instanceof kc))throw TypeError(`audioSample must be an AudioSample.`);return this._encoder.add(e,!1)}_flushAndClose(e){return this._encoder.flushAndClose(e)}},Hp=class extends Rp{constructor(e){Uc(e),super(e.codec),this._accumulatedTime=0,this._encoder=new Bp(this,e)}async add(e){if(!(e instanceof AudioBuffer))throw TypeError(`audioBuffer must be an AudioBuffer.`);let t=kc._fromAudioBuffer(e,this._accumulatedTime);this._accumulatedTime+=e.duration;for(let e of t)await this._encoder.add(e,!0)}_flushAndClose(e){return this._encoder.flushAndClose(e)}},Up=class extends Rp{get errorPromise(){return this._errorPromiseAccessed=!0,this._promiseWithResolvers.promise}get paused(){return this._paused}constructor(e,t,n={}){if(!(e instanceof MediaStreamTrack)||e.kind!==`audio`)throw TypeError(`track must be an audio MediaStreamTrack.`);if(Uc(t),typeof n!=`object`||!n)throw TypeError(`options must be an object.`);if(n.timestampBase!==void 0&&n.timestampBase!==`synced-zero`&&n.timestampBase!==`zero`&&n.timestampBase!==`unix`)throw TypeError(`options.timestampBase, when provided, must be one of 'synced-zero', 'zero', or 'unix'.`);super(t.codec),this._abortController=null,this._audioContext=null,this._scriptProcessorNode=null,this._promiseWithResolvers=T(),this._errorPromiseAccessed=!1,this._paused=!1,this._options=n,this._encoder=new Bp(this,t),this._track=e}async _start(){this._errorPromiseAccessed||k._warn("Make sure not to ignore the `errorPromise` field on MediaStreamAudioTrackSource, so that any internal errors get bubbled up properly."),this._abortController=new AbortController;let e=null,t=!1,n=null,r=0,i=i=>{if(t){i.close();return}let a=i.timestamp;if(this._paused){if(e!==null){if(n!==null&&this._options.timestampBase!==`unix`){let e=a-n;r-=e}n=a}i.close();return}if(e===null){e=i.timestamp;let t,n=this._options.timestampBase??`synced-zero`;if(n===`unix`)t=Date.now()/1e3;else if(n===`zero`)t=0;else{let e=this._connectedTrack.output;e._firstMediaStreamTimestamp===null?(e._firstMediaStreamTimestamp=performance.now()/1e3,t=0):t=performance.now()/1e3-e._firstMediaStreamTimestamp}r=t-e}if(n=a,this._encoder.getQueueSize()>=8){i.close();return}i.setTimestamp(a+r),this._encoder.add(i,!0).catch(e=>{t=!0,this._abortController?.abort(),this._promiseWithResolvers.reject(e),this._audioContext?.suspend()})};if(typeof MediaStreamTrackProcessor<`u`){let e=new MediaStreamTrackProcessor({track:this._track}),t=new WritableStream({write:e=>i(new kc(e))});e.readable.pipeTo(t,{signal:this._abortController.signal}).catch(e=>{e instanceof DOMException&&e.name===`AbortError`||this._promiseWithResolvers.reject(e)})}else{let e=window.AudioContext||window.webkitAudioContext;this._audioContext=new e({sampleRate:this._track.getSettings().sampleRate});let t=this._audioContext.createMediaStreamSource(new MediaStream([this._track]));this._scriptProcessorNode=this._audioContext.createScriptProcessor(4096),this._audioContext.state===`suspended`&&await this._audioContext.resume(),t.connect(this._scriptProcessorNode),this._scriptProcessorNode.connect(this._audioContext.destination);let n=0;this._scriptProcessorNode.onaudioprocess=e=>{let t=kc._fromAudioBuffer(e.inputBuffer,n);n+=e.inputBuffer.duration;for(let e of t)i(e)}}}pause(){this._paused=!0}resume(){this._paused=!1}async _flushAndClose(e){this._abortController&&=(this._abortController.abort(),null),this._audioContext&&(r(this._scriptProcessorNode),this._scriptProcessorNode.disconnect(),await this._audioContext.suspend()),await this._encoder.flushAndClose(e)}},Wp=()=>{let e=(e,t)=>{t?self.postMessage(e,{transfer:t}):self.postMessage(e)};e({type:`support`,supported:typeof MediaStreamTrackProcessor<`u`});let t=new Map,n=new Map;self.addEventListener(`message`,r=>{let i=r.data;switch(i.type){case`videoTrack`:{n.set(i.trackId,i.track);let r=new MediaStreamTrackProcessor({track:i.track}),a=new WritableStream({write:t=>{if(!n.has(i.trackId)){t.close();return}e({type:`videoFrame`,trackId:i.trackId,videoFrame:t},[t])}}),o=new AbortController;t.set(i.trackId,o),r.readable.pipeTo(a,{signal:o.signal}).catch(t=>{t instanceof DOMException&&t.name===`AbortError`||e({type:`error`,trackId:i.trackId,error:t})})}break;case`stopTrack`:{let r=t.get(i.trackId);r&&(r.abort(),t.delete(i.trackId)),n.get(i.trackId)?.stop(),n.delete(i.trackId),e({type:`trackStopped`,trackId:i.trackId})}break;default:E(i)}})},Gp=0,Kp=null,qp=()=>{let e=new Blob([`(${Wp.toString()})()`],{type:`application/javascript`}),t=URL.createObjectURL(e);Kp=new Worker(t)},Jp=null,Yp=async()=>Jp===null?(Kp||qp(),new Promise(e=>{r(Kp);let t=n=>{let r=n.data;r.type===`support`&&(Jp=r.supported,Kp.removeEventListener(`message`,t),e(r.supported))};Kp.addEventListener(`message`,t)})):Jp,Xp=(e,t)=>{r(Kp),t?Kp.postMessage(e,t):Kp.postMessage(e)},Zp=class extends Dp{constructor(e){if(super(),this._connectedTrack=null,!ur.includes(e))throw TypeError(`Invalid subtitle codec '${e}'. Must be one of: ${ur.join(`, `)}.`);this._codec=e}},Qp=class extends Zp{constructor(e){super(e),this._error=null,this._errorSet=!1,this._lastMuxerPromise=Promise.resolve(),this._parser=new Uu({codec:e,output:(e,t)=>{this._lastMuxerPromise=this._connectedTrack.output._muxer.addSubtitleCue(this._connectedTrack,e,t).catch(e=>{this._setError(e)})}})}add(e){if(typeof e!=`string`)throw TypeError(`text must be a string.`);return this._checkForError(),this._ensureValidAdd(),this._parser.parse(e),this._lastMuxerPromise}_setError(e){this._errorSet||=(this._error=e,!0)}_checkForError(){if(this._errorSet)throw this._error}async _flushAndClose(e){e||this._checkForError()}},$p=class extends Pu{constructor(e,t){if(!(e._target instanceof qf))throw TypeError("HLS outputs require `OutputOptions.target` to be a PathedTarget.");super(e),this.trackDatas=[],this.isRelativeToUnixEpoch=!1,this.numWrittenMasterPlaylists=0,this.playlists=[],this.playlistDeclarations=[],this.format=t,this.targetSegmentDuration=t._options.targetDuration??2,this.singleFilePerPlaylist=t._options.singleFilePerPlaylist??!1,this.isLive=t._options.live??!1,this.maxLiveSegmentCount=t._options.maxLiveSegmentCount??1/0,this.globalTargetDuration=this.targetSegmentDuration,this.getPlaylistPath=t._options.getPlaylistPath??(({n:e})=>`playlist-${e}.m3u8`),this.getSegmentPath=t._options.getSegmentPath??(e=>e.isSingleFile?`segments-${e.playlist.n}${e.format.fileExtension}`:`segment-${e.playlist.n}-${e.n}${e.format.fileExtension}`),this.getInitPath=t._options.getInitPath??(e=>`init-${e.n}${e.segmentFormat.fileExtension}`)}async start(){let e=await this.mutex.acquire(),t=this.output.tracks.some(e=>e.metadata.isRelativeToUnixEpoch),n=this.output.tracks.some(e=>!e.metadata.isRelativeToUnixEpoch);if(t&&n)throw Error("All tracks must agree on `relativeToUnixEpoch`: some tracks are relative to the Unix epoch and some are not.");this.isRelativeToUnixEpoch=t;let i=new Map,a=[],o=!1,s=!1,c=!1;for(let e of this.output.tracks){e.type===`video`&&(o=!0);let t=new Map;for(let n of this.output.tracks){if(e===n||!e.canBePairedWith(n))continue;if(e.type===n.type){s||=(k._warn(`Illegal pairing of two ${e.type} tracks detected, which is not possible in HLS; treating them as unpaired.`),!0);continue}if(e.isVideoTrack()&&e.metadata.hasOnlyKeyPackets||n.isVideoTrack()&&n.metadata.hasOnlyKeyPackets){c||=(k._warn(`A key-packets-only video track is pairable with another track, which is not possible in HLS; treating them as unpaired.`),!0);continue}let r=t.get(n.source._codec);r||t.set(n.source._codec,r=[]),r.push(n)}for(let[,n]of t){let t=n.map(e=>e.id).join(`-`);a.find(e=>e.key===t)||a.push({name:n[0].type+`-`+(a.length+1),key:t,tracks:n,needsEmit:!1,firstNoUri:!1});let r=i.get(e);r||i.set(e,r=[]),r.push(t)}}let l=o?`video`:`audio`,u=[],d=[],f=[];for(let e of this.output.tracks){let t=i.get(e);if(t){if(r(t.length>0),e.type!==l)continue;for(let n of t){let o=a.find(e=>e.key===n);if(r(o),t.length===1&&o.tracks.length===1){let t=i.get(o.tracks[0]);if(r(t!==void 0),t.length===1){let n=a.find(e=>e.key===t[0]);if(n.tracks.length===1){r(n.tracks[0]===e),u.push({tracks:[e,o.tracks[0]],linkedGroup:null});continue}}}u.push({tracks:[e],linkedGroup:o}),o.needsEmit=!0}}else e.type===`video`?d.push(e):e.type===`audio`&&f.push(e)}let p=({metadata:e})=>{let t=``;return t+=`${e.languageCode??`und`}-`,t+=`${e.name??``}-`,t+=`${e.disposition?.default??!0}-`,t+=`${e.disposition?.primary??!1}-`,t+=`${e.disposition?.forced??!1}-`,t};if(d.length>0){if(new Set(d.map(p)).size>1){let e={key:d.map(e=>e.id).join(`-`),name:`video-`+(a.length+1),tracks:d,needsEmit:!0,firstNoUri:!0};a.push(e),u.push({tracks:[d[0]],linkedGroup:e})}else for(let e of d)u.push({tracks:[e],linkedGroup:null})}if(f.length>0){if(new Set(f.map(p)).size>1){let e={key:f.map(e=>e.id).join(`-`),name:`audio-`+(a.length+1),tracks:f,needsEmit:!0,firstNoUri:!0};a.push(e),u.push({tracks:[f[0]],linkedGroup:e})}else for(let e of f)u.push({tracks:[e],linkedGroup:null})}let m=e=>{let t=[],n=0,i=0,a=!1,o=null,s=-1/0;for(let r of e)r.isVideoTrack()?(n++,a||=(r.metadata.rotation??0)!==0):r.isAudioTrack()&&i++,t.push(r.source._codec);for(let e of ht(this.format._options.segmentFormat)){let r=e.getSupportedCodecs(),c=e.getSupportedTrackCounts();if(t.some(e=>!r.includes(e))||n<c.video.min||n>c.video.max||i<c.audio.min||i>c.audio.max)continue;let l=0;a&&e.supportsVideoRotationMetadata&&l++,l>s&&(o=e,s=l)}return r(o),o},h=async e=>{if(e.some(e=>this.playlists.some(t=>t.tracks.includes(e))))throw Error(`Internal error: track is already registered in a playlist.`);let t=m(e),n=this.playlists.length+1,r=await this.getPlaylistPath({n,tracks:e,segmentFormat:t});em(r);let i={id:this.playlists.length+1,path:r,tracks:e,segmentFormat:t,currentSegmentStartTimestamp:null,currentSegmentStartTimestampIsFixed:!1,nextSegmentId:1,initSegment:null,writtenSegments:[],peakBitrate:null,averageBitrate:null,mediaSequence:0,done:!1,singleFile:null,mutex:new ne};return this.playlists.push(i),i};for(let e of a)if(e.needsEmit)for(let t=0;t<e.tracks.length;t++){let n=e.tracks[t],r=this.playlists.find(e=>e.tracks[0].id===n.id);r??=await h([n]),this.playlistDeclarations.push({playlist:r,groupId:e.name,noUri:e.firstNoUri&&t===0,references:[]})}for(let e of u){let t=this.playlists.find(t=>t.tracks[0].id===e.tracks[0].id);t??=await h(e.tracks),this.playlistDeclarations.push({playlist:t,groupId:null,noUri:!1,references:e.linkedGroup?this.playlistDeclarations.filter(t=>t.groupId===e.linkedGroup.name):[]})}for(let e of this.output.tracks)e.isVideoTrack()&&e.metadata.decoderConfig?this.getVideoTrackData(e,e.metadata.primingPacket??null,{decoderConfig:e.metadata.decoderConfig}):e.isAudioTrack()&&e.metadata.decoderConfig&&this.getAudioTrackData(e,e.metadata.primingPacket??null,{decoderConfig:e.metadata.decoderConfig});e()}async getMimeType(){return vo}allTracksAreKnown(e){for(let t of e.tracks)if(!t.source._closed&&!this.trackDatas.some(e=>e.track===t))return!1;return!0}async onTrackClose(e){let t=this.trackDatas.find(t=>t.track===e);t&&(t.closed=!0);let n=this.playlists.find(t=>t.tracks.includes(e));r(n);let i=await n.mutex.acquire();try{await this.advancePlaylist(n)}finally{i()}}getVideoTrackData(e,t,n){let i=this.trackDatas.find(t=>t.track===e);if(i)return i;zr(n,e.source._codec),r(n),r(n?.decoderConfig);let a=this.playlists.filter(t=>t.tracks.includes(e));return r(a.length===1),i={track:e,packets:[],playlist:a[0],closed:!1,info:{type:`video`,decoderConfig:n.decoderConfig,primingPacket:t}},this.trackDatas.push(i),i}getAudioTrackData(e,t,n){let i=this.trackDatas.find(t=>t.track===e);if(i)return i;Vr(n,e.source._codec),r(n),r(n?.decoderConfig);let a=this.playlists.filter(t=>t.tracks.includes(e));return r(a.length===1),i={track:e,packets:[],playlist:a[0],closed:!1,info:{type:`audio`,decoderConfig:n.decoderConfig,primingPacket:t}},this.trackDatas.push(i),i}async addEncodedVideoPacket(e,t,n){let r=this.getVideoTrackData(e,t,n),i=r.playlist,a=await i.mutex.acquire();try{this.validateTimestamp(e,t.timestamp,t.type===`key`),r.packets.push(t),i.currentSegmentStartTimestamp===null?i.currentSegmentStartTimestamp=t.timestamp:i.currentSegmentStartTimestampIsFixed||(i.currentSegmentStartTimestamp=Math.min(i.currentSegmentStartTimestamp,t.timestamp)),await this.advancePlaylist(i)}finally{a()}}async addEncodedAudioPacket(e,t,n){let r=this.getAudioTrackData(e,t,n),i=r.playlist,a=await i.mutex.acquire();try{this.validateTimestamp(e,t.timestamp,t.type===`key`),r.packets.push(t),i.currentSegmentStartTimestamp===null?i.currentSegmentStartTimestamp=t.timestamp:i.currentSegmentStartTimestampIsFixed||(i.currentSegmentStartTimestamp=Math.min(i.currentSegmentStartTimestamp,t.timestamp)),await this.advancePlaylist(i)}finally{a()}}async addSubtitleCue(e,t,n){throw Error(`Unreachable.`)}async advancePlaylist(e){if(r(!e.done),!this.allTracksAreKnown(e))return;let t=this.trackDatas.filter(t=>e.tracks.includes(t.track));if(e.currentSegmentStartTimestamp===null){t.every(e=>e.closed)&&await this.onPlaylistDone(e);return}let n=t.find(e=>e.info.type===`video`),i=t.find(e=>e.info.type===`audio`);for(;;){let a=e.currentSegmentStartTimestamp+this.targetSegmentDuration,o=0,s=0;if(n&&(!n.closed||n.packets.length>0)){let e=n.packets.every(e=>e.timestamp<a),t=null,c=null;if(e){if(!n.closed)return}else for(let e=0;e<n.packets.length;e++){let r=n.packets[e];if(t!==null&&r.timestamp>a)break;e>0&&r.type===`key`&&(t=r,c=e)}if(c!==null){if(o=c,i){let e=i.packets.findIndex(e=>e.timestamp>=t.timestamp);if(e!==-1)s=e;else if(i.closed)s=i.packets.length;else return}}else{if(!n.closed)return;o=n.packets.length;let e=nt(n.packets,e=>e.timestamp),t=n.packets[e];if(r(t),i){if(t.timestamp<a){let e=i.packets.findIndex(e=>e.timestamp>=a);if(e!==-1)s=e;else if(i.closed)s=i.packets.length;else return}else{let e=i.packets.findIndex(e=>e.timestamp>t.timestamp);if(e!==-1)s=e;else if(i.closed)s=i.packets.length;else return}}}}else if(i&&(!i.closed||i.packets.length>0)){if(i.packets.every(e=>e.timestamp<a)){if(i.closed)s=i.packets.length;else return}else{let e=de(i.packets,e=>e.timestamp<=a);s=Math.max(e,1)}}if(o===0&&s===0){t.every(e=>e.closed)&&await this.onPlaylistDone(e);return}let c=null,l,u;r(this.output._target instanceof qf);let d=this.output._target;if(this.singleFilePerPlaylist){if(e.singleFile===null){let t={n:e.nextSegmentId,format:e.segmentFormat,isSingleFile:!0,playlist:rm(e)};l=await this.getSegmentPath(t),tm(l),u=$e($e(d.rootPath,e.path),l);let r=await this.output._getTarget({path:u,isRoot:!1,mimeType:e.segmentFormat.mimeType}),a=null;if(e.segmentFormat._isFragmentedIsobmff()){a={output:new Tm({format:e.segmentFormat,target:r}),videoSource:null,audioSource:null,firstMoofPosition:null,currentFileSize:0},r.on(`write`,({end:e})=>{a.currentFileSize=Math.max(a.currentFileSize,e)});let t=a.output._muxer;t.minimumFragmentDuration=1/0;let o=t.formatOptions.onMoof;t.formatOptions.onMoof=(e,n,r)=>{a.firstMoofPosition=n,o?.(e,n,r),t.formatOptions.onMoof=o},n&&(a.videoSource=new Ap(n.track.source._codec),a.output.addVideoTrack(a.videoSource,{...n.track.metadata,decoderConfig:n.info.decoderConfig,primingPacket:n.info.primingPacket??void 0})),i&&(a.audioSource=new zp(i.track.source._codec),a.output.addAudioTrack(a.audioSource,{...i.track.metadata,decoderConfig:i.info.decoderConfig,primingPacket:i.info.primingPacket??void 0})),await a.output.start()}else r._start();e.singleFile={target:r,path:l,nextOffset:0,info:t,fragmentedIsobmffOutput:a}}else l=e.singleFile.path,u=$e($e(d.rootPath,e.path),l)}else c={n:e.nextSegmentId,format:e.segmentFormat,isSingleFile:!1,playlist:rm(e)},l=await this.getSegmentPath(c),tm(l),u=$e($e(d.rootPath,e.path),l),e.nextSegmentId++;let f=0,p=null,m=-1/0,h=null,g=null,_=null;try{if(e.singleFile?.fragmentedIsobmffOutput?(h=e.singleFile.fragmentedIsobmffOutput.output,g=e.singleFile.fragmentedIsobmffOutput.videoSource,_=e.singleFile.fragmentedIsobmffOutput.audioSource):(h=new Tm({format:e.segmentFormat,target:new qf(u,async t=>{let n={...t,isRoot:!1};if(t.isRoot){if(e.singleFile){let t=e.singleFile.target.slice(e.singleFile.nextOffset);return t.on(`write`,({end:e})=>f=Math.max(f,e)),t}{let e=await this.output._getTarget(n);return p=e,e.on(`write`,({end:e})=>f=Math.max(f,e)),e}}return this.output._getTarget(n)}),initTarget:async()=>{if(e.initSegment)return new Gf;if(e.singleFile){e.initSegment={path:e.singleFile.path,duration:0,timestamp:0,byteSize:0,byteOffset:0,info:null};let t=e.singleFile.target.slice(e.singleFile.nextOffset);return t.on(`write`,({end:t})=>{e.initSegment.byteSize=Math.max(e.initSegment.byteSize,t)}),t.on(`finalized`,()=>{e.singleFile.nextOffset=e.initSegment.byteSize}),t}{let t=rm(e),n=await this.getInitPath(t);nm(n),e.initSegment={path:n,duration:0,timestamp:0,byteSize:0,byteOffset:null,info:null};let r=$e($e(d.rootPath,e.path),n),i=await this.output._getTarget({path:r,isRoot:!1,mimeType:e.segmentFormat.mimeType});return i.on(`write`,({end:t})=>{e.initSegment.byteSize=Math.max(e.initSegment.byteSize,t)}),i.on(`finalized`,()=>{this.format._options.onInit?.(i,t)}),i}}}),n&&(g=new Ap(n.track.source._codec),h.addVideoTrack(g,{...n.track.metadata,decoderConfig:n.info.decoderConfig,primingPacket:n.info.primingPacket??void 0})),i&&(_=new zp(i.track.source._codec),h.addAudioTrack(_,{...i.track.metadata,decoderConfig:i.info.decoderConfig,primingPacket:i.info.primingPacket??void 0})),await h.start()),n){r(g);let e={decoderConfig:n.info.decoderConfig};for(let t=0;t<o;t++){let r=n.packets[t];await g.add(r,e),m=Math.max(m,r.timestamp+r.duration)}}if(i){r(_);let e={decoderConfig:i.info.decoderConfig};for(let t=0;t<s;t++){let n=i.packets[t];await _.add(n,e),m=Math.max(m,n.timestamp+n.duration)}}e.singleFile?.fragmentedIsobmffOutput?(await e.singleFile.fragmentedIsobmffOutput.output._muxer.forceFragmentFinalization(),e.singleFile.fragmentedIsobmffOutput.firstMoofPosition!==null&&!e.initSegment&&(e.initSegment={path:e.singleFile.path,duration:0,timestamp:0,byteSize:e.singleFile.fragmentedIsobmffOutput.firstMoofPosition,byteOffset:0,info:null},e.singleFile.nextOffset=e.singleFile.fragmentedIsobmffOutput.firstMoofPosition),f=e.singleFile.fragmentedIsobmffOutput.currentFileSize-e.singleFile.nextOffset):await h.finalize()}catch(e){throw await h?.cancel(),e}c&&(r(p),this.format._options.onSegment?.(p,c)),o>0&&(r(n),n.packets.splice(0,o)),s>0&&(r(i),i.packets.splice(0,s));let v=1/0;n&&n.packets.length>0&&(v=n.packets[0].timestamp),i&&i.packets.length>0&&(v=Math.min(v,i.packets[0].timestamp));let y=v<1/0?v:m;r(Number.isFinite(y));let b=y-e.currentSegmentStartTimestamp;if(r(b>=0),e.writtenSegments.push({path:l,duration:b,timestamp:e.currentSegmentStartTimestamp,byteSize:f,byteOffset:e.singleFile?e.singleFile.nextOffset:null,info:c??null}),this.globalTargetDuration=Math.max(this.globalTargetDuration,b),e.currentSegmentStartTimestamp=y,e.currentSegmentStartTimestampIsFixed=!0,e.singleFile&&(e.singleFile.nextOffset+=f),this.isLive){for(;e.writtenSegments.length>this.maxLiveSegmentCount;){let t=e.writtenSegments.shift();e.mediaSequence++,this.singleFilePerPlaylist||(r(t.info),this.format._options.onSegmentPopped?.(t.path,t.info))}await this.writePlaylist(e),await this.tryWriteMasterPlaylist()}}}async onPlaylistDone(e){r(!e.done),e.done=!0,e.singleFile&&(e.singleFile.fragmentedIsobmffOutput?await e.singleFile.fragmentedIsobmffOutput.output.finalize():(await e.singleFile.target._flush(),await e.singleFile.target._finalize()),this.format._options.onSegment?.(e.singleFile.target,e.singleFile.info)),await this.writePlaylist(e),this.isLive&&e.writtenSegments.length===0&&await this.tryWriteMasterPlaylist()}updatePlaylistBitrates(e){let t=e.writtenSegments,n=0,r=0,i=0;for(let e=0;e<t.length;e++){i+=t[e].duration;let r=0,a=0;for(let i=e;i<t.length&&(r+=t[i].byteSize,a+=t[i].duration,a>=.5*this.globalTargetDuration&&a<=1.5*this.globalTargetDuration&&(n=Math.max(n,8*r/a)),!(a>1.5*this.globalTargetDuration));i++);}if(n===0)for(let e of t){let t=e.duration||1;n=Math.max(n,8*e.byteSize/t)}for(let e of t)r+=8*e.byteSize;e.peakBitrate=n,e.averageBitrate=r/(i||1)}async writePlaylist(e){r(this.output._target instanceof qf);let t=this.output._target;this.updatePlaylistBitrates(e);let n=!1;for(let t of e.writtenSegments)n||=t.byteOffset!==null;let i=e.tracks[0].isVideoTrack()&&e.tracks[0].metadata.hasOnlyKeyPackets,a=3;(i||n)&&(a=4),e.initSegment&&(a=5),e.initSegment&&!i&&(a=6);let o=this.isLive?this.targetSegmentDuration:this.globalTargetDuration,s=$e(t.rootPath,e.path),c=`#EXTM3U
|
|
9
|
+
#EXT-X-VERSION:${a}\n`+(this.isLive?``:`#EXT-X-PLAYLIST-TYPE:VOD
|
|
10
|
+
`)+`#EXT-X-TARGETDURATION:${Math.ceil(o)}\n`+(Number.isFinite(this.maxLiveSegmentCount)?`#EXT-X-MEDIA-SEQUENCE:${e.mediaSequence}\n`:``)+`#EXT-X-INDEPENDENT-SEGMENTS
|
|
11
|
+
`+(i?`#EXT-X-I-FRAMES-ONLY
|
|
12
|
+
`:``)+(e.initSegment?`#EXT-X-MAP:URI="${e.initSegment.path}"`+(e.initSegment.byteOffset===null?``:`,BYTERANGE="${e.initSegment.byteSize}@${e.initSegment.byteOffset}"`)+`
|
|
13
|
+
`:``)+`
|
|
14
|
+
`+e.writtenSegments.map(e=>`#EXTINF:${+e.duration.toFixed(12)},\n`+(this.isRelativeToUnixEpoch?`#EXT-X-PROGRAM-DATE-TIME:${new Date(1e3*e.timestamp).toISOString()}\n`:``)+(e.byteOffset===null?``:`#EXT-X-BYTERANGE:${e.byteSize}@${e.byteOffset}\n`)+`${e.path}\n`).join(``)+(e.done?(e.writtenSegments.length>0?`
|
|
15
|
+
`:``)+`#EXT-X-ENDLIST
|
|
16
|
+
`:``);this.format._options.onPlaylist?.(c,rm(e));let l=new Pf(await this.output._getTarget({path:s,isRoot:!1,mimeType:vo}),!0);l.start(),l.write(p.encode(c)),await l.flush(),await l.finalize()}async writeMasterPlaylist(){r(this.output._target instanceof qf);let e=this.output._target,t=`#EXTM3U
|
|
17
|
+
`,n=!1,i=null,a=0,o=!1;for(let e of this.playlistDeclarations)if(e.groupId===null){let i=e.playlist.tracks[0].isVideoTrack()&&e.playlist.tracks[0].metadata.hasOnlyKeyPackets,a=[];for(let t of e.playlist.tracks){let e=this.trackDatas.find(e=>e.track===t)?.info.decoderConfig.codec??t.source._codec;a.push(e)}let o=0,s=0;if(e.references.length>0){let t=e.references[0].playlist.tracks[0],n=this.trackDatas.find(e=>e.track===t)?.info.decoderConfig.codec??t.source._codec;a.push(n);for(let t of e.references)r(t.playlist.peakBitrate!==null),o=Math.max(o,t.playlist.peakBitrate),s=Math.max(s,t.playlist.averageBitrate??0)}r(e.playlist.peakBitrate!==null);let c=e.playlist.peakBitrate+o,l=(e.playlist.averageBitrate??0)+s;n||=(t+=`
|
|
18
|
+
`,!0),t+=i?`#EXT-X-I-FRAME-STREAM-INF:`:`#EXT-X-STREAM-INF:`,t+=`BANDWIDTH=${Math.ceil(c)}`,l>0&&(t+=`,AVERAGE-BANDWIDTH=${Math.ceil(l)}`),t+=`,CODECS="${a.join(`,`)}"`;let u=e.playlist.tracks.find(e=>e.isVideoTrack());if(u?.isVideoTrack()){let e=this.trackDatas.find(e=>e.track===u)?.info.decoderConfig;if(e){let n=e.displayAspectWidth??e.codedWidth,r=e.displayAspectHeight??e.codedHeight;n!==void 0&&r!==void 0&&(u.metadata.rotation!==void 0&&u.metadata.rotation%180==90&&([n,r]=[r,n]),t+=`,RESOLUTION=${n}x${r}`)}!i&&u.metadata.frameRate!==void 0&&(t+=`,FRAME-RATE=${+u.metadata.frameRate.toFixed(3)}`)}if(!i){let n=new Map;for(let t of e.references){r(t.groupId!==null);let e=t.playlist.tracks[0].type;n.set(e,t.groupId)}for(let[e,r]of n)t+=`,${e.toUpperCase()}="${r}"`}i?(t+=`,URI="${e.playlist.path}"`,t+=`
|
|
19
|
+
`):(t+=`
|
|
20
|
+
`,t+=`${e.playlist.path}\n`)}else{r(e.playlist.tracks.length===1);let n=e.playlist.tracks[0],s=n.type,c=n.metadata.name??null,l=n.metadata.languageCode,u=n.metadata.disposition;(i===null||e.groupId!==i)&&(a=0,t+=`
|
|
21
|
+
`,o=!1),i=e.groupId,a++,t+=`#EXT-X-MEDIA:TYPE=${s.toUpperCase()},GROUP-ID="${e.groupId}"`,c!==null&&/[\n\r"]/.test(c)&&(k._warn(`Dropping track name since it includes a line feed, carriage return, or double quote character, which are not allowed in HLS playlist attributes.`),c=null),c??=`${l??e.groupId}-${a}`,t+=`,NAME="${c}"`,l!==void 0&&(t+=`,LANGUAGE="${l}"`);let d=u?.primary??!1,f=u?.default??!0,p=u?.forced??!1;if(d&&!o&&(t+=`,DEFAULT=YES`,o=!0),(d||f)&&(t+=`,AUTOSELECT=YES`),p&&(t+=`,FORCED=YES`),s===`audio`){let e=this.trackDatas.find(e=>e.track===n)?.info.decoderConfig;e&&(t+=`,CHANNELS="${e.numberOfChannels}"`)}e.noUri||(t+=`,URI="${e.playlist.path}"`),t+=`
|
|
22
|
+
`}this.format._options.onMaster?.(t);let s=await this.mutex.acquire();try{let n;this.numWrittenMasterPlaylists===0?n=await this.output._getRootWriter(!0):(n=new Pf(await this.output._getTarget({path:e.rootPath,isRoot:!0,mimeType:vo}),!0),n.start()),n.write(p.encode(t)),await n.flush(),await n.finalize(),this.numWrittenMasterPlaylists++}finally{s()}}async tryWriteMasterPlaylist(){r(this.isLive);for(let e of this.playlists)if(e.writtenSegments.length===0&&!e.done)return;await this.writeMasterPlaylist()}async finalize(){(await Promise.all(this.playlists.map(e=>e.mutex.acquire()))).forEach(e=>e());for(let e of this.trackDatas)e.closed=!0;await Promise.all(this.playlists.map(e=>e.done?Promise.resolve():this.advancePlaylist(e))),this.isLive||await this.writeMasterPlaylist()}},em=e=>{if(typeof e!=`string`)throw TypeError(`options.getPlaylistPath must return or resolve to a string`);if(/[\n\r"]/.test(e))throw TypeError(`Playlist paths cannot contain line feed, carriage return, or double quote characters.`)},tm=e=>{if(typeof e!=`string`)throw TypeError(`options.getSegmentPath must return or resolve to a string`);if(/[\n\r"]/.test(e))throw TypeError(`Segment paths cannot contain line feed or carriage return characters.`)},nm=e=>{if(typeof e!=`string`)throw TypeError(`options.getInitPath must return or resolve to a string`);if(/[\n\r"]/.test(e))throw TypeError(`Init paths cannot contain line feed, carriage return, or double quote characters.`)},rm=e=>({n:e.id,tracks:e.tracks,segmentFormat:e.segmentFormat}),im=class{getSupportedVideoCodecs(){return this.getSupportedCodecs().filter(e=>N.includes(e))}getSupportedAudioCodecs(){return this.getSupportedCodecs().filter(e=>F.includes(e))}getSupportedSubtitleCodecs(){return this.getSupportedCodecs().filter(e=>ur.includes(e))}_codecUnsupportedHint(e){return``}_isFragmentedIsobmff(){return!1}},am=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.fastStart!==void 0&&![!1,`in-memory`,`reserve`,`fragmented`].includes(e.fastStart))throw TypeError(`options.fastStart, when provided, must be false, 'in-memory', 'reserve', or 'fragmented'.`);if(e.minimumFragmentDuration!==void 0&&(!Qe(e.minimumFragmentDuration)||e.minimumFragmentDuration<0))throw TypeError(`options.minimumFragmentDuration, when provided, must be a non-negative number.`);if(e.onFtyp!==void 0&&typeof e.onFtyp!=`function`)throw TypeError(`options.onFtyp, when provided, must be a function.`);if(e.onMoov!==void 0&&typeof e.onMoov!=`function`)throw TypeError(`options.onMoov, when provided, must be a function.`);if(e.onMdat!==void 0&&typeof e.onMdat!=`function`)throw TypeError(`options.onMdat, when provided, must be a function.`);if(e.onMoof!==void 0&&typeof e.onMoof!=`function`)throw TypeError(`options.onMoof, when provided, must be a function.`);if(e.metadataFormat!==void 0&&![`mdir`,`mdta`,`udta`,`auto`].includes(e.metadataFormat))throw TypeError(`options.metadataFormat, when provided, must be either 'auto', 'mdir', 'mdta', or 'udta'.`);super(),this._options=e}getSupportedTrackCounts(){let e=2**32-1;return{video:{min:0,max:e},audio:{min:0,max:e},subtitle:{min:0,max:e},total:{min:0,max:e}}}get supportsVideoRotationMetadata(){return!0}get supportsTimestampedMediaData(){return!0}_createMuxer(e){return new Zf(e,this)}_isFragmentedIsobmff(){return this._options.fastStart===`fragmented`}},om=class extends am{constructor(e){super(e)}get _name(){return`MP4`}get fileExtension(){return`.mp4`}get mimeType(){return`video/mp4`}getSupportedCodecs(){return[...N,...lr,`pcm-s16`,`pcm-s16be`,`pcm-s24`,`pcm-s24be`,`pcm-s32`,`pcm-s32be`,`pcm-f32`,`pcm-f32be`,`pcm-f64`,`pcm-f64be`,...ur]}_codecUnsupportedHint(e){return new cm().getSupportedCodecs().includes(e)?` Switching to MOV will grant support for this codec.`:``}},sm=class extends am{constructor(e){super(e)}get _name(){return`CMAF`}get fileExtension(){return`.m4s`}get mimeType(){return`video/mp4`}getSupportedCodecs(){return[...N,...lr,`pcm-s16`,`pcm-s16be`,`pcm-s24`,`pcm-s24be`,`pcm-s32`,`pcm-s32be`,`pcm-f32`,`pcm-f32be`,`pcm-f64`,`pcm-f64be`,...ur]}},cm=class extends am{constructor(e){super(e)}get _name(){return`MOV`}get fileExtension(){return`.mov`}get mimeType(){return`video/quicktime`}getSupportedCodecs(){return[...N,...F]}_codecUnsupportedHint(e){return new om().getSupportedCodecs().includes(e)?` Switching to MP4 will grant support for this codec.`:``}},lm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.appendOnly!==void 0&&typeof e.appendOnly!=`boolean`)throw TypeError(`options.appendOnly, when provided, must be a boolean.`);if(e.minimumClusterDuration!==void 0&&(!Qe(e.minimumClusterDuration)||e.minimumClusterDuration<0))throw TypeError(`options.minimumClusterDuration, when provided, must be a non-negative number.`);if(e.onEbmlHeader!==void 0&&typeof e.onEbmlHeader!=`function`)throw TypeError(`options.onEbmlHeader, when provided, must be a function.`);if(e.onSegmentHeader!==void 0&&typeof e.onSegmentHeader!=`function`)throw TypeError(`options.onHeader, when provided, must be a function.`);if(e.onCluster!==void 0&&typeof e.onCluster!=`function`)throw TypeError(`options.onCluster, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new ip(e,this)}get _name(){return`Matroska`}getSupportedTrackCounts(){return{video:{min:0,max:127},audio:{min:0,max:127},subtitle:{min:0,max:127},total:{min:0,max:127}}}get fileExtension(){return`.mkv`}get mimeType(){return`video/x-matroska`}getSupportedCodecs(){return[...N,...lr,...P.filter(e=>![`pcm-s8`,`pcm-f32be`,`pcm-f64be`,`ulaw`,`alaw`].includes(e)),...ur]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!0}},um=class extends lm{constructor(e){super(e)}getSupportedCodecs(){return[...N.filter(e=>[`vp8`,`vp9`,`av1`].includes(e)),...F.filter(e=>[`opus`,`vorbis`].includes(e)),...ur]}get _name(){return`WebM`}get fileExtension(){return`.webm`}get mimeType(){return`video/webm`}_codecUnsupportedHint(e){return new lm().getSupportedCodecs().includes(e)?` Switching to MKV will grant support for this codec.`:``}},dm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.xingHeader!==void 0&&typeof e.xingHeader!=`boolean`)throw TypeError(`options.xingHeader, when provided, must be a boolean.`);if(e.onXingFrame!==void 0&&typeof e.onXingFrame!=`function`)throw TypeError(`options.onXingFrame, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new op(e,this)}get _name(){return`MP3`}getSupportedTrackCounts(){return{video:{min:0,max:0},audio:{min:1,max:1},subtitle:{min:0,max:0},total:{min:1,max:1}}}get fileExtension(){return`.mp3`}get mimeType(){return`audio/mpeg`}getSupportedCodecs(){return[`mp3`]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!1}},fm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.large!==void 0&&typeof e.large!=`boolean`)throw TypeError(`options.large, when provided, must be a boolean.`);if(e.metadataFormat!==void 0&&![`info`,`id3`].includes(e.metadataFormat))throw TypeError(`options.metadataFormat, when provided, must be either 'info' or 'id3'.`);if(e.onHeader!==void 0&&typeof e.onHeader!=`function`)throw TypeError(`options.onHeader, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new Cp(e,this)}get _name(){return`WAVE`}getSupportedTrackCounts(){return{video:{min:0,max:0},audio:{min:1,max:1},subtitle:{min:0,max:0},total:{min:1,max:1}}}get fileExtension(){return`.wav`}get mimeType(){return`audio/wav`}getSupportedCodecs(){return[...P.filter(e=>[`pcm-s16`,`pcm-s24`,`pcm-s32`,`pcm-f32`,`pcm-f64`,`pcm-u8`,`ulaw`,`alaw`].includes(e))]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!1}},pm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.maximumPageDuration!==void 0&&(!Qe(e.maximumPageDuration)||e.maximumPageDuration<=0))throw TypeError(`options.maximumPageDuration, when provided, must be a positive number.`);if(e.onPage!==void 0&&typeof e.onPage!=`function`)throw TypeError(`options.onPage, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new cp(e,this)}get _name(){return`Ogg`}getSupportedTrackCounts(){let e=2**32;return{video:{min:0,max:0},audio:{min:0,max:e},subtitle:{min:0,max:0},total:{min:0,max:e}}}get fileExtension(){return`.ogg`}get mimeType(){return`application/ogg`}getSupportedCodecs(){return[...F.filter(e=>[`vorbis`,`opus`].includes(e))]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!1}},mm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.onFrame!==void 0&&typeof e.onFrame!=`function`)throw TypeError(`options.onFrame, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new Fu(e,this)}get _name(){return`ADTS`}getSupportedTrackCounts(){return{video:{min:0,max:0},audio:{min:1,max:1},subtitle:{min:0,max:0},total:{min:1,max:1}}}get fileExtension(){return`.aac`}get mimeType(){return`audio/aac`}getSupportedCodecs(){return[`aac`]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!1}},hm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.appendOnly!==void 0&&typeof e.appendOnly!=`boolean`)throw TypeError(`options.appendOnly, when provided, must be a boolean.`);super(),this._options=e}_createMuxer(e){return new zu(e,this)}get _name(){return`FLAC`}getSupportedTrackCounts(){return{video:{min:0,max:0},audio:{min:1,max:1},subtitle:{min:0,max:0},total:{min:1,max:1}}}get fileExtension(){return`.flac`}get mimeType(){return`audio/flac`}getSupportedCodecs(){return[`flac`]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!1}},gm=class extends im{constructor(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.onPacket!==void 0&&typeof e.onPacket!=`function`)throw TypeError(`options.onPacket, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new gp(e,this)}get _name(){return`MPEG-TS`}getSupportedTrackCounts(){return{video:{min:0,max:16},audio:{min:0,max:32},subtitle:{min:0,max:0},total:{min:0,max:48}}}get fileExtension(){return`.ts`}get mimeType(){return`video/MP2T`}getSupportedCodecs(){return[...N.filter(e=>[`avc`,`hevc`].includes(e)),...F.filter(e=>[`aac`,`mp3`,`ac3`,`eac3`,`dts`].includes(e))]}get supportsVideoRotationMetadata(){return!1}get supportsTimestampedMediaData(){return!0}},_m=class extends im{constructor(e){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(!(e.segmentFormat instanceof im)&&(!Array.isArray(e.segmentFormat)||e.segmentFormat.length===0||!e.segmentFormat.every(e=>e instanceof im)))throw TypeError(`options.segmentFormat must be an OutputFormat or a non-empty array of OutputFormat instances.`);if(e.targetDuration!==void 0&&(typeof e.targetDuration!=`number`||e.targetDuration<=0))throw TypeError(`options.targetDuration, when provided, must be a positive number.`);if(e.singleFilePerPlaylist!==void 0&&typeof e.singleFilePerPlaylist!=`boolean`)throw TypeError(`options.singleFilePerPlaylist, when provided, must be a boolean.`);if(e.live!==void 0&&typeof e.live!=`boolean`)throw TypeError(`options.live, when provided, must be a boolean.`);if(e.maxLiveSegmentCount!==void 0&&(typeof e.maxLiveSegmentCount!=`number`||e.maxLiveSegmentCount<1||Number.isFinite(e.maxLiveSegmentCount)&&!Number.isInteger(e.maxLiveSegmentCount)))throw TypeError(`options.maxLiveSegmentCount, when provided, must be a positive integer or Infinity.`);if(e.getPlaylistPath!==void 0&&typeof e.getPlaylistPath!=`function`)throw TypeError(`options.getPlaylistPath, when provided, must be a function.`);if(e.getSegmentPath!==void 0&&typeof e.getSegmentPath!=`function`)throw TypeError(`options.getSegmentPath, when provided, must be a function.`);if(e.getInitPath!==void 0&&typeof e.getInitPath!=`function`)throw TypeError(`options.getInitPath, when provided, must be a function.`);if(e.onMaster!==void 0&&typeof e.onMaster!=`function`)throw TypeError(`options.onMaster, when provided, must be a function.`);if(e.onPlaylist!==void 0&&typeof e.onPlaylist!=`function`)throw TypeError(`options.onPlaylist, when provided, must be a function.`);if(e.onSegment!==void 0&&typeof e.onSegment!=`function`)throw TypeError(`options.onSegment, when provided, must be a function.`);if(e.onInit!==void 0&&typeof e.onInit!=`function`)throw TypeError(`options.onInit, when provided, must be a function.`);if(e.onSegmentPopped!==void 0&&typeof e.onSegmentPopped!=`function`)throw TypeError(`options.onSegmentPopped, when provided, must be a function.`);super(),this._options=e}_createMuxer(e){return new $p(e,this)}get _name(){return`HTTP Live Streaming (HLS)`}get fileExtension(){return`.m3u8`}get mimeType(){return vo}getSupportedCodecs(){return[...new Set(ht(this._options.segmentFormat).flatMap(e=>e.getSupportedCodecs()))]}getSupportedTrackCounts(){let e=!1,t=!1,n=!1;for(let r of ht(this._options.segmentFormat)){let i=r.getSupportedTrackCounts();e||=i.video.max>0,t||=i.audio.max>0,n||=i.subtitle.max>0}return{video:{min:0,max:e?1/0:0},audio:{min:0,max:t?1/0:0},subtitle:{min:0,max:0},total:{min:0,max:1/0}}}get supportsVideoRotationMetadata(){return ht(this._options.segmentFormat).some(e=>e.supportsVideoRotationMetadata)}get supportsTimestampedMediaData(){return!0}_codecUnsupportedHint(e){return` Using different segment formats may grant support for this codec.`}},vm=[`video`,`audio`,`subtitle`],ym=class e{constructor(e,t,n,r,i){this.id=e,this.output=t,this.type=n,this.source=r,this.metadata=i}isVideoTrack(){return this.type===`video`}isAudioTrack(){return this.type===`audio`}isSubtitleTrack(){return this.type===`subtitle`}canBePairedWith(t){if(!(t instanceof e))throw TypeError(`other must be an OutputTrack.`);if(this===t)return!1;let n=ht(this.metadata.group),r=ht(t.metadata.group);for(let e of n)if(this.type!==t.type&&r.some(t=>e===t)||r.some(t=>e._pairedGroups.has(t)))return!0;return!1}},bm=class extends ym{constructor(e,t,n,r){super(e,t,`video`,n,r)}},xm=class extends ym{constructor(e,t,n,r){super(e,t,`audio`,n,r)}},Sm=class extends ym{constructor(e,t,n,r){super(e,t,`subtitle`,n,r)}},Cm=class e{constructor(){this._pairedGroups=new Set}pairWith(t){if(!(t instanceof e))throw TypeError(`other must be an OutputTrackGroup.`);if(this===t)throw TypeError(`Cannot pair a group with itself.`);this._pairedGroups.add(t),t._pairedGroups.add(this)}},wm=e=>{if(!e||typeof e!=`object`)throw TypeError(`metadata must be an object.`);if(e.languageCode!==void 0&&!ke(e.languageCode))throw TypeError(`metadata.languageCode, when provided, must be a three-letter, ISO 639-2/T language code.`);if(e.name!==void 0&&typeof e.name!=`string`)throw TypeError(`metadata.name, when provided, must be a string.`);if(e.disposition!==void 0&&Et(e.disposition),e.maximumPacketCount!==void 0&&(!Number.isInteger(e.maximumPacketCount)||e.maximumPacketCount<0))throw TypeError(`metadata.maximumPacketCount, when provided, must be a non-negative integer.`);if(e.group!==void 0&&!(e.group instanceof Cm)&&(!Array.isArray(e.group)||e.group.some(e=>!(e instanceof Cm))))throw TypeError(`metadata.group, when provided, must be an OutputTrackGroup instance or an array of OutputTrackGroup instances.`)},Tm=class extends gt{get target(){let e=`Output.target cannot be used when using PathedTarget with an async callback. Use the 'target' event instead.`;if(this._rootTargetPromise)throw TypeError(e);let t=this._getRootTarget();if(O(t))throw TypeError(e);return t}constructor(e){if(super(),this.state=`pending`,this.defaultTrackGroup=new Cm,this.tracks=[],this._onFinalize=null,this._unfinalizedTargets=new Set,this._rootWriterPromise=null,this._startPromise=null,this._cancelPromise=null,this._finalizePromise=null,this._mutex=new ne,this._metadataTags={},this._rootTarget=null,this._rootTargetPromise=null,this._firstMediaStreamTimestamp=null,!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(!(e.format instanceof im))throw TypeError(`options.format must be an OutputFormat.`);if(!(e.target instanceof If||e.target instanceof qf))throw TypeError(`options.target must be a Target or a PathedTarget.`);if(e.target instanceof If&&this._rememberTarget(e.target),e.initTarget!==void 0&&!(e.initTarget instanceof If)&&typeof e.initTarget!=`function`)throw Error(`options.initTarget, when provided, must be a Target or a function that returns or resolves to a Target.`);if(e.onFinalize!==void 0&&typeof e.onFinalize!=`function`)throw TypeError(`options.onFinalize, when provided, must be a function.`);this.format=e.format,this._target=e.target,this._onFinalize=e.onFinalize??null,this._initTarget=e.initTarget??null,this._initTarget instanceof If&&this._rememberTarget(this._initTarget),this._muxer=e.format._createMuxer(this)}_getTargetValidated(e){r(this._target instanceof qf);let t=this._target.getTarget(e),n=e=>{if(!(e instanceof If))throw TypeError(`getTarget must return a Target.`);return e};return O(t)?t.then(n):n(t)}async _getTarget(e){r(this._target instanceof qf);let t=await this._getTargetValidated(e);return this._emit(`target`,{target:t,request:e,isRoot:e.isRoot}),this.state===`canceled`?await t._close():this._rememberTarget(t),t}_rememberTarget(e){this._unfinalizedTargets.add(e),e.on(`finalized`,()=>this._unfinalizedTargets.delete(e),{once:!0})}async _getInitTarget(){if(r(this._initTarget!==null),this._initTarget instanceof If)return this._initTarget;let e=await this._initTarget();return this.state===`canceled`?await e._close():this._rememberTarget(e),e}_hasInitTarget(){return this._initTarget!==null}_getRootTarget(){if(this._rootTarget)return this._rootTarget;if(this._rootTargetPromise)return this._rootTargetPromise;if(this._target instanceof If)return this._emit(`target`,{target:this._target,request:null,isRoot:!0}),this._rootTarget=this._target,this._target;let e={path:this._target.rootPath,isRoot:!0,mimeType:this.format.mimeType},t=this._getTargetValidated(e),n=t=>(this.state===`canceled`?t._close():this._rememberTarget(t),this._emit(`target`,{target:t,request:e,isRoot:!0}),this._rootTarget=t,t);return O(t)?this._rootTargetPromise=t.then(n):n(t)}_getRootWriter(e){return this._rootWriterPromise??=(async()=>{let t=await this._getRootTarget(),n=new Pf(t,typeof e==`boolean`?e:e(t));return n.start(),n})()}addVideoTrack(e,t={}){if(!(e instanceof Op))throw TypeError(`source must be a VideoSource.`);if(wm(t),t.rotation!==void 0&&![0,90,180,270].includes(t.rotation))throw TypeError(`Invalid video rotation: ${t.rotation}. Has to be 0, 90, 180 or 270.`);if(!this.format.supportsVideoRotationMetadata&&t.rotation)throw Error(`${this.format._name} does not support video rotation metadata.`);if(t.frameRate!==void 0&&(!Number.isFinite(t.frameRate)||t.frameRate<=0))throw TypeError(`Invalid video frame rate: ${t.frameRate}. Must be a positive number.`);if(t.decoderConfig!==void 0&&zr({decoderConfig:t.decoderConfig},e._codec),t.primingPacket!==void 0){if(!(t.primingPacket instanceof I))throw TypeError(`metadata.primingPacket, when provided, must be an EncodedPacket.`);if(t.decoderConfig===void 0)throw TypeError(`metadata.primingPacket can only be provided alongside metadata.decoderConfig.`)}let n={...t};return n.group??=this.defaultTrackGroup,this._addTrack(new bm(this.tracks.length+1,this,e,n))}addAudioTrack(e,t={}){if(!(e instanceof Rp))throw TypeError(`source must be an AudioSource.`);if(wm(t),t.decoderConfig!==void 0&&Vr({decoderConfig:t.decoderConfig},e._codec),t.primingPacket!==void 0){if(!(t.primingPacket instanceof I))throw TypeError(`metadata.primingPacket, when provided, must be an EncodedPacket.`);if(t.decoderConfig===void 0)throw TypeError(`metadata.primingPacket can only be provided alongside metadata.decoderConfig.`)}let n={...t};return n.group??=this.defaultTrackGroup,this._addTrack(new xm(this.tracks.length+1,this,e,n))}addSubtitleTrack(e,t={}){if(!(e instanceof Zp))throw TypeError(`source must be a SubtitleSource.`);wm(t);let n={...t};return n.group??=this.defaultTrackGroup,this._addTrack(new Sm(this.tracks.length+1,this,e,n))}setMetadataTags(e){if(Ct(e),this.state!==`pending`)throw Error(`Cannot set metadata tags after output has been started or canceled.`);this._metadataTags=e}_addTrack(e){if(this.state!==`pending`)throw Error(`Cannot add track after output has been started or canceled.`);if(e.source._connectedTrack)throw Error(`Source is already used for a track.`);let t=this.format.getSupportedTrackCounts(),n=this.tracks.reduce((t,n)=>t+ +(n.type===e.type),0),r=t[e.type].max;if(n===r)throw Error(r===0?`${this.format._name} does not support ${e.type} tracks.`:`${this.format._name} does not support more than ${r} ${e.type} track${r===1?``:`s`}.`);let i=t.total.max;if(this.tracks.length===i)throw Error(`${this.format._name} does not support more than ${i} tracks${i===1?``:`s`} in total.`);if(e.isVideoTrack()){let t=this.format.getSupportedVideoCodecs();if(t.length===0)throw Error(`${this.format._name} does not support video tracks.`+this.format._codecUnsupportedHint(e.source._codec));if(!t.includes(e.source._codec))throw Error(`Codec '${e.source._codec}' cannot be contained within ${this.format._name}. Supported video codecs are: ${t.map(e=>`'${e}'`).join(`, `)}.`+this.format._codecUnsupportedHint(e.source._codec))}else if(e.isAudioTrack()){let t=this.format.getSupportedAudioCodecs();if(t.length===0)throw Error(`${this.format._name} does not support audio tracks.`+this.format._codecUnsupportedHint(e.source._codec));if(!t.includes(e.source._codec))throw Error(`Codec '${e.source._codec}' cannot be contained within ${this.format._name}. Supported audio codecs are: ${t.map(e=>`'${e}'`).join(`, `)}.`+this.format._codecUnsupportedHint(e.source._codec))}else if(e.isSubtitleTrack()){let t=this.format.getSupportedSubtitleCodecs();if(t.length===0)throw Error(`${this.format._name} does not support subtitle tracks.`+this.format._codecUnsupportedHint(e.source._codec));if(!t.includes(e.source._codec))throw Error(`Codec '${e.source._codec}' cannot be contained within ${this.format._name}. Supported subtitle codecs are: ${t.map(e=>`'${e}'`).join(`, `)}.`+this.format._codecUnsupportedHint(e.source._codec))}return this.tracks.push(e),e.source._connectedTrack=e,e}hasEnoughTracks(){let e=this.format.getSupportedTrackCounts();for(let t of vm)if(this.tracks.reduce((e,n)=>e+ +(n.type===t),0)<e[t].min)return!1;let t=e.total.min;return!(this.tracks.length<t)}async start(){let e=this.format.getSupportedTrackCounts();for(let t of vm){let n=this.tracks.reduce((e,n)=>e+ +(n.type===t),0),r=e[t].min;if(n<r)throw Error(r===e[t].max?`${this.format._name} requires exactly ${r} ${t} track${r===1?``:`s`}.`:`${this.format._name} requires at least ${r} ${t} track${r===1?``:`s`}.`)}let t=e.total.min;if(this.tracks.length<t)throw Error(t===e.total.max?`${this.format._name} requires exactly ${t} track${t===1?``:`s`}.`:`${this.format._name} requires at least ${t} track${t===1?``:`s`}.`);if(this.state===`canceled`)throw Error(`Output has been canceled.`);return this._startPromise?(k._warn(`Output has already been started.`),this._startPromise):this._startPromise=(async()=>{this.state=`started`;let e=this._mutex.acquire();try{await this._muxer.start();let e=this.tracks.map(e=>e.source._start());await Promise.all(e)}finally{(await e)()}})()}getMimeType(){return this._muxer.getMimeType()}async cancel(){if(this._cancelPromise)return k._warn(`Output has already been canceled.`),this._cancelPromise;if(this.state===`finalizing`||this.state===`finalized`){this.state===`finalized`&&k._warn(`Output has already been finalized.`);return}return this._cancelPromise=(async()=>{this.state=`canceled`;let e=await this._mutex.acquire();try{let e=this.tracks.map(e=>e.source._flushOrWaitForOngoingClose(!0));await Promise.all(e),await Promise.all([...this._unfinalizedTargets].map(e=>e._close())),this._unfinalizedTargets.clear()}finally{e()}})()}async finalize(){if(this.state===`pending`)throw Error(`Cannot finalize before starting.`);if(this.state===`canceled`)throw Error(`Cannot finalize after canceling.`);return this._finalizePromise?(k._warn(`Output has already been finalized.`),this._finalizePromise):this._finalizePromise=(async()=>{this.state=`finalizing`;let e=await this._mutex.acquire();try{let e=this.tracks.map(e=>e.source._flushOrWaitForOngoingClose(!1));if(await Promise.all(e),await this._muxer.finalize(),this._rootWriterPromise){let e=await this._rootWriterPromise;e.finalized||(await e.flush(),await e.finalize())}this._onFinalize&&await this._onFinalize(),this.state=`finalized`}finally{await Promise.all([...this._unfinalizedTargets].map(e=>e._close().catch(()=>{}))),this._unfinalizedTargets.clear(),e()}})()}},Em=function(e,t,n){if(t!=null){if(typeof t!=`object`&&typeof t!=`function`)throw TypeError(`Object expected.`);var r,i;if(n){if(!Symbol.asyncDispose)throw TypeError(`Symbol.asyncDispose is not defined.`);r=t[Symbol.asyncDispose]}if(r===void 0){if(!Symbol.dispose)throw TypeError(`Symbol.dispose is not defined.`);r=t[Symbol.dispose],n&&(i=r)}if(typeof r!=`function`)throw TypeError(`Object not disposable.`);i&&(r=function(){try{i.call(this)}catch(e){return Promise.reject(e)}}),e.stack.push({value:t,dispose:r,async:n})}else n&&e.stack.push({async:!0});return t},Dm=(function(e){return function(t){function n(n){t.error=t.hasError?new e(n,t.error,`An error was suppressed during disposal.`):n,t.hasError=!0}var r,i=0;function a(){for(;r=t.stack.pop();)try{if(!r.async&&i===1)return i=0,t.stack.push(r),Promise.resolve().then(a);if(r.dispose){var e=r.dispose.call(r.value);if(r.async)return i|=2,Promise.resolve(e).then(a,function(e){return n(e),a()})}else i|=1}catch(e){n(e)}if(i===1)return t.hasError?Promise.reject(t.error):Promise.resolve();if(t.hasError)throw t.error}return a()}})(typeof SuppressedError==`function`?SuppressedError:function(e,t,n){var r=Error(n);return r.name=`SuppressedError`,r.error=e,r.suppressed=t,r}),Om=e=>{if(!e||typeof e!=`object`)throw TypeError(`options.video, when provided, must be an object.`);if(e?.discard!==void 0&&typeof e.discard!=`boolean`)throw TypeError(`options.video.discard, when provided, must be a boolean.`);if(e?.forceTranscode!==void 0&&typeof e.forceTranscode!=`boolean`)throw TypeError(`options.video.forceTranscode, when provided, must be a boolean.`);if(e?.codec!==void 0&&!N.includes(e.codec))throw TypeError(`options.video.codec, when provided, must be one of: ${N.join(`, `)}.`);let t=e?.bitrate;if(e?.quality!==void 0&&!(e.quality instanceof z))throw TypeError(`options.video.quality, when provided, must be a Quality.`);if(e?.quality!==void 0&&t!==void 0)throw TypeError(`options.video.quality and options.video.bitrate cannot both be provided.`);if(t!==void 0&&!(t instanceof z)&&(!Number.isInteger(t)||t<=0))throw TypeError(`options.video.bitrate, when provided, must be a positive integer or a quality.`);if(e?.width!==void 0&&(!Number.isInteger(e.width)||e.width<=0))throw TypeError(`options.video.width, when provided, must be a positive integer.`);if(e?.height!==void 0&&(!Number.isInteger(e.height)||e.height<=0))throw TypeError(`options.video.height, when provided, must be a positive integer.`);if(e?.fit!==void 0&&![`fill`,`contain`,`cover`].includes(e.fit))throw TypeError(`options.video.fit, when provided, must be one of 'fill', 'contain', or 'cover'.`);if(e?.width!==void 0&&e.height!==void 0&&e.fit===void 0)throw TypeError(`When both options.video.width and options.video.height are provided, options.video.fit must also be provided.`);if(e?.rotate!==void 0&&![0,90,180,270].includes(e.rotate))throw TypeError(`options.video.rotate, when provided, must be 0, 90, 180 or 270.`);if(e?.allowRotationMetadata!==void 0&&typeof e.allowRotationMetadata!=`boolean`)throw TypeError(`options.video.allowRotationMetadata, when provided, must be a boolean.`);if(e?.crop!==void 0&&yc(e.crop,`options.video.`),e?.frameRate!==void 0&&(!Number.isFinite(e.frameRate)||e.frameRate<=0))throw TypeError(`options.video.frameRate, when provided, must be a finite positive number.`);if(e?.alpha!==void 0&&![`discard`,`keep`].includes(e.alpha))throw TypeError(`options.video.alpha, when provided, must be either 'discard' or 'keep'.`);if(e?.keyFrameInterval!==void 0&&(!Number.isFinite(e.keyFrameInterval)||e.keyFrameInterval<0))throw TypeError(`options.video.keyFrameInterval, when provided, must be a non-negative number.`);if(e?.process!==void 0&&typeof e.process!=`function`)throw TypeError(`options.video.process, when provided, must be a function.`);if(e?.processedWidth!==void 0&&(!Number.isInteger(e.processedWidth)||e.processedWidth<=0))throw TypeError(`options.video.processedWidth, when provided, must be a positive integer.`);if(e?.processedHeight!==void 0&&(!Number.isInteger(e.processedHeight)||e.processedHeight<=0))throw TypeError(`options.video.processedHeight, when provided, must be a positive integer.`);if(e?.hardwareAcceleration!==void 0&&![`no-preference`,`prefer-hardware`,`prefer-software`].includes(e.hardwareAcceleration))throw TypeError(`options.video.hardwareAcceleration, when provided, must be 'no-preference', 'prefer-hardware' or 'prefer-software'.`);if(e?.group!==void 0&&!(e.group instanceof Cm||Array.isArray(e.group)&&e.group.every(e=>e instanceof Cm)))throw TypeError(`options.video.group, when provided, must be an OutputTrackGroup or an array of OutputTrackGroups.`)},km=e=>{if(!e||typeof e!=`object`)throw TypeError(`options.audio, when provided, must be an object.`);if(e?.discard!==void 0&&typeof e.discard!=`boolean`)throw TypeError(`options.audio.discard, when provided, must be a boolean.`);if(e?.forceTranscode!==void 0&&typeof e.forceTranscode!=`boolean`)throw TypeError(`options.audio.forceTranscode, when provided, must be a boolean.`);if(e?.codec!==void 0&&!F.includes(e.codec))throw TypeError(`options.audio.codec, when provided, must be one of: ${F.join(`, `)}.`);let t=e?.bitrate;if(e?.quality!==void 0&&!(e.quality instanceof z))throw TypeError(`options.audio.quality, when provided, must be a Quality.`);if(e?.quality!==void 0&&t!==void 0)throw TypeError(`options.audio.quality and options.audio.bitrate cannot both be provided.`);if(t!==void 0&&!(t instanceof z)&&(!Number.isInteger(t)||t<=0))throw TypeError(`options.audio.bitrate, when provided, must be a positive integer or a quality.`);if(e?.numberOfChannels!==void 0&&(!Number.isInteger(e.numberOfChannels)||e.numberOfChannels<=0))throw TypeError(`options.audio.numberOfChannels, when provided, must be a positive integer.`);if(e?.sampleRate!==void 0&&(!Number.isInteger(e.sampleRate)||e.sampleRate<=0))throw TypeError(`options.audio.sampleRate, when provided, must be a positive integer.`);if(e?.sampleFormat!==void 0&&![`u8`,`s16`,`s32`,`f32`].includes(e.sampleFormat))throw TypeError(`options.audio.sampleFormat, when provided, must be one of: u8, s16, s32, f32.`);if(e?.process!==void 0&&typeof e.process!=`function`)throw TypeError(`options.audio.process, when provided, must be a function.`);if(e?.processedNumberOfChannels!==void 0&&(!Number.isInteger(e.processedNumberOfChannels)||e.processedNumberOfChannels<=0))throw TypeError(`options.audio.processedNumberOfChannels, when provided, must be a positive integer.`);if(e?.processedSampleRate!==void 0&&(!Number.isInteger(e.processedSampleRate)||e.processedSampleRate<=0))throw TypeError(`options.audio.processedSampleRate, when provided, must be a positive integer.`);if(e?.group!==void 0&&!(e.group instanceof Cm||Array.isArray(e.group)&&e.group.every(e=>e instanceof Cm)))throw TypeError(`options.audio.group, when provided, must be an OutputTrackGroup or an array of OutputTrackGroups.`)},Am=2,jm=48e3,Mm=class e{static async init(t){let n=new e(t);return await n._init(),n}constructor(e){if(this.state=`idle`,this._nextOutputTrackId=0,this._outputTrackIds=[],this._outputOwnTrackGroups=[],this._trackPumps=[],this._composable=!1,this._executed=!1,this._executionUntil=1/0,this._pauseRequested=!1,this._synchronizer=new Fm(this),this._totalDuration=null,this._maxTimestamps=new Map,this.onProgress=void 0,this._computeProgress=!1,this._lastProgress=0,this.isValid=!1,this.utilizedTracks=[],this.discardedTracks=[],!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(!(e.input instanceof au))throw TypeError(`options.input must be an Input.`);if(!(e.output instanceof Tm))throw TypeError(`options.output must be an Output.`);if(e.tracks!==void 0&&e.tracks!==`all`&&e.tracks!==`primary`)throw TypeError(`options.tracks, when provided, must be either 'all' or 'primary'.`);if(e.composable!==void 0&&typeof e.composable!=`boolean`)throw TypeError(`options.composable, when provided, must be a boolean.`);let t=e.composable??!1;if(t){if(e.tags!==void 0)throw TypeError(`options.tags cannot be set by a composable conversion; set metadata directly on the output instead.`);if(e.output.state!==`pending`)throw TypeError(`options.output must not have been started yet.`)}else if(e.output.tracks.length>0||Object.keys(e.output._metadataTags).length>0||e.output.state!==`pending`)throw TypeError(`options.output must be fresh: no tracks or metadata tags added and not started.`);if(e.video!==void 0&&typeof e.video!=`function`){if(Array.isArray(e.video))for(let t of e.video)Om(t);else Om(e.video)}if(e.audio!==void 0&&typeof e.audio!=`function`){if(Array.isArray(e.audio))for(let t of e.audio)km(t);else km(e.audio)}if(e.trim!==void 0&&(!e.trim||typeof e.trim!=`object`))throw TypeError(`options.trim, when provided, must be an object.`);if(e.trim?.start!==void 0&&!Number.isFinite(e.trim.start))throw TypeError(`options.trim.start, when provided, must be a finite number.`);if(e.trim?.end!==void 0&&!Number.isFinite(e.trim.end))throw TypeError(`options.trim.end, when provided, must be a finite number.`);if(e.trim?.start!==void 0&&e.trim.end!==void 0&&e.trim.start>=e.trim.end)throw TypeError(`options.trim.start must be less than options.trim.end.`);if(e.tags!==void 0&&(typeof e.tags!=`object`||!e.tags)&&typeof e.tags!=`function`)throw TypeError(`options.tags, when provided, must be an object or a function.`);if(typeof e.tags==`object`&&Ct(e.tags),e.showWarnings!==void 0&&typeof e.showWarnings!=`boolean`)throw TypeError(`options.showWarnings, when provided, must be a boolean.`);this._options=e,this._composable=t,this.input=e.input,this.output=e.output}async _init(){let e=await this.input.getFormat(),t,n=this._options.tracks;n===void 0&&(n=e.name.includes(`(HLS)`)?`primary`:`all`),n===`all`?t=await this.input.getTracks():n===`primary`?t=[await this.input.getPrimaryVideoTrack(),await this.input.getPrimaryAudioTrack()].filter(e=>e!==null):(E(n),r(!1));let i=this.output.format.getSupportedTrackCounts(),a=1,o=1,s=[],c=[];for(let e of t){let t;if(e.isVideoTrack()){if(this._options.video){if(typeof this._options.video==`function`){let n=await this._options.video(e,a)??{};if(Array.isArray(n))for(let e of n)Om(e);else Om(n);t=Array.isArray(n)?n:[n],a++}else t=Array.isArray(this._options.video)?this._options.video:[this._options.video]}else t=[{}]}else if(e.isAudioTrack()){if(this._options.audio){if(typeof this._options.audio==`function`){let n=await this._options.audio(e,o)??{};if(Array.isArray(n))for(let e of n)km(e);else km(n);t=Array.isArray(n)?n:[n],o++}else t=Array.isArray(this._options.audio)?this._options.audio:[this._options.audio]}else t=[{}]}else r(!1);let n=t.filter(e=>e.discard);for(let t of n)this.discardedTracks.push({track:e,reason:`discarded_by_user`,trackOptions:t});if(t.length===n.length){t.length===0&&this.discardedTracks.push({track:e,reason:`discarded_by_user`,trackOptions:{}});continue}let i=t.filter(e=>!e.discard);s.push(e),c.push(i)}this._startTimestamp=this._options.trim?.start===void 0?Math.max(await this.input.getFirstTimestamp(s),0):this._options.trim.start,this._endTimestamp=Math.max(this._options.trim?.end??1/0,this._startTimestamp);for(let e=0;e<s.length;e++){let t=s[e],n=c[e];for(let e of n){if(this.output.tracks.length===i.total.max){this.discardedTracks.push({track:t,reason:`max_track_count_reached`,trackOptions:e});continue}if(this.output.tracks.reduce((e,n)=>e+ +(n.type===t.type),0)===i[t.type].max){this.discardedTracks.push({track:t,reason:`max_track_count_of_type_reached`,trackOptions:e});continue}let n=this._nextOutputTrackId++;t.isVideoTrack()?await this._processVideoTrack(t,e,n):t.isAudioTrack()?await this._processAudioTrack(t,e,n):r(!1)}}for(let e=0;e<this.utilizedTracks.length-1;e++)for(let t=e+1;t<this.utilizedTracks.length;t++){let n=this.utilizedTracks[e],i=this.utilizedTracks[t],a=this._outputOwnTrackGroups[e],o=this._outputOwnTrackGroups[t];r(a!==void 0),r(o!==void 0),a&&o&&n.canBePairedWith(i)&&a.pairWith(o)}if(!this._composable){let t=await this.input.getMetadataTags(),n;if(this._options.tags){let e=typeof this._options.tags==`function`?await this._options.tags(t):this._options.tags;Ct(e),n=e}else n=t;let r=e.mimeType===this.output.format.mimeType,i=t.raw===n.raw;t.raw&&i&&!r&&delete n.raw,this.output.setMetadataTags(n)}if(this.isValid=this._composable?!0:this.output.hasEnoughTracks()&&this.output.tracks.length>0,this._options.showWarnings??!0){let e=[],t=this.discardedTracks.filter(e=>e.reason!==`discarded_by_user`);t.length>0&&e.push(`Some tracks had to be discarded from the conversion:`,t),this.isValid||(e.length>0&&e.push(`
|
|
23
|
+
|
|
24
|
+
`),e.push(this._getInvalidityExplanation().join(``))),e.length>0&&k._warn(...e)}}_getInvalidityExplanation(){let e=[];if(this.discardedTracks.length===0)e.push(`Due to missing tracks, this conversion cannot be executed.`);else{let t=this.discardedTracks.every(e=>e.reason===`discarded_by_user`||e.reason===`no_encodable_target_codec`)&&this.discardedTracks.some(e=>e.reason===`no_encodable_target_codec`);if(e.push(`Due to discarded tracks, this conversion cannot be executed.`),t){let t=this.discardedTracks.flatMap(e=>{if(e.reason===`discarded_by_user`)return[];let t;return t=e.track.type===`video`?this.output.format.getSupportedVideoCodecs():e.track.type===`audio`?this.output.format.getSupportedAudioCodecs():this.output.format.getSupportedSubtitleCodecs(),t.filter(t=>!e.trackOptions.codec||t===e.trackOptions.codec)}),n=[...new Set(t)];n.length===1?e.push(`\nTracks were discarded because your environment is not able to encode '${n[0]}' with the provided parameters.`):e.push(`
|
|
25
|
+
Tracks were discarded because your environment is not able to encode any of the codecs ${n.map(e=>`'${e}'`).join(`, `)} with the provided parameters.`),n.includes(`mp3`)&&e.push(`
|
|
26
|
+
The @mediabunny/mp3-encoder extension package provides support for encoding MP3.`),n.includes(`aac`)&&e.push(`
|
|
27
|
+
The @mediabunny/aac-encoder extension package provides support for encoding AAC.`),(n.includes(`ac3`)||n.includes(`eac3`))&&e.push(`
|
|
28
|
+
The @mediabunny/ac3 extension package provides support for encoding and decoding AC-3/E-AC-3.`),n.includes(`flac`)&&e.push(`
|
|
29
|
+
The @mediabunny/flac-encoder extension package provides support for encoding FLAC.`)}else e.push(`
|
|
30
|
+
Check the discardedTracks field for more info.`)}return e}async execute(e={}){if(!e||typeof e!=`object`)throw TypeError(`options must be an object.`);if(e.until!==void 0&&(typeof e.until!=`number`||Number.isNaN(e.until)))throw TypeError(`options.until, when provided, must be a number.`);if(e.pauseSignal!==void 0&&!(e.pauseSignal instanceof AbortSignal))throw TypeError(`options.pauseSignal, when provided, must be an AbortSignal.`);if(!this.isValid)throw Error(`Cannot execute this conversion because its output configuration is invalid. Make sure to always check the isValid field before executing a conversion.
|
|
31
|
+
`+this._getInvalidityExplanation().join(``));if(this.state===`executing`)throw Error(`Cannot call execute() while a previous call to execute() is still running.`);if(this.state===`canceled`)throw new Nm;if(this.state===`done`)return;if(this._composable&&this.output.state===`pending`)throw Error(`A composable conversion requires the output to be started. Call start() on the output before executing the conversion.`);this.state=`executing`,this._executionUntil=e.until??1/0,this._pauseRequested=e.pauseSignal?.aborted??!1;let t=()=>{this.state===`executing`&&(this._pauseRequested=!0,this._synchronizer.resolveAll())};e.pauseSignal?.addEventListener(`abort`,t);for(let e of this._trackPumps)e.done||(e.resolvers=T());if(this._executed)for(let e of this._trackPumps)e.wake?.();else{this._executed=!0;for(let e of this._outputTrackIds)this._synchronizer.declareTrack(e);if(this.onProgress){let e=[...new Set(this.utilizedTracks)].map(async e=>await e.isLive()?1/0:await e.getDurationFromMetadata()??await e.computeDuration()),t=Math.max(0,...await Promise.all(e));this._computeProgress=!0,this._totalDuration=Math.min(t-this._startTimestamp,this._endTimestamp-this._startTimestamp);for(let e of this._outputTrackIds)this._maxTimestamps.set(e,0);this.onProgress?.(0,0)}this._composable||await this.output.start();for(let e of this._trackPumps)e.start()}try{await Promise.all(this._trackPumps.map(e=>e.resolvers.promise))}catch(e){throw this.state!==`canceled`&&this.cancel(),e}finally{e.pauseSignal?.removeEventListener(`abort`,t)}if(this.state===`canceled`)throw new Nm;let n=this._trackPumps.every(e=>e.done);if(this.state=n?`done`:`idle`,n&&(this._composable||await this.output.finalize(),this._computeProgress)){let e=Math.min(...this._maxTimestamps.values());this.onProgress?.(1,e)}}async cancel(){if(this.state!==`done`){if(this.state===`canceled`){k._warn(`Conversion already canceled.`);return}this.state=`canceled`;for(let e of this._trackPumps)e.wake?.();this._synchronizer.resolveAll(),this._composable||await this.output.cancel()}}async _processVideoTrack(e,t,n){let a=await e.getCodec();if(!a){this.discardedTracks.push({track:e,reason:`unknown_source_codec`,trackOptions:t});return}let o,s=await e.getRotation(),c=i(s+(t.rotate??0)),l=c,u=this.output.format.supportsVideoRotationMetadata&&(t.allowRotationMetadata??!0),d=await e.getSquarePixelWidth(),f=await e.getSquarePixelHeight(),[p,m]=c%180==0?[d,f]:[f,d],h=t.crop;h&&=vc(h,p,m);let[g,_]=h?[h.width,h.height]:[p,m],v=g,y=_,b=v/y;t.width!==void 0&&t.height===void 0?(v=_t(t.width),y=_t(Math.round(v/b))):t.width===void 0&&t.height!==void 0?(y=_t(t.height),v=_t(Math.round(y*b))):t.width!==void 0&&t.height!==void 0&&(v=_t(t.width),y=_t(t.height));let x=await e.getFirstTimestamp(),S=this.output.format.getSupportedVideoCodecs(),C=!!t.forceTranscode||x<this._startTimestamp||!!t.frameRate||t.keyFrameInterval!==void 0||t.process!==void 0||t.quality!==void 0||t.bitrate!==void 0||!S.includes(a)||t.codec&&t.codec!==a||v!==g||y!==_||c!==0&&!u||!!h,ee=t.alpha??`discard`;if(C){if(!await e.canDecode()){this.discardedTracks.push({track:e,reason:`undecodable_source_codec`,trackOptions:t});return}t.codec&&(S=S.filter(e=>e===t.codec));let a=al(t.quality,t.bitrate)??new z(`high`),p=await dl(S,{width:t.process&&t.processedWidth?t.processedWidth:v,height:t.process&&t.processedHeight?t.processedHeight:y,quality:a});if(!p){this.discardedTracks.push({track:e,reason:`no_encodable_target_codec`,trackOptions:t});return}let m={codec:p,quality:a,keyFrameInterval:t.keyFrameInterval,sizeChangeBehavior:t.fit??`passThrough`,alpha:ee,hardwareAcceleration:t.hardwareAcceleration,transform:{}};r(m.transform);let b=v!==g||y!==_||c!==0&&(!u||t.process!==void 0)||!!h||d!==await e.getCodedWidth()||f!==await e.getCodedHeight();if(!b){let t={stack:[],error:void 0,hasError:!1};try{let n=new Tm({format:new om,target:new Gf}),r=new Fp(m);n.addVideoTrack(r),await n.start();let i=Em(t,await new Bl(e).getSample(x),!1);if(i)try{await r.add(i),i.close(),await n.finalize()}catch(e){k._warn(`An error occurred when probing encoder support. Falling back to rerender path.`,e),n.cancel(),b=!0,m.transform.force=!0}else await n.cancel()}catch(e){t.error=e,t.hasError=!0}finally{Dm(t)}}t.frameRate&&(m.transform.frameRate=t.frameRate),t.process&&(m.transform.process=t.process),b&&(l=0,m.transform.width=v,m.transform.height=y,m.transform.fit=t.fit??`fill`,m.transform.rotate=i(c-s),m.transform.crop=h,m.transform.alpha=ee);let C=null;m.onEncodedSample=e=>{C=e.timestamp};let te=new Fp(m);o=te,this._registerTrackPump(async t=>{let r=new Bl(e);for await(let e of r.samples(this._startTimestamp,this._endTimestamp)){let r={stack:[],error:void 0,hasError:!1};try{let i=Em(r,e,!1);if(this.state===`canceled`)break;let a=Math.max(i.timestamp-this._startTimestamp,0);i.setTimestamp(a),this._reportProgress(n,i.timestamp+i.duration),await te.add(i),i.close(),C!==null&&(this._synchronizer.shouldWait(n,C)&&await this._synchronizer.wait(C),await this._checkpoint(t,C))}catch(e){r.error=e,r.hasError=!0}finally{Dm(r)}}te.close(),this._synchronizer.closeTrack(n)})}else{let t=new Ap(a);o=t,this._registerTrackPump(async i=>{let a=new jl(e),o={decoderConfig:await e.getDecoderConfig()??void 0};for await(let e of a.packets(void 0,void 0,{verifyKeyPackets:!0})){if(this.state===`canceled`||e.timestamp>=this._endTimestamp)break;let a=e.clone({timestamp:e.timestamp-this._startTimestamp,sideData:ee===`discard`?{}:e.sideData});r(a.timestamp>=0),this._reportProgress(n,a.timestamp+a.duration),await t.add(a,o),this._synchronizer.shouldWait(n,a.timestamp)&&await this._synchronizer.wait(a.timestamp),await this._checkpoint(i,a.timestamp)}t.close(),this._synchronizer.closeTrack(n)})}let te=null;!t.group&&!this._composable&&(te=new Cm);let ne=await e.getLanguageCode();this.output.addVideoTrack(o,{frameRate:t.frameRate,languageCode:ke(ne)?ne:void 0,name:await e.getName()??void 0,disposition:await e.getDisposition(),rotation:l,group:te??t.group}),this.utilizedTracks.push(e),this._outputTrackIds.push(n),this._outputOwnTrackGroups.push(te)}async _processAudioTrack(e,t,n){let i=await e.getCodec();if(!i){this.discardedTracks.push({track:e,reason:`unknown_source_codec`,trackOptions:t});return}let a,o=await e.getNumberOfChannels(),s=await e.getSampleRate(),c=await e.getFirstTimestamp(),l=t.numberOfChannels??o,u=t.sampleRate??s,d=c<this._startTimestamp,f=c>this._startTimestamp&&!this.output.format.supportsTimestampedMediaData,p=this.output.format.getSupportedAudioCodecs();if(!t.forceTranscode&&!t.quality&&!t.bitrate&&l===o&&u===s&&!d&&!f&&p.includes(i)&&(!t.codec||t.codec===i)&&!t.process&&t.sampleFormat===void 0){let t=new zp(i);a=t,this._registerTrackPump(async i=>{let a=new jl(e),o={decoderConfig:await e.getDecoderConfig()??void 0};for await(let e of a.packets()){if(this.state===`canceled`||e.timestamp>=this._endTimestamp)break;let a=e.clone({timestamp:e.timestamp-this._startTimestamp});r(a.timestamp>=0),this._reportProgress(n,a.timestamp+a.duration),await t.add(a,o),this._synchronizer.shouldWait(n,a.timestamp)&&await this._synchronizer.wait(a.timestamp),await this._checkpoint(i,a.timestamp)}t.close(),this._synchronizer.closeTrack(n)})}else{if(!await e.canDecode()){this.discardedTracks.push({track:e,reason:`undecodable_source_codec`,trackOptions:t});return}let i=null;t.codec&&(p=p.filter(e=>e===t.codec));let d=al(t.quality,t.bitrate)??new z(`high`),m=await ll(p,{numberOfChannels:t.process&&t.processedNumberOfChannels?t.processedNumberOfChannels:l,sampleRate:t.process&&t.processedSampleRate?t.processedSampleRate:u,quality:d});if(!m.some(e=>lr.includes(e))&&p.some(e=>lr.includes(e))&&(l!==Am||u!==jm)){let e=(await ll(p,{numberOfChannels:Am,sampleRate:jm,quality:d})).find(e=>lr.includes(e));e&&(i=e,l=Am,u=jm)}else i=m[0]??null;if(i===null){this.discardedTracks.push({track:e,reason:`no_encodable_target_codec`,trackOptions:t});return}let h={codec:i,quality:d,transform:{sampleFormat:t.sampleFormat,process:t.process}};r(h.transform),l!==o&&(h.transform.numberOfChannels=l),u!==s&&(h.transform.sampleRate=u);let g=null;h.onEncodedSample=e=>{g=e.timestamp};let _=new Vp(h);a=_,this._registerTrackPump(async t=>{let r=new Wl(e);for await(let e of r.samples(this._startTimestamp,this._endTimestamp)){let r={stack:[],error:void 0,hasError:!1};try{let i=Em(r,e,!1);if(this.state===`canceled`)break;if(f){let e={stack:[],error:void 0,hasError:!1};try{let r=c-this._startTimestamp,a=Math.round(r*s),l=Ac(i.format),u=new Uint8Array(l*a*o);(i.format===`u8`||i.format===`u8-planar`)&&u.fill(128);let d=Em(e,new kc({data:u,format:i.format,numberOfChannels:o,sampleRate:s,timestamp:0}),!1);await this._registerAudioSample(t,d,_,n,()=>g),f=!1}catch(t){e.error=t,e.hasError=!0}finally{Dm(e)}}let a=0,l=i.numberOfFrames;i.timestamp<this._startTimestamp&&(a=Math.round((this._startTimestamp-i.timestamp)*i.sampleRate)),i.timestamp+i.duration>this._endTimestamp&&(l=Math.round((this._endTimestamp-i.timestamp)*i.sampleRate));let u;if(a>0||l<i.numberOfFrames){let e=i.trim(a,l);if(i.close(),u=e,e.numberOfFrames===0){e.close();continue}}else u=i;let d=Em(r,u,!1);d.setTimestamp(d.timestamp-this._startTimestamp),await this._registerAudioSample(t,d,_,n,()=>g)}catch(e){r.error=e,r.hasError=!0}finally{Dm(r)}}_.close(),this._synchronizer.closeTrack(n)})}let m=null;!t.group&&!this._composable&&(m=new Cm);let h=await e.getLanguageCode();this.output.addAudioTrack(a,{languageCode:ke(h)?h:void 0,name:await e.getName()??void 0,disposition:await e.getDisposition(),group:m??t.group}),this.utilizedTracks.push(e),this._outputTrackIds.push(n),this._outputOwnTrackGroups.push(m)}async _registerAudioSample(e,t,n,r,i){this._reportProgress(r,t.timestamp+t.duration),await n.add(t),t.close();let a=i();a!==null&&(this._synchronizer.shouldWait(r,a)&&await this._synchronizer.wait(a),await this._checkpoint(e,a))}_registerTrackPump(e){let t={done:!1,resolvers:T(),wake:null,start:()=>{e(t).then(()=>{t.done=!0,t.resolvers.resolve()},e=>{t.resolvers.reject(e)})}};this._trackPumps.push(t)}async _checkpoint(e,t){for(;this.state!==`canceled`&&(t>=this._executionUntil||this._pauseRequested);){e.resolvers.resolve();let{promise:t,resolve:n}=T();e.wake=n,await t}}_reportProgress(e,t){if(!this._computeProgress)return;r(this._totalDuration!==null),this._maxTimestamps.set(e,Math.max(t,this._maxTimestamps.get(e)));let n=Math.min(...this._maxTimestamps.values()),i=D(n/this._totalDuration,0,1);i!==this._lastProgress&&(this._lastProgress=i,this.onProgress?.(i,n))}},Nm=class extends Error{constructor(e=`Conversion has been canceled.`){super(e),this.name=`ConversionCanceledError`}},Pm=1,Fm=class{constructor(e){this.maxTimestamps=new Map,this.resolvers=[],this.conversion=e}declareTrack(e){this.maxTimestamps.set(e,0)}shouldWait(e,t){let n=this.maxTimestamps.get(e);r(n!==void 0),this.maxTimestamps.set(e,Math.max(t,n));let i=this.computeMinAndMaybeResolve();return this.conversion.state===`canceled`||this.conversion._pauseRequested||t>=this.conversion._executionUntil?!1:t-i>Pm}wait(e){let{promise:t,resolve:n}=T();return this.resolvers.push({timestamp:e,resolve:n}),t}closeTrack(e){this.maxTimestamps.delete(e),this.computeMinAndMaybeResolve()}resolveAll(){for(let e of this.resolvers)e.resolve();this.resolvers.length=0}computeMinAndMaybeResolve(){let e=1/0;for(let[,t]of this.maxTimestamps)e=Math.min(e,t);for(let t=0;t<this.resolvers.length;t++){let n=this.resolvers[t];n.timestamp-e<Pm&&(n.resolve(),this.resolvers.splice(t,1),t--)}return e}},Im=e({ADTS:()=>Rs,ALL_FORMATS:()=>Hs,ALL_TRACK_TYPES:()=>vm,AUDIO_CODECS:()=>F,AdtsInputFormat:()=>Os,AdtsOutputFormat:()=>mm,AppendOnlyStreamTarget:()=>Uf,AttachedFile:()=>St,AudioBufferSink:()=>Gl,AudioBufferSource:()=>Hp,AudioSample:()=>kc,AudioSampleResource:()=>Oc,AudioSampleSink:()=>Wl,AudioSampleSource:()=>Vp,AudioSource:()=>Rp,BaseMediaSampleSink:()=>Nl,BlobSource:()=>Ko,BufferSource:()=>Wo,BufferTarget:()=>zf,CanvasSink:()=>Vl,CanvasSource:()=>Ip,CmafOutputFormat:()=>sm,ConcurrentRunner:()=>vt,Conversion:()=>Mm,ConversionCanceledError:()=>Nm,CustomAudioDecoder:()=>hl,CustomAudioEncoder:()=>_l,CustomPathedSource:()=>Uo,CustomSource:()=>es,CustomVideoDecoder:()=>ml,CustomVideoEncoder:()=>gl,EncodedAudioPacketSource:()=>zp,EncodedPacket:()=>I,EncodedPacketSink:()=>jl,EncodedVideoPacketSource:()=>Ap,EventEmitter:()=>gt,FLAC:()=>zs,FilePathSource:()=>$o,FilePathTarget:()=>Wf,FlacInputFormat:()=>Ds,FlacOutputFormat:()=>hm,HLS:()=>Vs,HLS_FORMATS:()=>Us,HlsInputFormat:()=>As,HlsOutputFormat:()=>_m,Input:()=>au,InputAudioTrack:()=>Yl,InputDisposedError:()=>su,InputFormat:()=>vs,InputTrack:()=>Kl,InputVideoTrack:()=>Jl,IsobmffInputFormat:()=>ys,IsobmffOutputFormat:()=>am,LogLevel:()=>bt,Logging:()=>k,MATROSKA:()=>Ns,MP3:()=>Fs,MP4:()=>js,MPEG_TS:()=>Bs,MatroskaInputFormat:()=>Ss,MediaSource:()=>Dp,MediaStreamAudioTrackSource:()=>Up,MediaStreamVideoTrackSource:()=>Lp,MkvOutputFormat:()=>lm,MovOutputFormat:()=>cm,Mp3InputFormat:()=>ws,Mp3OutputFormat:()=>dm,Mp4InputFormat:()=>bs,Mp4OutputFormat:()=>om,MpegTsInputFormat:()=>ks,MpegTsOutputFormat:()=>gm,NON_PCM_AUDIO_CODECS:()=>lr,NullTarget:()=>Gf,OGG:()=>Ls,OggInputFormat:()=>Es,OggOutputFormat:()=>pm,Output:()=>Tm,OutputAudioTrack:()=>xm,OutputFormat:()=>im,OutputSubtitleTrack:()=>Sm,OutputTrack:()=>ym,OutputTrackGroup:()=>Cm,OutputVideoTrack:()=>bm,PCM_AUDIO_CODECS:()=>P,PathedSource:()=>Vo,PathedTarget:()=>qf,QTFF:()=>Ms,QUALITY_HIGH:()=>el,QUALITY_LOW:()=>Qc,QUALITY_MEDIUM:()=>$c,QUALITY_VERY_HIGH:()=>tl,QUALITY_VERY_LOW:()=>Zc,Quality:()=>z,QuickTimeInputFormat:()=>xs,RangedSource:()=>as,RangedTarget:()=>Kf,ReadableStreamSource:()=>ns,RichImageData:()=>xt,SUBTITLE_CODECS:()=>ur,Source:()=>zo,SourceRef:()=>Bo,StreamSource:()=>ts,StreamTarget:()=>Hf,SubtitleSource:()=>Zp,Target:()=>If,TextSubtitleSource:()=>Qp,UnsupportedInputFormatError:()=>ou,UrlSource:()=>Xo,VIDEO_CODECS:()=>N,VIDEO_SAMPLE_PIXEL_FORMATS:()=>sc,VideoSample:()=>lc,VideoSampleColorSpace:()=>gc,VideoSampleResource:()=>oc,VideoSampleSink:()=>Bl,VideoSampleSource:()=>Fp,VideoSource:()=>Op,WAVE:()=>Is,WEBM:()=>Ps,WavOutputFormat:()=>fm,WaveInputFormat:()=>Ts,WebMInputFormat:()=>Cs,WebMOutputFormat:()=>um,asc:()=>Xl,canDecode:()=>Ys,canDecodeAudio:()=>Zs,canDecodeVideo:()=>Xs,canEncode:()=>nl,canEncodeAudio:()=>il,canEncodeSubtitles:()=>ol,canEncodeVideo:()=>rl,desc:()=>Zl,getDecodableAudioCodecs:()=>ec,getDecodableCodecs:()=>Qs,getDecodableVideoCodecs:()=>$s,getEncodableAudioCodecs:()=>ll,getEncodableCodecs:()=>sl,getEncodableSubtitleCodecs:()=>ul,getEncodableVideoCodecs:()=>cl,getFirstEncodableAudioCodec:()=>fl,getFirstEncodableSubtitleCodec:()=>pl,getFirstEncodableVideoCodec:()=>dl,prefer:()=>Ql,registerDecoder:()=>Sl,registerEncoder:()=>Cl,registerVideoSampleTransformer:()=>dc});export{Im as t};
|