rx-player 4.4.1 → 4.5.0-dev.2026012301
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/CHANGELOG.md +16 -0
- package/README.md +50 -111
- package/VERSION +1 -1
- package/package.json +23 -9
- package/src/README.md +183 -293
- package/src/compat/disable_remote_playback_on_managed_media_source.ts +39 -0
- package/src/compat/eme/close_session.ts +3 -3
- package/src/compat/eme/custom_media_keys/ie11_media_keys.ts +2 -2
- package/src/compat/reset_media_element.ts +50 -0
- package/src/core/adaptive/adaptive_representation_selector.ts +3 -3
- package/src/core/cmcd/cmcd_data_builder.ts +3 -3
- package/src/core/{main/common → entry}/FreezeResolver.ts +7 -7
- package/src/core/{main → entry}/README.md +1 -1
- package/src/core/{main/worker → entry}/content_preparer.ts +181 -94
- package/src/core/{main/common → entry}/content_time_boundaries_observer.ts +16 -13
- package/src/core/{main/worker/worker_main.ts → entry/core_entry.ts} +258 -156
- package/src/core/{main/worker/worker_text_displayer_interface.ts → entry/core_text_displayer_interface.ts} +34 -31
- package/src/core/{main/common → entry}/create_content_time_boundaries_observer.ts +11 -11
- package/src/core/{main/common → entry}/get_buffered_data_per_media_buffer.ts +6 -6
- package/src/core/{main/common → entry}/get_thumbnail_data.ts +6 -6
- package/src/core/entry/index.ts +5 -0
- package/src/core/{main/common → entry}/synchronize_sinks_on_observation.ts +2 -2
- package/src/core/{main/worker → entry}/track_choice_setter.ts +7 -7
- package/src/core/entry/utils.ts +11 -0
- package/src/core/fetchers/manifest/manifest_fetcher.ts +11 -8
- package/src/core/fetchers/segment/__tests__/task_prioritizer.test.ts +10 -10
- package/src/core/fetchers/segment/segment_queue.ts +51 -15
- package/src/core/fetchers/segment/task_prioritizer.ts +2 -2
- package/src/core/fetchers/thumbnails/thumbnail_fetcher.ts +2 -2
- package/src/core/fetchers/utils/schedule_request.ts +2 -2
- package/src/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.ts +2 -2
- package/src/core/segment_sinks/implementations/text/text_segment_sink.ts +1 -1
- package/src/core/segment_sinks/implementations/types.ts +4 -1
- package/src/core/segment_sinks/segment_sinks_store.ts +10 -4
- package/src/core/stream/adaptation/adaptation_stream.ts +63 -29
- package/src/core/stream/orchestrator/stream_orchestrator.ts +25 -15
- package/src/core/stream/period/period_stream.ts +7 -5
- package/src/core/stream/representation/representation_stream.ts +22 -14
- package/src/core/stream/representation/types.ts +5 -0
- package/src/core/types.ts +644 -3
- package/src/experimental/features/__tests__/local.test.ts +11 -2
- package/src/experimental/features/__tests__/metaplaylist.test.ts +11 -2
- package/src/experimental/features/__tests__/multi_thread.test.ts +8 -3
- package/src/experimental/features/local.ts +7 -1
- package/src/experimental/features/metaplaylist.ts +7 -1
- package/src/experimental/features/multi_thread.ts +6 -2
- package/src/experimental/features/worker/index.ts +5 -0
- package/src/experimental/tools/DummyMediaElement/html5.ts +4 -4
- package/src/experimental/tools/DummyMediaElement/mse.ts +5 -5
- package/src/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.ts +2 -4
- package/src/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.ts +13 -11
- package/src/experimental/tools/createMetaplaylist/get_duration_from_manifest.ts +2 -2
- package/src/features/README.md +5 -0
- package/src/features/features_object.ts +1 -1
- package/src/features/list/__tests__/dash.test.ts +12 -3
- package/src/features/list/__tests__/smooth.test.ts +11 -2
- package/src/features/list/dash.ts +7 -1
- package/src/features/list/dash_wasm.ts +7 -1
- package/src/features/list/media_source_main.ts +7 -1
- package/src/features/list/smooth.ts +7 -1
- package/src/features/types.ts +23 -4
- package/src/importable_worker.ts +175 -0
- package/src/initialize_worker.ts +86 -0
- package/src/main_thread/README.md +8 -0
- package/src/main_thread/api/__tests__/option_utils.test.ts +154 -4
- package/src/main_thread/api/__tests__/public_api.test.ts +2 -2
- package/src/main_thread/api/option_utils.ts +45 -6
- package/src/main_thread/api/public_api.ts +372 -113
- package/src/main_thread/core_interface/README.md +22 -0
- package/src/main_thread/core_interface/base.ts +36 -0
- package/src/main_thread/core_interface/monothread.ts +46 -0
- package/src/main_thread/core_interface/multithread.ts +49 -0
- package/src/main_thread/core_interface/types.ts +5 -0
- package/src/main_thread/decrypt/__tests__/__global__/get_license.test.ts +1 -1
- package/src/main_thread/decrypt/__tests__/__global__/media_key_system_access.test.ts +1 -1
- package/src/main_thread/decrypt/__tests__/__global__/media_keys.test.ts +7 -7
- package/src/main_thread/decrypt/__tests__/__global__/server_certificate.test.ts +5 -5
- package/src/main_thread/decrypt/__tests__/find_key_system.test.ts +3 -3
- package/src/main_thread/decrypt/content_decryptor.ts +7 -4
- package/src/main_thread/decrypt/session_events_listener.ts +7 -7
- package/src/main_thread/init/directfile_content_initializer.ts +9 -6
- package/src/main_thread/init/media_source_content_initializer.ts +2071 -1153
- package/src/main_thread/init/types.ts +4 -1
- package/src/main_thread/init/utils/create_core_playback_observer.ts +3 -2
- package/src/main_thread/init/utils/get_loaded_reference.ts +3 -3
- package/src/main_thread/init/utils/initialize_content_decryption.ts +4 -4
- package/src/main_thread/init/utils/main_thread_text_displayer_interface.ts +2 -2
- package/src/main_thread/init/utils/rebuffering_controller.ts +16 -10
- package/src/main_thread/init/utils/stream_events_emitter/stream_events_emitter.ts +11 -6
- package/src/main_thread/init/utils/update_manifest_codec_support.ts +1 -1
- package/src/main_thread/render_thumbnail.ts +3 -3
- package/src/main_thread/text_displayer/html/html_text_displayer.ts +27 -17
- package/src/main_thread/text_displayer/types.ts +3 -1
- package/src/main_thread/tracks_store/track_dispatcher.ts +10 -7
- package/src/main_thread/tracks_store/tracks_store.ts +5 -5
- package/src/main_thread/types.ts +650 -0
- package/src/manifest/classes/__tests__/adaptation.test.ts +2 -2
- package/src/manifest/classes/__tests__/manifest.test.ts +6 -6
- package/src/manifest/classes/__tests__/period.test.ts +160 -173
- package/src/manifest/utils.ts +31 -4
- package/src/mse/main_media_source_interface.ts +37 -16
- package/src/mse/types.ts +19 -5
- package/src/mse/utils/end_of_stream.ts +6 -6
- package/src/mse/utils/media_source_duration_updater.ts +19 -10
- package/src/mse/worker_media_source_interface.ts +66 -46
- package/src/parsers/manifest/smooth/create_parser.ts +40 -34
- package/src/parsers/manifest/smooth/parse_C_nodes.ts +19 -8
- package/src/parsers/manifest/smooth/parse_protection_node.ts +17 -9
- package/src/parsers/manifest/smooth/utils/parseBoolean.ts +1 -1
- package/src/parsers/manifest/smooth/utils/reduceChildren.ts +10 -7
- package/src/playback_observer/{worker_playback_observer.ts → core_playback_observer.ts} +13 -13
- package/src/playback_observer/media_element_playback_observer.ts +6 -3
- package/src/public_types.ts +25 -5
- package/src/tools/TextTrackRenderer/text_track_renderer.ts +5 -2
- package/src/transports/dash/integrity_checks.ts +2 -2
- package/src/transports/smooth/pipelines.ts +25 -5
- package/src/utils/event_emitter.ts +35 -17
- package/src/utils/task_canceller.ts +64 -18
- package/src/worker_entry_point.ts +8 -6
- package/vitest.config.mjs +36 -29
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.d.ts +0 -4
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +0 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.js +0 -6
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.d.ts +0 -4
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.d.ts.map +0 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.js +0 -6
- package/dist/commonjs/__GENERATED_CODE/index.d.ts +0 -3
- package/dist/commonjs/__GENERATED_CODE/index.d.ts.map +0 -1
- package/dist/commonjs/__GENERATED_CODE/index.js +0 -7
- package/dist/commonjs/compat/add_class_name.d.ts +0 -23
- package/dist/commonjs/compat/add_class_name.d.ts.map +0 -1
- package/dist/commonjs/compat/add_class_name.js +0 -39
- package/dist/commonjs/compat/add_text_track.d.ts +0 -32
- package/dist/commonjs/compat/add_text_track.d.ts.map +0 -1
- package/dist/commonjs/compat/add_text_track.js +0 -52
- package/dist/commonjs/compat/browser_compatibility_types.d.ts +0 -384
- package/dist/commonjs/compat/browser_compatibility_types.d.ts.map +0 -1
- package/dist/commonjs/compat/browser_compatibility_types.js +0 -47
- package/dist/commonjs/compat/browser_version.d.ts +0 -25
- package/dist/commonjs/compat/browser_version.d.ts.map +0 -1
- package/dist/commonjs/compat/browser_version.js +0 -43
- package/dist/commonjs/compat/can_patch_isobmff.d.ts +0 -26
- package/dist/commonjs/compat/can_patch_isobmff.d.ts.map +0 -1
- package/dist/commonjs/compat/can_patch_isobmff.js +0 -32
- package/dist/commonjs/compat/can_preload_before_play.d.ts +0 -11
- package/dist/commonjs/compat/can_preload_before_play.d.ts.map +0 -1
- package/dist/commonjs/compat/can_preload_before_play.js +0 -23
- package/dist/commonjs/compat/can_rely_on_request_media_key_system_access.d.ts +0 -41
- package/dist/commonjs/compat/can_rely_on_request_media_key_system_access.d.ts.map +0 -1
- package/dist/commonjs/compat/can_rely_on_request_media_key_system_access.js +0 -56
- package/dist/commonjs/compat/can_rely_on_video_visibility_and_size.d.ts +0 -38
- package/dist/commonjs/compat/can_rely_on_video_visibility_and_size.d.ts.map +0 -1
- package/dist/commonjs/compat/can_rely_on_video_visibility_and_size.js +0 -52
- package/dist/commonjs/compat/can_reuse_media_keys.d.ts +0 -20
- package/dist/commonjs/compat/can_reuse_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/can_reuse_media_keys.js +0 -33
- package/dist/commonjs/compat/change_source_buffer_type.d.ts +0 -49
- package/dist/commonjs/compat/change_source_buffer_type.d.ts.map +0 -1
- package/dist/commonjs/compat/change_source_buffer_type.js +0 -40
- package/dist/commonjs/compat/clear_element_src.d.ts +0 -22
- package/dist/commonjs/compat/clear_element_src.d.ts.map +0 -1
- package/dist/commonjs/compat/clear_element_src.js +0 -56
- package/dist/commonjs/compat/eme/close_session.d.ts +0 -31
- package/dist/commonjs/compat/eme/close_session.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/close_session.js +0 -169
- package/dist/commonjs/compat/eme/constants.d.ts +0 -17
- package/dist/commonjs/compat/eme/constants.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/constants.js +0 -22
- package/dist/commonjs/compat/eme/custom_key_system_access.d.ts +0 -50
- package/dist/commonjs/compat/eme/custom_key_system_access.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_key_system_access.js +0 -49
- package/dist/commonjs/compat/eme/custom_media_keys/ie11_media_keys.d.ts +0 -32
- package/dist/commonjs/compat/eme/custom_media_keys/ie11_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/ie11_media_keys.js +0 -181
- package/dist/commonjs/compat/eme/custom_media_keys/index.d.ts +0 -7
- package/dist/commonjs/compat/eme/custom_media_keys/index.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/index.js +0 -16
- package/dist/commonjs/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts +0 -28
- package/dist/commonjs/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/moz_media_keys_constructor.js +0 -61
- package/dist/commonjs/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts +0 -44
- package/dist/commonjs/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/ms_media_keys_constructor.js +0 -28
- package/dist/commonjs/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts +0 -42
- package/dist/commonjs/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/old_webkit_media_keys.js +0 -195
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys.d.ts +0 -33
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys.js +0 -233
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts +0 -23
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys_constructor.js +0 -30
- package/dist/commonjs/compat/eme/eme-api-implementation.d.ts +0 -78
- package/dist/commonjs/compat/eme/eme-api-implementation.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/eme-api-implementation.js +0 -241
- package/dist/commonjs/compat/eme/generate_key_request.d.ts +0 -55
- package/dist/commonjs/compat/eme/generate_key_request.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/generate_key_request.js +0 -148
- package/dist/commonjs/compat/eme/get_init_data.d.ts +0 -60
- package/dist/commonjs/compat/eme/get_init_data.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/get_init_data.js +0 -113
- package/dist/commonjs/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts +0 -24
- package/dist/commonjs/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/get_uuid_kid_from_keystatus_kid.js +0 -36
- package/dist/commonjs/compat/eme/get_webkit_fairplay_initdata.d.ts +0 -26
- package/dist/commonjs/compat/eme/get_webkit_fairplay_initdata.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/get_webkit_fairplay_initdata.js +0 -57
- package/dist/commonjs/compat/eme/index.d.ts +0 -26
- package/dist/commonjs/compat/eme/index.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/index.js +0 -28
- package/dist/commonjs/compat/eme/load_session.d.ts +0 -31
- package/dist/commonjs/compat/eme/load_session.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/load_session.js +0 -102
- package/dist/commonjs/compat/eme/set_media_keys.d.ts +0 -10
- package/dist/commonjs/compat/eme/set_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/set_media_keys.js +0 -36
- package/dist/commonjs/compat/enable_audio_track.d.ts +0 -12
- package/dist/commonjs/compat/enable_audio_track.d.ts.map +0 -1
- package/dist/commonjs/compat/enable_audio_track.js +0 -29
- package/dist/commonjs/compat/env_detector.d.ts +0 -100
- package/dist/commonjs/compat/env_detector.d.ts.map +0 -1
- package/dist/commonjs/compat/env_detector.js +0 -189
- package/dist/commonjs/compat/event_listeners.d.ts +0 -175
- package/dist/commonjs/compat/event_listeners.d.ts.map +0 -1
- package/dist/commonjs/compat/event_listeners.js +0 -437
- package/dist/commonjs/compat/generate_init_data.d.ts +0 -14
- package/dist/commonjs/compat/generate_init_data.d.ts.map +0 -1
- package/dist/commonjs/compat/generate_init_data.js +0 -60
- package/dist/commonjs/compat/get_start_date.d.ts +0 -32
- package/dist/commonjs/compat/get_start_date.d.ts.map +0 -1
- package/dist/commonjs/compat/get_start_date.js +0 -47
- package/dist/commonjs/compat/has_issues_with_high_media_source_duration.d.ts +0 -22
- package/dist/commonjs/compat/has_issues_with_high_media_source_duration.d.ts.map +0 -1
- package/dist/commonjs/compat/has_issues_with_high_media_source_duration.js +0 -32
- package/dist/commonjs/compat/has_mse_in_worker.d.ts +0 -3
- package/dist/commonjs/compat/has_mse_in_worker.d.ts.map +0 -1
- package/dist/commonjs/compat/has_mse_in_worker.js +0 -6
- package/dist/commonjs/compat/has_webassembly.d.ts +0 -7
- package/dist/commonjs/compat/has_webassembly.d.ts.map +0 -1
- package/dist/commonjs/compat/has_webassembly.js +0 -8
- package/dist/commonjs/compat/has_worker_api.d.ts +0 -10
- package/dist/commonjs/compat/has_worker_api.d.ts.map +0 -1
- package/dist/commonjs/compat/has_worker_api.js +0 -17
- package/dist/commonjs/compat/is_codec_supported.d.ts +0 -28
- package/dist/commonjs/compat/is_codec_supported.d.ts.map +0 -1
- package/dist/commonjs/compat/is_codec_supported.js +0 -70
- package/dist/commonjs/compat/is_seeking_approximate.d.ts +0 -29
- package/dist/commonjs/compat/is_seeking_approximate.d.ts.map +0 -1
- package/dist/commonjs/compat/is_seeking_approximate.js +0 -36
- package/dist/commonjs/compat/is_vtt_cue.d.ts +0 -23
- package/dist/commonjs/compat/is_vtt_cue.d.ts.map +0 -1
- package/dist/commonjs/compat/is_vtt_cue.js +0 -27
- package/dist/commonjs/compat/make_vtt_cue.d.ts +0 -27
- package/dist/commonjs/compat/make_vtt_cue.d.ts.map +0 -1
- package/dist/commonjs/compat/make_vtt_cue.js +0 -47
- package/dist/commonjs/compat/may_media_element_fail_on_undecipherable_data.d.ts +0 -17
- package/dist/commonjs/compat/may_media_element_fail_on_undecipherable_data.d.ts.map +0 -1
- package/dist/commonjs/compat/may_media_element_fail_on_undecipherable_data.js +0 -25
- package/dist/commonjs/compat/on_height_width_change.d.ts +0 -34
- package/dist/commonjs/compat/on_height_width_change.d.ts.map +0 -1
- package/dist/commonjs/compat/on_height_width_change.js +0 -75
- package/dist/commonjs/compat/patch_webkit_source_buffer.d.ts +0 -17
- package/dist/commonjs/compat/patch_webkit_source_buffer.d.ts.map +0 -1
- package/dist/commonjs/compat/patch_webkit_source_buffer.js +0 -65
- package/dist/commonjs/compat/remove_cue.d.ts +0 -23
- package/dist/commonjs/compat/remove_cue.d.ts.map +0 -1
- package/dist/commonjs/compat/remove_cue.js +0 -66
- package/dist/commonjs/compat/should_await_set_media_keys.d.ts +0 -17
- package/dist/commonjs/compat/should_await_set_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/should_await_set_media_keys.js +0 -27
- package/dist/commonjs/compat/should_favour_custom_safari_EME.d.ts +0 -24
- package/dist/commonjs/compat/should_favour_custom_safari_EME.d.ts.map +0 -1
- package/dist/commonjs/compat/should_favour_custom_safari_EME.js +0 -37
- package/dist/commonjs/compat/should_reload_media_source_on_decipherability_update.d.ts +0 -27
- package/dist/commonjs/compat/should_reload_media_source_on_decipherability_update.d.ts.map +0 -1
- package/dist/commonjs/compat/should_reload_media_source_on_decipherability_update.js +0 -35
- package/dist/commonjs/compat/should_renew_media_key_system_access.d.ts +0 -22
- package/dist/commonjs/compat/should_renew_media_key_system_access.d.ts.map +0 -1
- package/dist/commonjs/compat/should_renew_media_key_system_access.js +0 -35
- package/dist/commonjs/compat/should_unset_media_keys.d.ts +0 -23
- package/dist/commonjs/compat/should_unset_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/should_unset_media_keys.js +0 -30
- package/dist/commonjs/compat/should_validate_metadata.d.ts +0 -23
- package/dist/commonjs/compat/should_validate_metadata.d.ts.map +0 -1
- package/dist/commonjs/compat/should_validate_metadata.js +0 -30
- package/dist/commonjs/compat/should_wait_for_data_before_loaded.d.ts +0 -25
- package/dist/commonjs/compat/should_wait_for_data_before_loaded.d.ts.map +0 -1
- package/dist/commonjs/compat/should_wait_for_data_before_loaded.js +0 -42
- package/dist/commonjs/compat/should_wait_for_have_enough_data.d.ts +0 -14
- package/dist/commonjs/compat/should_wait_for_have_enough_data.d.ts.map +0 -1
- package/dist/commonjs/compat/should_wait_for_have_enough_data.js +0 -22
- package/dist/commonjs/config.d.ts +0 -21
- package/dist/commonjs/config.d.ts.map +0 -1
- package/dist/commonjs/config.js +0 -73
- package/dist/commonjs/core/adaptive/adaptive_representation_selector.d.ts +0 -294
- package/dist/commonjs/core/adaptive/adaptive_representation_selector.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/adaptive_representation_selector.js +0 -411
- package/dist/commonjs/core/adaptive/buffer_based_chooser.d.ts +0 -90
- package/dist/commonjs/core/adaptive/buffer_based_chooser.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/buffer_based_chooser.js +0 -202
- package/dist/commonjs/core/adaptive/guess_based_chooser.d.ts +0 -96
- package/dist/commonjs/core/adaptive/guess_based_chooser.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/guess_based_chooser.js +0 -272
- package/dist/commonjs/core/adaptive/index.d.ts +0 -20
- package/dist/commonjs/core/adaptive/index.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/index.js +0 -19
- package/dist/commonjs/core/adaptive/network_analyzer.d.ts +0 -74
- package/dist/commonjs/core/adaptive/network_analyzer.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/network_analyzer.js +0 -355
- package/dist/commonjs/core/adaptive/utils/bandwidth_estimator.d.ts +0 -48
- package/dist/commonjs/core/adaptive/utils/bandwidth_estimator.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/bandwidth_estimator.js +0 -72
- package/dist/commonjs/core/adaptive/utils/ewma.d.ts +0 -40
- package/dist/commonjs/core/adaptive/utils/ewma.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/ewma.js +0 -53
- package/dist/commonjs/core/adaptive/utils/filter_by_bitrate.d.ts +0 -26
- package/dist/commonjs/core/adaptive/utils/filter_by_bitrate.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/filter_by_bitrate.js +0 -40
- package/dist/commonjs/core/adaptive/utils/filter_by_resolution.d.ts +0 -32
- package/dist/commonjs/core/adaptive/utils/filter_by_resolution.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/filter_by_resolution.js +0 -51
- package/dist/commonjs/core/adaptive/utils/get_buffer_levels.d.ts +0 -25
- package/dist/commonjs/core/adaptive/utils/get_buffer_levels.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/get_buffer_levels.js +0 -53
- package/dist/commonjs/core/adaptive/utils/last_estimate_storage.d.ts +0 -62
- package/dist/commonjs/core/adaptive/utils/last_estimate_storage.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/last_estimate_storage.js +0 -39
- package/dist/commonjs/core/adaptive/utils/pending_requests_store.d.ts +0 -111
- package/dist/commonjs/core/adaptive/utils/pending_requests_store.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/pending_requests_store.js +0 -79
- package/dist/commonjs/core/adaptive/utils/representation_score_calculator.d.ts +0 -105
- package/dist/commonjs/core/adaptive/utils/representation_score_calculator.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/representation_score_calculator.js +0 -121
- package/dist/commonjs/core/adaptive/utils/select_optimal_representation.d.ts +0 -28
- package/dist/commonjs/core/adaptive/utils/select_optimal_representation.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/select_optimal_representation.js +0 -39
- package/dist/commonjs/core/cmcd/cmcd_data_builder.d.ts +0 -133
- package/dist/commonjs/core/cmcd/cmcd_data_builder.d.ts.map +0 -1
- package/dist/commonjs/core/cmcd/cmcd_data_builder.js +0 -368
- package/dist/commonjs/core/cmcd/index.d.ts +0 -4
- package/dist/commonjs/core/cmcd/index.d.ts.map +0 -1
- package/dist/commonjs/core/cmcd/index.js +0 -4
- package/dist/commonjs/core/fetchers/cdn_prioritizer.d.ts +0 -108
- package/dist/commonjs/core/fetchers/cdn_prioritizer.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/cdn_prioritizer.js +0 -215
- package/dist/commonjs/core/fetchers/index.d.ts +0 -25
- package/dist/commonjs/core/fetchers/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/index.js +0 -26
- package/dist/commonjs/core/fetchers/manifest/index.d.ts +0 -20
- package/dist/commonjs/core/fetchers/manifest/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/manifest/index.js +0 -19
- package/dist/commonjs/core/fetchers/manifest/manifest_fetcher.d.ts +0 -236
- package/dist/commonjs/core/fetchers/manifest/manifest_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/manifest/manifest_fetcher.js +0 -657
- package/dist/commonjs/core/fetchers/segment/index.d.ts +0 -22
- package/dist/commonjs/core/fetchers/segment/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/index.js +0 -19
- package/dist/commonjs/core/fetchers/segment/initialization_segment_cache.d.ts +0 -43
- package/dist/commonjs/core/fetchers/segment/initialization_segment_cache.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/initialization_segment_cache.js +0 -53
- package/dist/commonjs/core/fetchers/segment/prioritized_segment_fetcher.d.ts +0 -40
- package/dist/commonjs/core/fetchers/segment/prioritized_segment_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/prioritized_segment_fetcher.js +0 -70
- package/dist/commonjs/core/fetchers/segment/segment_fetcher.d.ts +0 -200
- package/dist/commonjs/core/fetchers/segment/segment_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/segment_fetcher.js +0 -330
- package/dist/commonjs/core/fetchers/segment/segment_queue.d.ts +0 -230
- package/dist/commonjs/core/fetchers/segment/segment_queue.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/segment_queue.js +0 -445
- package/dist/commonjs/core/fetchers/segment/segment_queue_creator.d.ts +0 -98
- package/dist/commonjs/core/fetchers/segment/segment_queue_creator.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/segment_queue_creator.js +0 -77
- package/dist/commonjs/core/fetchers/segment/task_prioritizer.d.ts +0 -155
- package/dist/commonjs/core/fetchers/segment/task_prioritizer.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/task_prioritizer.js +0 -381
- package/dist/commonjs/core/fetchers/thumbnails/index.d.ts +0 -5
- package/dist/commonjs/core/fetchers/thumbnails/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/thumbnails/index.js +0 -4
- package/dist/commonjs/core/fetchers/thumbnails/thumbnail_fetcher.d.ts +0 -79
- package/dist/commonjs/core/fetchers/thumbnails/thumbnail_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/thumbnails/thumbnail_fetcher.js +0 -259
- package/dist/commonjs/core/fetchers/utils/error_selector.d.ts +0 -23
- package/dist/commonjs/core/fetchers/utils/error_selector.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/utils/error_selector.js +0 -34
- package/dist/commonjs/core/fetchers/utils/schedule_request.d.ts +0 -99
- package/dist/commonjs/core/fetchers/utils/schedule_request.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/utils/schedule_request.js +0 -391
- package/dist/commonjs/core/main/common/FreezeResolver.d.ts +0 -176
- package/dist/commonjs/core/main/common/FreezeResolver.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/FreezeResolver.js +0 -455
- package/dist/commonjs/core/main/common/content_time_boundaries_observer.d.ts +0 -192
- package/dist/commonjs/core/main/common/content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/content_time_boundaries_observer.js +0 -558
- package/dist/commonjs/core/main/common/create_content_time_boundaries_observer.d.ts +0 -28
- package/dist/commonjs/core/main/common/create_content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/create_content_time_boundaries_observer.js +0 -48
- package/dist/commonjs/core/main/common/get_buffered_data_per_media_buffer.d.ts +0 -15
- package/dist/commonjs/core/main/common/get_buffered_data_per_media_buffer.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/get_buffered_data_per_media_buffer.js +0 -37
- package/dist/commonjs/core/main/common/get_thumbnail_data.d.ts +0 -13
- package/dist/commonjs/core/main/common/get_thumbnail_data.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/get_thumbnail_data.js +0 -71
- package/dist/commonjs/core/main/common/synchronize_sinks_on_observation.d.ts +0 -11
- package/dist/commonjs/core/main/common/synchronize_sinks_on_observation.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/synchronize_sinks_on_observation.js +0 -20
- package/dist/commonjs/core/main/worker/content_preparer.d.ts +0 -176
- package/dist/commonjs/core/main/worker/content_preparer.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/content_preparer.js +0 -416
- package/dist/commonjs/core/main/worker/globals.d.ts +0 -14
- package/dist/commonjs/core/main/worker/globals.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/globals.js +0 -26
- package/dist/commonjs/core/main/worker/index.d.ts +0 -3
- package/dist/commonjs/core/main/worker/index.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/index.js +0 -4
- package/dist/commonjs/core/main/worker/send_message.d.ts +0 -4
- package/dist/commonjs/core/main/worker/send_message.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/send_message.js +0 -23
- package/dist/commonjs/core/main/worker/track_choice_setter.d.ts +0 -20
- package/dist/commonjs/core/main/worker/track_choice_setter.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/track_choice_setter.js +0 -152
- package/dist/commonjs/core/main/worker/worker_main.d.ts +0 -2
- package/dist/commonjs/core/main/worker/worker_main.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/worker_main.js +0 -946
- package/dist/commonjs/core/main/worker/worker_text_displayer_interface.d.ts +0 -65
- package/dist/commonjs/core/main/worker/worker_text_displayer_interface.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/worker_text_displayer_interface.js +0 -126
- package/dist/commonjs/core/segment_sinks/garbage_collector.d.ts +0 -44
- package/dist/commonjs/core/segment_sinks/garbage_collector.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/garbage_collector.js +0 -253
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts +0 -136
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.js +0 -362
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/index.d.ts +0 -18
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/index.js +0 -19
- package/dist/commonjs/core/segment_sinks/implementations/index.d.ts +0 -21
- package/dist/commonjs/core/segment_sinks/implementations/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/index.js +0 -35
- package/dist/commonjs/core/segment_sinks/implementations/text/index.d.ts +0 -5
- package/dist/commonjs/core/segment_sinks/implementations/text/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/text/index.js +0 -4
- package/dist/commonjs/core/segment_sinks/implementations/text/text_segment_sink.d.ts +0 -101
- package/dist/commonjs/core/segment_sinks/implementations/text/text_segment_sink.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/text/text_segment_sink.js +0 -291
- package/dist/commonjs/core/segment_sinks/implementations/types.d.ts +0 -308
- package/dist/commonjs/core/segment_sinks/implementations/types.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/types.js +0 -117
- package/dist/commonjs/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts +0 -30
- package/dist/commonjs/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/utils/manual_time_ranges.js +0 -67
- package/dist/commonjs/core/segment_sinks/index.d.ts +0 -25
- package/dist/commonjs/core/segment_sinks/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/index.js +0 -28
- package/dist/commonjs/core/segment_sinks/inventory/buffered_history.d.ts +0 -90
- package/dist/commonjs/core/segment_sinks/inventory/buffered_history.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/buffered_history.js +0 -114
- package/dist/commonjs/core/segment_sinks/inventory/index.d.ts +0 -24
- package/dist/commonjs/core/segment_sinks/inventory/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/index.js +0 -23
- package/dist/commonjs/core/segment_sinks/inventory/segment_inventory.d.ts +0 -240
- package/dist/commonjs/core/segment_sinks/inventory/segment_inventory.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/segment_inventory.js +0 -1124
- package/dist/commonjs/core/segment_sinks/inventory/types.d.ts +0 -33
- package/dist/commonjs/core/segment_sinks/inventory/types.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/types.js +0 -17
- package/dist/commonjs/core/segment_sinks/inventory/utils.d.ts +0 -34
- package/dist/commonjs/core/segment_sinks/inventory/utils.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/utils.js +0 -74
- package/dist/commonjs/core/segment_sinks/segment_sinks_store.d.ts +0 -198
- package/dist/commonjs/core/segment_sinks/segment_sinks_store.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/segment_sinks_store.js +0 -363
- package/dist/commonjs/core/stream/adaptation/adaptation_stream.d.ts +0 -34
- package/dist/commonjs/core/stream/adaptation/adaptation_stream.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/adaptation_stream.js +0 -563
- package/dist/commonjs/core/stream/adaptation/get_representations_switch_strategy.d.ts +0 -54
- package/dist/commonjs/core/stream/adaptation/get_representations_switch_strategy.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/get_representations_switch_strategy.js +0 -147
- package/dist/commonjs/core/stream/adaptation/index.d.ts +0 -19
- package/dist/commonjs/core/stream/adaptation/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/index.js +0 -19
- package/dist/commonjs/core/stream/adaptation/types.d.ts +0 -200
- package/dist/commonjs/core/stream/adaptation/types.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/types.js +0 -2
- package/dist/commonjs/core/stream/index.d.ts +0 -23
- package/dist/commonjs/core/stream/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/index.js +0 -19
- package/dist/commonjs/core/stream/orchestrator/get_time_ranges_for_content.d.ts +0 -31
- package/dist/commonjs/core/stream/orchestrator/get_time_ranges_for_content.d.ts.map +0 -1
- package/dist/commonjs/core/stream/orchestrator/get_time_ranges_for_content.js +0 -119
- package/dist/commonjs/core/stream/orchestrator/index.d.ts +0 -20
- package/dist/commonjs/core/stream/orchestrator/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/orchestrator/index.js +0 -19
- package/dist/commonjs/core/stream/orchestrator/stream_orchestrator.d.ts +0 -176
- package/dist/commonjs/core/stream/orchestrator/stream_orchestrator.d.ts.map +0 -1
- package/dist/commonjs/core/stream/orchestrator/stream_orchestrator.js +0 -676
- package/dist/commonjs/core/stream/period/index.d.ts +0 -19
- package/dist/commonjs/core/stream/period/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/index.js +0 -19
- package/dist/commonjs/core/stream/period/period_stream.d.ts +0 -50
- package/dist/commonjs/core/stream/period/period_stream.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/period_stream.js +0 -545
- package/dist/commonjs/core/stream/period/types.d.ts +0 -120
- package/dist/commonjs/core/stream/period/types.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/types.js +0 -2
- package/dist/commonjs/core/stream/period/utils/get_adaptation_switch_strategy.d.ts +0 -68
- package/dist/commonjs/core/stream/period/utils/get_adaptation_switch_strategy.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/utils/get_adaptation_switch_strategy.js +0 -167
- package/dist/commonjs/core/stream/representation/index.d.ts +0 -19
- package/dist/commonjs/core/stream/representation/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/index.js +0 -19
- package/dist/commonjs/core/stream/representation/representation_stream.d.ts +0 -54
- package/dist/commonjs/core/stream/representation/representation_stream.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/representation_stream.js +0 -421
- package/dist/commonjs/core/stream/representation/types.d.ts +0 -314
- package/dist/commonjs/core/stream/representation/types.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/types.js +0 -2
- package/dist/commonjs/core/stream/representation/utils/append_segment_to_buffer.d.ts +0 -36
- package/dist/commonjs/core/stream/representation/utils/append_segment_to_buffer.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/append_segment_to_buffer.js +0 -137
- package/dist/commonjs/core/stream/representation/utils/check_for_discontinuity.d.ts +0 -54
- package/dist/commonjs/core/stream/representation/utils/check_for_discontinuity.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/check_for_discontinuity.js +0 -248
- package/dist/commonjs/core/stream/representation/utils/get_buffer_status.d.ts +0 -73
- package/dist/commonjs/core/stream/representation/utils/get_buffer_status.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/get_buffer_status.js +0 -228
- package/dist/commonjs/core/stream/representation/utils/get_needed_segments.d.ts +0 -92
- package/dist/commonjs/core/stream/representation/utils/get_needed_segments.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/get_needed_segments.js +0 -480
- package/dist/commonjs/core/stream/representation/utils/get_segment_priority.d.ts +0 -29
- package/dist/commonjs/core/stream/representation/utils/get_segment_priority.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/get_segment_priority.js +0 -41
- package/dist/commonjs/core/stream/representation/utils/push_init_segment.d.ts +0 -42
- package/dist/commonjs/core/stream/representation/utils/push_init_segment.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/push_init_segment.js +0 -86
- package/dist/commonjs/core/stream/representation/utils/push_media_segment.d.ts +0 -43
- package/dist/commonjs/core/stream/representation/utils/push_media_segment.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/push_media_segment.js +0 -110
- package/dist/commonjs/core/types.d.ts +0 -9
- package/dist/commonjs/core/types.d.ts.map +0 -1
- package/dist/commonjs/core/types.js +0 -2
- package/dist/commonjs/default_config.d.ts +0 -1200
- package/dist/commonjs/default_config.d.ts.map +0 -1
- package/dist/commonjs/default_config.js +0 -1236
- package/dist/commonjs/errors/custom_loader_error.d.ts +0 -36
- package/dist/commonjs/errors/custom_loader_error.d.ts.map +0 -1
- package/dist/commonjs/errors/custom_loader_error.js +0 -60
- package/dist/commonjs/errors/encrypted_media_error.d.ts +0 -72
- package/dist/commonjs/errors/encrypted_media_error.d.ts.map +0 -1
- package/dist/commonjs/errors/encrypted_media_error.js +0 -76
- package/dist/commonjs/errors/error_codes.d.ts +0 -33
- package/dist/commonjs/errors/error_codes.d.ts.map +0 -1
- package/dist/commonjs/errors/error_codes.js +0 -72
- package/dist/commonjs/errors/error_message.d.ts +0 -23
- package/dist/commonjs/errors/error_message.d.ts.map +0 -1
- package/dist/commonjs/errors/error_message.js +0 -27
- package/dist/commonjs/errors/format_error.d.ts +0 -21
- package/dist/commonjs/errors/format_error.d.ts.map +0 -1
- package/dist/commonjs/errors/format_error.js +0 -33
- package/dist/commonjs/errors/index.d.ts +0 -32
- package/dist/commonjs/errors/index.d.ts.map +0 -1
- package/dist/commonjs/errors/index.js +0 -38
- package/dist/commonjs/errors/is_known_error.d.ts +0 -23
- package/dist/commonjs/errors/is_known_error.d.ts.map +0 -1
- package/dist/commonjs/errors/is_known_error.js +0 -35
- package/dist/commonjs/errors/media_error.d.ts +0 -60
- package/dist/commonjs/errors/media_error.d.ts.map +0 -1
- package/dist/commonjs/errors/media_error.js +0 -74
- package/dist/commonjs/errors/network_error.d.ts +0 -59
- package/dist/commonjs/errors/network_error.d.ts.map +0 -1
- package/dist/commonjs/errors/network_error.js +0 -86
- package/dist/commonjs/errors/other_error.d.ts +0 -47
- package/dist/commonjs/errors/other_error.d.ts.map +0 -1
- package/dist/commonjs/errors/other_error.js +0 -72
- package/dist/commonjs/errors/source_buffer_error.d.ts +0 -40
- package/dist/commonjs/errors/source_buffer_error.d.ts.map +0 -1
- package/dist/commonjs/errors/source_buffer_error.js +0 -63
- package/dist/commonjs/errors/worker_initialization_error.d.ts +0 -19
- package/dist/commonjs/errors/worker_initialization_error.d.ts.map +0 -1
- package/dist/commonjs/errors/worker_initialization_error.js +0 -42
- package/dist/commonjs/experimental/features/index.d.ts +0 -19
- package/dist/commonjs/experimental/features/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/index.js +0 -24
- package/dist/commonjs/experimental/features/local.d.ts +0 -20
- package/dist/commonjs/experimental/features/local.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/local.js +0 -25
- package/dist/commonjs/experimental/features/metaplaylist.d.ts +0 -20
- package/dist/commonjs/experimental/features/metaplaylist.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/metaplaylist.js +0 -25
- package/dist/commonjs/experimental/features/multi_thread.d.ts +0 -9
- package/dist/commonjs/experimental/features/multi_thread.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/multi_thread.js +0 -12
- package/dist/commonjs/experimental/index.d.ts +0 -3
- package/dist/commonjs/experimental/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/index.js +0 -5
- package/dist/commonjs/experimental/tools/DummyMediaElement/eme.d.ts +0 -225
- package/dist/commonjs/experimental/tools/DummyMediaElement/eme.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/eme.js +0 -879
- package/dist/commonjs/experimental/tools/DummyMediaElement/html5.d.ts +0 -376
- package/dist/commonjs/experimental/tools/DummyMediaElement/html5.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/html5.js +0 -970
- package/dist/commonjs/experimental/tools/DummyMediaElement/index.d.ts +0 -3
- package/dist/commonjs/experimental/tools/DummyMediaElement/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/index.js +0 -4
- package/dist/commonjs/experimental/tools/DummyMediaElement/mse.d.ts +0 -217
- package/dist/commonjs/experimental/tools/DummyMediaElement/mse.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/mse.js +0 -702
- package/dist/commonjs/experimental/tools/DummyMediaElement/utils.d.ts +0 -33
- package/dist/commonjs/experimental/tools/DummyMediaElement/utils.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/utils.js +0 -510
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/dash.d.ts +0 -18
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/dash.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/dash.js +0 -23
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts +0 -18
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/metaplaylist.js +0 -23
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/index.d.ts +0 -19
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/index.js +0 -22
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts +0 -27
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/load_and_push_segment.js +0 -63
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts +0 -27
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.js +0 -74
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts +0 -30
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.js +0 -43
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/types.d.ts +0 -26
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/types.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/types.js +0 -17
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts +0 -55
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.js +0 -385
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts +0 -25
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.js +0 -50
- package/dist/commonjs/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts +0 -24
- package/dist/commonjs/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/createMetaplaylist/get_duration_from_manifest.js +0 -163
- package/dist/commonjs/experimental/tools/createMetaplaylist/index.d.ts +0 -31
- package/dist/commonjs/experimental/tools/createMetaplaylist/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/createMetaplaylist/index.js +0 -53
- package/dist/commonjs/experimental/tools/index.d.ts +0 -20
- package/dist/commonjs/experimental/tools/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/index.js +0 -24
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/api.d.ts +0 -73
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/api.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/api.js +0 -286
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/index.d.ts +0 -19
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/index.js +0 -19
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/log.d.ts +0 -19
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/log.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/log.js +0 -20
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts +0 -21
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.js +0 -112
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts +0 -22
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.js +0 -117
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts +0 -30
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.js +0 -97
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts +0 -24
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.js +0 -184
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts +0 -22
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.js +0 -52
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts +0 -22
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.js +0 -39
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/types.d.ts +0 -56
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/types.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/types.js +0 -17
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/utils.d.ts +0 -35
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/utils.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/utils.js +0 -104
- package/dist/commonjs/features/add_features.d.ts +0 -21
- package/dist/commonjs/features/add_features.d.ts.map +0 -1
- package/dist/commonjs/features/add_features.js +0 -59
- package/dist/commonjs/features/features_object.d.ts +0 -23
- package/dist/commonjs/features/features_object.d.ts.map +0 -1
- package/dist/commonjs/features/features_object.js +0 -35
- package/dist/commonjs/features/index.d.ts +0 -36
- package/dist/commonjs/features/index.d.ts.map +0 -1
- package/dist/commonjs/features/index.js +0 -36
- package/dist/commonjs/features/list/dash.d.ts +0 -24
- package/dist/commonjs/features/list/dash.d.ts.map +0 -1
- package/dist/commonjs/features/list/dash.js +0 -33
- package/dist/commonjs/features/list/dash_wasm.d.ts +0 -24
- package/dist/commonjs/features/list/dash_wasm.d.ts.map +0 -1
- package/dist/commonjs/features/list/dash_wasm.js +0 -36
- package/dist/commonjs/features/list/debug_element.d.ts +0 -9
- package/dist/commonjs/features/list/debug_element.d.ts.map +0 -1
- package/dist/commonjs/features/list/debug_element.js +0 -12
- package/dist/commonjs/features/list/directfile.d.ts +0 -25
- package/dist/commonjs/features/list/directfile.d.ts.map +0 -1
- package/dist/commonjs/features/list/directfile.js +0 -29
- package/dist/commonjs/features/list/eme.d.ts +0 -24
- package/dist/commonjs/features/list/eme.d.ts.map +0 -1
- package/dist/commonjs/features/list/eme.js +0 -27
- package/dist/commonjs/features/list/html_sami_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_sami_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_sami_parser.js +0 -29
- package/dist/commonjs/features/list/html_srt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_srt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_srt_parser.js +0 -29
- package/dist/commonjs/features/list/html_text_buffer.d.ts +0 -24
- package/dist/commonjs/features/list/html_text_buffer.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_text_buffer.js +0 -27
- package/dist/commonjs/features/list/html_ttml_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_ttml_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_ttml_parser.js +0 -29
- package/dist/commonjs/features/list/html_vtt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_vtt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_vtt_parser.js +0 -30
- package/dist/commonjs/features/list/index.d.ts +0 -33
- package/dist/commonjs/features/list/index.d.ts.map +0 -1
- package/dist/commonjs/features/list/index.js +0 -52
- package/dist/commonjs/features/list/media_source_main.d.ts +0 -9
- package/dist/commonjs/features/list/media_source_main.d.ts.map +0 -1
- package/dist/commonjs/features/list/media_source_main.js +0 -12
- package/dist/commonjs/features/list/native_sami_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_sami_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_sami_parser.js +0 -29
- package/dist/commonjs/features/list/native_srt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_srt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_srt_parser.js +0 -29
- package/dist/commonjs/features/list/native_text_buffer.d.ts +0 -24
- package/dist/commonjs/features/list/native_text_buffer.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_text_buffer.js +0 -27
- package/dist/commonjs/features/list/native_ttml_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_ttml_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_ttml_parser.js +0 -29
- package/dist/commonjs/features/list/native_vtt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_vtt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_vtt_parser.js +0 -30
- package/dist/commonjs/features/list/smooth.d.ts +0 -24
- package/dist/commonjs/features/list/smooth.d.ts.map +0 -1
- package/dist/commonjs/features/list/smooth.js +0 -31
- package/dist/commonjs/features/types.d.ts +0 -146
- package/dist/commonjs/features/types.d.ts.map +0 -1
- package/dist/commonjs/features/types.js +0 -17
- package/dist/commonjs/index.d.ts +0 -18
- package/dist/commonjs/index.d.ts.map +0 -1
- package/dist/commonjs/index.js +0 -44
- package/dist/commonjs/log.d.ts +0 -19
- package/dist/commonjs/log.d.ts.map +0 -1
- package/dist/commonjs/log.js +0 -21
- package/dist/commonjs/main_thread/api/debug/buffer_graph.d.ts +0 -29
- package/dist/commonjs/main_thread/api/debug/buffer_graph.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/buffer_graph.js +0 -213
- package/dist/commonjs/main_thread/api/debug/buffer_size_graph.d.ts +0 -11
- package/dist/commonjs/main_thread/api/debug/buffer_size_graph.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/buffer_size_graph.js +0 -131
- package/dist/commonjs/main_thread/api/debug/constants.d.ts +0 -3
- package/dist/commonjs/main_thread/api/debug/constants.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/constants.js +0 -5
- package/dist/commonjs/main_thread/api/debug/index.d.ts +0 -3
- package/dist/commonjs/main_thread/api/debug/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/index.js +0 -4
- package/dist/commonjs/main_thread/api/debug/modules/general_info.d.ts +0 -4
- package/dist/commonjs/main_thread/api/debug/modules/general_info.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/modules/general_info.js +0 -236
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_content.d.ts +0 -5
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_content.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_content.js +0 -194
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_size.d.ts +0 -4
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_size.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_size.js +0 -38
- package/dist/commonjs/main_thread/api/debug/render.d.ts +0 -4
- package/dist/commonjs/main_thread/api/debug/render.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/render.js +0 -35
- package/dist/commonjs/main_thread/api/debug/utils.d.ts +0 -40
- package/dist/commonjs/main_thread/api/debug/utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/utils.js +0 -85
- package/dist/commonjs/main_thread/api/index.d.ts +0 -18
- package/dist/commonjs/main_thread/api/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/index.js +0 -19
- package/dist/commonjs/main_thread/api/option_utils.d.ts +0 -162
- package/dist/commonjs/main_thread/api/option_utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/option_utils.js +0 -360
- package/dist/commonjs/main_thread/api/public_api.d.ts +0 -995
- package/dist/commonjs/main_thread/api/public_api.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/public_api.js +0 -2908
- package/dist/commonjs/main_thread/api/utils.d.ts +0 -67
- package/dist/commonjs/main_thread/api/utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/utils.js +0 -186
- package/dist/commonjs/main_thread/decrypt/clear_on_stop.d.ts +0 -24
- package/dist/commonjs/main_thread/decrypt/clear_on_stop.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/clear_on_stop.js +0 -91
- package/dist/commonjs/main_thread/decrypt/content_decryptor.d.ts +0 -237
- package/dist/commonjs/main_thread/decrypt/content_decryptor.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/content_decryptor.js +0 -1169
- package/dist/commonjs/main_thread/decrypt/create_or_load_session.d.ts +0 -65
- package/dist/commonjs/main_thread/decrypt/create_or_load_session.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/create_or_load_session.js +0 -140
- package/dist/commonjs/main_thread/decrypt/create_session.d.ts +0 -55
- package/dist/commonjs/main_thread/decrypt/create_session.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/create_session.js +0 -217
- package/dist/commonjs/main_thread/decrypt/dispose_decryption_resources.d.ts +0 -23
- package/dist/commonjs/main_thread/decrypt/dispose_decryption_resources.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/dispose_decryption_resources.js +0 -67
- package/dist/commonjs/main_thread/decrypt/find_key_system.d.ts +0 -86
- package/dist/commonjs/main_thread/decrypt/find_key_system.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/find_key_system.js +0 -594
- package/dist/commonjs/main_thread/decrypt/get_key_system_configuration.d.ts +0 -24
- package/dist/commonjs/main_thread/decrypt/get_key_system_configuration.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/get_key_system_configuration.js +0 -35
- package/dist/commonjs/main_thread/decrypt/get_media_keys.d.ts +0 -55
- package/dist/commonjs/main_thread/decrypt/get_media_keys.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/get_media_keys.js +0 -178
- package/dist/commonjs/main_thread/decrypt/index.d.ts +0 -27
- package/dist/commonjs/main_thread/decrypt/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/index.js +0 -45
- package/dist/commonjs/main_thread/decrypt/init_media_keys.d.ts +0 -30
- package/dist/commonjs/main_thread/decrypt/init_media_keys.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/init_media_keys.js +0 -88
- package/dist/commonjs/main_thread/decrypt/session_events_listener.d.ts +0 -77
- package/dist/commonjs/main_thread/decrypt/session_events_listener.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/session_events_listener.js +0 -364
- package/dist/commonjs/main_thread/decrypt/set_server_certificate.d.ts +0 -58
- package/dist/commonjs/main_thread/decrypt/set_server_certificate.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/set_server_certificate.js +0 -158
- package/dist/commonjs/main_thread/decrypt/types.d.ts +0 -380
- package/dist/commonjs/main_thread/decrypt/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/types.js +0 -58
- package/dist/commonjs/main_thread/decrypt/utils/are_init_values_compatible.d.ts +0 -35
- package/dist/commonjs/main_thread/decrypt/utils/are_init_values_compatible.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/are_init_values_compatible.js +0 -144
- package/dist/commonjs/main_thread/decrypt/utils/check_key_statuses.d.ts +0 -54
- package/dist/commonjs/main_thread/decrypt/utils/check_key_statuses.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/check_key_statuses.js +0 -228
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts +0 -27
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_loaded_sessions.js +0 -92
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts +0 -33
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_stored_persistent_info.js +0 -46
- package/dist/commonjs/main_thread/decrypt/utils/get_drm_system_id.d.ts +0 -21
- package/dist/commonjs/main_thread/decrypt/utils/get_drm_system_id.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/get_drm_system_id.js +0 -40
- package/dist/commonjs/main_thread/decrypt/utils/init_data_values_container.d.ts +0 -70
- package/dist/commonjs/main_thread/decrypt/utils/init_data_values_container.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/init_data_values_container.js +0 -137
- package/dist/commonjs/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts +0 -14
- package/dist/commonjs/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/is_compatible_codec_supported.js +0 -53
- package/dist/commonjs/main_thread/decrypt/utils/is_session_usable.d.ts +0 -25
- package/dist/commonjs/main_thread/decrypt/utils/is_session_usable.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/is_session_usable.js +0 -57
- package/dist/commonjs/main_thread/decrypt/utils/key_id_comparison.d.ts +0 -32
- package/dist/commonjs/main_thread/decrypt/utils/key_id_comparison.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/key_id_comparison.js +0 -95
- package/dist/commonjs/main_thread/decrypt/utils/key_session_record.d.ts +0 -105
- package/dist/commonjs/main_thread/decrypt/utils/key_session_record.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/key_session_record.js +0 -189
- package/dist/commonjs/main_thread/decrypt/utils/loaded_sessions_store.d.ts +0 -214
- package/dist/commonjs/main_thread/decrypt/utils/loaded_sessions_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/loaded_sessions_store.js +0 -535
- package/dist/commonjs/main_thread/decrypt/utils/media_keys_attacher.d.ts +0 -85
- package/dist/commonjs/main_thread/decrypt/utils/media_keys_attacher.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/media_keys_attacher.js +0 -286
- package/dist/commonjs/main_thread/decrypt/utils/persistent_sessions_store.d.ts +0 -93
- package/dist/commonjs/main_thread/decrypt/utils/persistent_sessions_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/persistent_sessions_store.js +0 -404
- package/dist/commonjs/main_thread/decrypt/utils/serializable_bytes.d.ts +0 -45
- package/dist/commonjs/main_thread/decrypt/utils/serializable_bytes.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/serializable_bytes.js +0 -50
- package/dist/commonjs/main_thread/decrypt/utils/server_certificate_store.d.ts +0 -65
- package/dist/commonjs/main_thread/decrypt/utils/server_certificate_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/server_certificate_store.js +0 -123
- package/dist/commonjs/main_thread/init/directfile_content_initializer.d.ts +0 -113
- package/dist/commonjs/main_thread/init/directfile_content_initializer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/directfile_content_initializer.js +0 -298
- package/dist/commonjs/main_thread/init/index.d.ts +0 -18
- package/dist/commonjs/main_thread/init/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/index.js +0 -20
- package/dist/commonjs/main_thread/init/media_source_content_initializer.d.ts +0 -260
- package/dist/commonjs/main_thread/init/media_source_content_initializer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/media_source_content_initializer.js +0 -1142
- package/dist/commonjs/main_thread/init/multi_thread_content_initializer.d.ts +0 -308
- package/dist/commonjs/main_thread/init/multi_thread_content_initializer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/multi_thread_content_initializer.js +0 -1713
- package/dist/commonjs/main_thread/init/send_message.d.ts +0 -3
- package/dist/commonjs/main_thread/init/send_message.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/send_message.js +0 -13
- package/dist/commonjs/main_thread/init/types.d.ts +0 -237
- package/dist/commonjs/main_thread/init/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/types.js +0 -53
- package/dist/commonjs/main_thread/init/utils/create_core_playback_observer.d.ts +0 -96
- package/dist/commonjs/main_thread/init/utils/create_core_playback_observer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/create_core_playback_observer.js +0 -112
- package/dist/commonjs/main_thread/init/utils/create_media_source.d.ts +0 -54
- package/dist/commonjs/main_thread/init/utils/create_media_source.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/create_media_source.js +0 -143
- package/dist/commonjs/main_thread/init/utils/get_initial_time.d.ts +0 -77
- package/dist/commonjs/main_thread/init/utils/get_initial_time.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/get_initial_time.js +0 -152
- package/dist/commonjs/main_thread/init/utils/get_loaded_reference.d.ts +0 -28
- package/dist/commonjs/main_thread/init/utils/get_loaded_reference.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/get_loaded_reference.js +0 -66
- package/dist/commonjs/main_thread/init/utils/initial_seek_and_play.d.ts +0 -63
- package/dist/commonjs/main_thread/init/utils/initial_seek_and_play.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/initial_seek_and_play.js +0 -228
- package/dist/commonjs/main_thread/init/utils/initialize_content_decryption.d.ts +0 -99
- package/dist/commonjs/main_thread/init/utils/initialize_content_decryption.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/initialize_content_decryption.js +0 -121
- package/dist/commonjs/main_thread/init/utils/main_thread_text_displayer_interface.d.ts +0 -36
- package/dist/commonjs/main_thread/init/utils/main_thread_text_displayer_interface.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/main_thread_text_displayer_interface.js +0 -54
- package/dist/commonjs/main_thread/init/utils/rebuffering_controller.d.ts +0 -115
- package/dist/commonjs/main_thread/init/utils/rebuffering_controller.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/rebuffering_controller.js +0 -490
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts +0 -40
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/are_same_stream_events.js +0 -35
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/index.d.ts +0 -19
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/index.js +0 -19
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts +0 -26
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.js +0 -129
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts +0 -52
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/stream_events_emitter.js +0 -228
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/types.d.ts +0 -42
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/types.js +0 -17
- package/dist/commonjs/main_thread/init/utils/throw_on_media_error.d.ts +0 -25
- package/dist/commonjs/main_thread/init/utils/throw_on_media_error.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/throw_on_media_error.js +0 -66
- package/dist/commonjs/main_thread/init/utils/update_manifest_codec_support.d.ts +0 -35
- package/dist/commonjs/main_thread/init/utils/update_manifest_codec_support.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/update_manifest_codec_support.js +0 -222
- package/dist/commonjs/main_thread/render_thumbnail.d.ts +0 -27
- package/dist/commonjs/main_thread/render_thumbnail.d.ts.map +0 -1
- package/dist/commonjs/main_thread/render_thumbnail.js +0 -266
- package/dist/commonjs/main_thread/text_displayer/html/html_parsers.d.ts +0 -20
- package/dist/commonjs/main_thread/text_displayer/html/html_parsers.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/html_parsers.js +0 -25
- package/dist/commonjs/main_thread/text_displayer/html/html_text_displayer.d.ts +0 -103
- package/dist/commonjs/main_thread/text_displayer/html/html_text_displayer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/html_text_displayer.js +0 -368
- package/dist/commonjs/main_thread/text_displayer/html/index.d.ts +0 -3
- package/dist/commonjs/main_thread/text_displayer/html/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/index.js +0 -4
- package/dist/commonjs/main_thread/text_displayer/html/text_track_cues_store.d.ts +0 -66
- package/dist/commonjs/main_thread/text_displayer/html/text_track_cues_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/text_track_cues_store.js +0 -408
- package/dist/commonjs/main_thread/text_displayer/html/update_proportional_elements.d.ts +0 -16
- package/dist/commonjs/main_thread/text_displayer/html/update_proportional_elements.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/update_proportional_elements.js +0 -64
- package/dist/commonjs/main_thread/text_displayer/html/utils.d.ts +0 -55
- package/dist/commonjs/main_thread/text_displayer/html/utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/utils.js +0 -141
- package/dist/commonjs/main_thread/text_displayer/index.d.ts +0 -3
- package/dist/commonjs/main_thread/text_displayer/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/index.js +0 -2
- package/dist/commonjs/main_thread/text_displayer/manual_time_ranges.d.ts +0 -15
- package/dist/commonjs/main_thread/text_displayer/manual_time_ranges.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/manual_time_ranges.js +0 -48
- package/dist/commonjs/main_thread/text_displayer/native/index.d.ts +0 -3
- package/dist/commonjs/main_thread/text_displayer/native/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/native/index.js +0 -4
- package/dist/commonjs/main_thread/text_displayer/native/native_parsers.d.ts +0 -16
- package/dist/commonjs/main_thread/text_displayer/native/native_parsers.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/native/native_parsers.js +0 -25
- package/dist/commonjs/main_thread/text_displayer/native/native_text_displayer.d.ts +0 -59
- package/dist/commonjs/main_thread/text_displayer/native/native_text_displayer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/native/native_text_displayer.js +0 -226
- package/dist/commonjs/main_thread/text_displayer/types.d.ts +0 -72
- package/dist/commonjs/main_thread/text_displayer/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/types.js +0 -2
- package/dist/commonjs/main_thread/tracks_store/index.d.ts +0 -21
- package/dist/commonjs/main_thread/tracks_store/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/index.js +0 -34
- package/dist/commonjs/main_thread/tracks_store/media_element_tracks_store.d.ts +0 -208
- package/dist/commonjs/main_thread/tracks_store/media_element_tracks_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/media_element_tracks_store.js +0 -709
- package/dist/commonjs/main_thread/tracks_store/track_dispatcher.d.ts +0 -105
- package/dist/commonjs/main_thread/tracks_store/track_dispatcher.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/track_dispatcher.js +0 -176
- package/dist/commonjs/main_thread/tracks_store/tracks_store.d.ts +0 -538
- package/dist/commonjs/main_thread/tracks_store/tracks_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/tracks_store.js +0 -1497
- package/dist/commonjs/main_thread/types.d.ts +0 -6
- package/dist/commonjs/main_thread/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/types.js +0 -2
- package/dist/commonjs/manifest/classes/adaptation.d.ts +0 -135
- package/dist/commonjs/manifest/classes/adaptation.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/adaptation.js +0 -260
- package/dist/commonjs/manifest/classes/codec_support_cache.d.ts +0 -45
- package/dist/commonjs/manifest/classes/codec_support_cache.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/codec_support_cache.js +0 -84
- package/dist/commonjs/manifest/classes/index.d.ts +0 -32
- package/dist/commonjs/manifest/classes/index.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/index.js +0 -46
- package/dist/commonjs/manifest/classes/manifest.d.ts +0 -425
- package/dist/commonjs/manifest/classes/manifest.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/manifest.js +0 -561
- package/dist/commonjs/manifest/classes/period.d.ts +0 -157
- package/dist/commonjs/manifest/classes/period.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/period.js +0 -283
- package/dist/commonjs/manifest/classes/representation.d.ts +0 -271
- package/dist/commonjs/manifest/classes/representation.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation.js +0 -402
- package/dist/commonjs/manifest/classes/representation_index/index.d.ts +0 -20
- package/dist/commonjs/manifest/classes/representation_index/index.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation_index/index.js +0 -20
- package/dist/commonjs/manifest/classes/representation_index/static.d.ts +0 -117
- package/dist/commonjs/manifest/classes/representation_index/static.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation_index/static.js +0 -164
- package/dist/commonjs/manifest/classes/representation_index/types.d.ts +0 -441
- package/dist/commonjs/manifest/classes/representation_index/types.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation_index/types.js +0 -17
- package/dist/commonjs/manifest/classes/types.d.ts +0 -30
- package/dist/commonjs/manifest/classes/types.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/types.js +0 -33
- package/dist/commonjs/manifest/classes/update_period_in_place.d.ts +0 -63
- package/dist/commonjs/manifest/classes/update_period_in_place.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/update_period_in_place.js +0 -237
- package/dist/commonjs/manifest/classes/update_periods.d.ts +0 -51
- package/dist/commonjs/manifest/classes/update_periods.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/update_periods.js +0 -228
- package/dist/commonjs/manifest/classes/utils.d.ts +0 -47
- package/dist/commonjs/manifest/classes/utils.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/utils.js +0 -49
- package/dist/commonjs/manifest/index.d.ts +0 -17
- package/dist/commonjs/manifest/index.d.ts.map +0 -1
- package/dist/commonjs/manifest/index.js +0 -21
- package/dist/commonjs/manifest/types.d.ts +0 -466
- package/dist/commonjs/manifest/types.d.ts.map +0 -1
- package/dist/commonjs/manifest/types.js +0 -2
- package/dist/commonjs/manifest/utils.d.ts +0 -184
- package/dist/commonjs/manifest/utils.d.ts.map +0 -1
- package/dist/commonjs/manifest/utils.js +0 -822
- package/dist/commonjs/minimal.d.ts +0 -21
- package/dist/commonjs/minimal.d.ts.map +0 -1
- package/dist/commonjs/minimal.js +0 -30
- package/dist/commonjs/mse/index.d.ts +0 -3
- package/dist/commonjs/mse/index.d.ts.map +0 -1
- package/dist/commonjs/mse/index.js +0 -2
- package/dist/commonjs/mse/main_media_source_interface.d.ts +0 -128
- package/dist/commonjs/mse/main_media_source_interface.d.ts.map +0 -1
- package/dist/commonjs/mse/main_media_source_interface.js +0 -594
- package/dist/commonjs/mse/types.d.ts +0 -289
- package/dist/commonjs/mse/types.d.ts.map +0 -1
- package/dist/commonjs/mse/types.js +0 -2
- package/dist/commonjs/mse/utils/end_of_stream.d.ts +0 -35
- package/dist/commonjs/mse/utils/end_of_stream.d.ts.map +0 -1
- package/dist/commonjs/mse/utils/end_of_stream.js +0 -118
- package/dist/commonjs/mse/utils/media_source_duration_updater.d.ts +0 -60
- package/dist/commonjs/mse/utils/media_source_duration_updater.d.ts.map +0 -1
- package/dist/commonjs/mse/utils/media_source_duration_updater.js +0 -274
- package/dist/commonjs/mse/worker_media_source_interface.d.ts +0 -106
- package/dist/commonjs/mse/worker_media_source_interface.d.ts.map +0 -1
- package/dist/commonjs/mse/worker_media_source_interface.js +0 -370
- package/dist/commonjs/multithread_types.d.ts +0 -915
- package/dist/commonjs/multithread_types.d.ts.map +0 -1
- package/dist/commonjs/multithread_types.js +0 -7
- package/dist/commonjs/parsers/containers/isobmff/constants.d.ts +0 -24
- package/dist/commonjs/parsers/containers/isobmff/constants.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/constants.js +0 -26
- package/dist/commonjs/parsers/containers/isobmff/create_box.d.ts +0 -31
- package/dist/commonjs/parsers/containers/isobmff/create_box.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/create_box.js +0 -93
- package/dist/commonjs/parsers/containers/isobmff/drm/index.d.ts +0 -17
- package/dist/commonjs/parsers/containers/isobmff/drm/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/drm/index.js +0 -20
- package/dist/commonjs/parsers/containers/isobmff/drm/playready.d.ts +0 -22
- package/dist/commonjs/parsers/containers/isobmff/drm/playready.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/drm/playready.js +0 -38
- package/dist/commonjs/parsers/containers/isobmff/extract_complete_chunks.d.ts +0 -30
- package/dist/commonjs/parsers/containers/isobmff/extract_complete_chunks.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/extract_complete_chunks.js +0 -89
- package/dist/commonjs/parsers/containers/isobmff/find_complete_box.d.ts +0 -26
- package/dist/commonjs/parsers/containers/isobmff/find_complete_box.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/find_complete_box.js +0 -57
- package/dist/commonjs/parsers/containers/isobmff/get_box.d.ts +0 -107
- package/dist/commonjs/parsers/containers/isobmff/get_box.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/get_box.js +0 -254
- package/dist/commonjs/parsers/containers/isobmff/index.d.ts +0 -26
- package/dist/commonjs/parsers/containers/isobmff/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/index.js +0 -47
- package/dist/commonjs/parsers/containers/isobmff/read.d.ts +0 -58
- package/dist/commonjs/parsers/containers/isobmff/read.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/read.js +0 -94
- package/dist/commonjs/parsers/containers/isobmff/take_pssh_out.d.ts +0 -42
- package/dist/commonjs/parsers/containers/isobmff/take_pssh_out.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/take_pssh_out.js +0 -86
- package/dist/commonjs/parsers/containers/isobmff/utils.d.ts +0 -143
- package/dist/commonjs/parsers/containers/isobmff/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/utils.js +0 -608
- package/dist/commonjs/parsers/containers/matroska/index.d.ts +0 -18
- package/dist/commonjs/parsers/containers/matroska/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/matroska/index.js +0 -21
- package/dist/commonjs/parsers/containers/matroska/utils.d.ts +0 -35
- package/dist/commonjs/parsers/containers/matroska/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/matroska/utils.js +0 -277
- package/dist/commonjs/parsers/images/bif.d.ts +0 -40
- package/dist/commonjs/parsers/images/bif.d.ts.map +0 -1
- package/dist/commonjs/parsers/images/bif.js +0 -103
- package/dist/commonjs/parsers/manifest/dash/common/attach_trickmode_track.d.ts +0 -29
- package/dist/commonjs/parsers/manifest/dash/common/attach_trickmode_track.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/attach_trickmode_track.js +0 -98
- package/dist/commonjs/parsers/manifest/dash/common/content_protection_parser.d.ts +0 -99
- package/dist/commonjs/parsers/manifest/dash/common/content_protection_parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/content_protection_parser.js +0 -261
- package/dist/commonjs/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts +0 -18
- package/dist/commonjs/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/convert_supplemental_codecs.js +0 -27
- package/dist/commonjs/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts +0 -44
- package/dist/commonjs/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/flatten_overlapping_periods.js +0 -85
- package/dist/commonjs/parsers/manifest/dash/common/get_clock_offset.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/dash/common/get_clock_offset.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_clock_offset.js +0 -41
- package/dist/commonjs/parsers/manifest/dash/common/get_hdr_information.d.ts +0 -51
- package/dist/commonjs/parsers/manifest/dash/common/get_hdr_information.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_hdr_information.js +0 -86
- package/dist/commonjs/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_http_utc-timing_url.js +0 -30
- package/dist/commonjs/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_minimum_and_maximum_positions.js +0 -36
- package/dist/commonjs/parsers/manifest/dash/common/get_periods_time_infos.d.ts +0 -44
- package/dist/commonjs/parsers/manifest/dash/common/get_periods_time_infos.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_periods_time_infos.js +0 -71
- package/dist/commonjs/parsers/manifest/dash/common/index.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/dash/common/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/index.js +0 -25
- package/dist/commonjs/parsers/manifest/dash/common/indexes/base.d.ts +0 -267
- package/dist/commonjs/parsers/manifest/dash/common/indexes/base.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/base.js +0 -289
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_init_segment.d.ts +0 -33
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_init_segment.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_init_segment.js +0 -47
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts +0 -40
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_segments_from_timeline.js +0 -112
- package/dist/commonjs/parsers/manifest/dash/common/indexes/index.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/indexes/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/index.js +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/indexes/list.d.ts +0 -209
- package/dist/commonjs/parsers/manifest/dash/common/indexes/list.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/list.js +0 -247
- package/dist/commonjs/parsers/manifest/dash/common/indexes/template.d.ts +0 -272
- package/dist/commonjs/parsers/manifest/dash/common/indexes/template.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/template.js +0 -453
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts +0 -28
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.js +0 -46
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.js +0 -82
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts +0 -38
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.js +0 -66
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts +0 -43
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.js +0 -143
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/index.d.ts +0 -20
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/index.js +0 -19
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts +0 -37
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.js +0 -90
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts +0 -448
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.js +0 -702
- package/dist/commonjs/parsers/manifest/dash/common/indexes/tokens.d.ts +0 -41
- package/dist/commonjs/parsers/manifest/dash/common/indexes/tokens.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/tokens.js +0 -112
- package/dist/commonjs/parsers/manifest/dash/common/indexes/utils.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/indexes/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/utils.js +0 -31
- package/dist/commonjs/parsers/manifest/dash/common/infer_adaptation_type.d.ts +0 -48
- package/dist/commonjs/parsers/manifest/dash/common/infer_adaptation_type.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/infer_adaptation_type.js +0 -164
- package/dist/commonjs/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts +0 -120
- package/dist/commonjs/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/manifest_bounds_calculator.js +0 -138
- package/dist/commonjs/parsers/manifest/dash/common/parse_adaptation_sets.d.ts +0 -56
- package/dist/commonjs/parsers/manifest/dash/common/parse_adaptation_sets.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_adaptation_sets.js +0 -508
- package/dist/commonjs/parsers/manifest/dash/common/parse_availability_start_time.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/common/parse_availability_start_time.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_availability_start_time.js +0 -34
- package/dist/commonjs/parsers/manifest/dash/common/parse_mpd.d.ts +0 -99
- package/dist/commonjs/parsers/manifest/dash/common/parse_mpd.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_mpd.js +0 -345
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.d.ts +0 -71
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.js +0 -341
- package/dist/commonjs/parsers/manifest/dash/common/parse_representation_index.d.ts +0 -87
- package/dist/commonjs/parsers/manifest/dash/common/parse_representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_representation_index.js +0 -131
- package/dist/commonjs/parsers/manifest/dash/common/parse_representations.d.ts +0 -51
- package/dist/commonjs/parsers/manifest/dash/common/parse_representations.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_representations.js +0 -300
- package/dist/commonjs/parsers/manifest/dash/common/resolve_base_urls.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/dash/common/resolve_base_urls.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/resolve_base_urls.js +0 -49
- package/dist/commonjs/parsers/manifest/dash/index.d.ts +0 -17
- package/dist/commonjs/parsers/manifest/dash/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/index.js +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/index.d.ts +0 -18
- package/dist/commonjs/parsers/manifest/dash/js-parser/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/index.js +0 -19
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.js +0 -406
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/BaseURL.js +0 -33
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.js +0 -70
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.js +0 -125
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/EventStream.js +0 -153
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Initialization.js +0 -70
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/MPD.js +0 -235
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Period.js +0 -197
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Representation.js +0 -268
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.js +0 -152
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentList.js +0 -60
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.js +0 -125
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.js +0 -36
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.js +0 -82
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts +0 -176
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/utils.js +0 -381
- package/dist/commonjs/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/parse_from_xml_string.js +0 -142
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.d.ts +0 -404
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.js +0 -17
- package/dist/commonjs/parsers/manifest/dash/parsers_types.d.ts +0 -84
- package/dist/commonjs/parsers/manifest/dash/parsers_types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/parsers_types.js +0 -17
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/index.d.ts +0 -20
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/index.js +0 -19
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts +0 -112
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.js +0 -425
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts +0 -33
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.js +0 -276
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.js +0 -33
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.js +0 -44
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.js +0 -61
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.js +0 -116
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts +0 -4
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Label.js +0 -12
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts +0 -29
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/MPD.js +0 -168
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Period.js +0 -152
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts +0 -33
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Representation.js +0 -183
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.js +0 -38
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.js +0 -91
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.js +0 -48
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.js +0 -104
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.js +0 -55
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/XLink.js +0 -50
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts +0 -17
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/index.js +0 -20
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts +0 -28
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/root.js +0 -53
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts +0 -39
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/parsers_stack.js +0 -62
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/types.d.ts +0 -149
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/types.js +0 -17
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/utils.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/utils.js +0 -43
- package/dist/commonjs/parsers/manifest/index.d.ts +0 -17
- package/dist/commonjs/parsers/manifest/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/index.js +0 -17
- package/dist/commonjs/parsers/manifest/local/index.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/local/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/index.js +0 -19
- package/dist/commonjs/parsers/manifest/local/parse_local_manifest.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/local/parse_local_manifest.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/parse_local_manifest.js +0 -140
- package/dist/commonjs/parsers/manifest/local/representation_index.d.ts +0 -99
- package/dist/commonjs/parsers/manifest/local/representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/representation_index.js +0 -297
- package/dist/commonjs/parsers/manifest/local/types.d.ts +0 -288
- package/dist/commonjs/parsers/manifest/local/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/types.js +0 -17
- package/dist/commonjs/parsers/manifest/metaplaylist/index.d.ts +0 -20
- package/dist/commonjs/parsers/manifest/metaplaylist/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/metaplaylist/index.js +0 -19
- package/dist/commonjs/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts +0 -65
- package/dist/commonjs/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/metaplaylist/metaplaylist_parser.js +0 -322
- package/dist/commonjs/parsers/manifest/metaplaylist/representation_index.d.ts +0 -165
- package/dist/commonjs/parsers/manifest/metaplaylist/representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/metaplaylist/representation_index.js +0 -239
- package/dist/commonjs/parsers/manifest/smooth/create_parser.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/smooth/create_parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/create_parser.js +0 -544
- package/dist/commonjs/parsers/manifest/smooth/get_codecs.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/smooth/get_codecs.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/get_codecs.js +0 -54
- package/dist/commonjs/parsers/manifest/smooth/index.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/smooth/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/index.js +0 -22
- package/dist/commonjs/parsers/manifest/smooth/parse_C_nodes.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/smooth/parse_C_nodes.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/parse_C_nodes.js +0 -63
- package/dist/commonjs/parsers/manifest/smooth/parse_protection_node.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/smooth/parse_protection_node.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/parse_protection_node.js +0 -66
- package/dist/commonjs/parsers/manifest/smooth/representation_index.d.ts +0 -242
- package/dist/commonjs/parsers/manifest/smooth/representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/representation_index.js +0 -424
- package/dist/commonjs/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts +0 -120
- package/dist/commonjs/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/shared_smooth_segment_timeline.js +0 -182
- package/dist/commonjs/parsers/manifest/smooth/utils/add_segment_infos.d.ts +0 -39
- package/dist/commonjs/parsers/manifest/smooth/utils/add_segment_infos.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/add_segment_infos.js +0 -66
- package/dist/commonjs/parsers/manifest/smooth/utils/parseBoolean.d.ts +0 -21
- package/dist/commonjs/parsers/manifest/smooth/utils/parseBoolean.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/parseBoolean.js +0 -33
- package/dist/commonjs/parsers/manifest/smooth/utils/reduceChildren.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/smooth/utils/reduceChildren.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/reduceChildren.js +0 -34
- package/dist/commonjs/parsers/manifest/smooth/utils/tokens.d.ts +0 -29
- package/dist/commonjs/parsers/manifest/smooth/utils/tokens.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/tokens.js +0 -37
- package/dist/commonjs/parsers/manifest/types.d.ts +0 -443
- package/dist/commonjs/parsers/manifest/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/types.js +0 -17
- package/dist/commonjs/parsers/manifest/utils/check_manifest_ids.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/utils/check_manifest_ids.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/check_manifest_ids.js +0 -83
- package/dist/commonjs/parsers/manifest/utils/clear_timeline_from_position.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/utils/clear_timeline_from_position.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/clear_timeline_from_position.js +0 -76
- package/dist/commonjs/parsers/manifest/utils/get_first_time_from_adaptation.d.ts +0 -28
- package/dist/commonjs/parsers/manifest/utils/get_first_time_from_adaptation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_first_time_from_adaptation.js +0 -69
- package/dist/commonjs/parsers/manifest/utils/get_last_time_from_adaptation.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/utils/get_last_time_from_adaptation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_last_time_from_adaptation.js +0 -71
- package/dist/commonjs/parsers/manifest/utils/get_maximum_positions.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/utils/get_maximum_positions.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_maximum_positions.js +0 -69
- package/dist/commonjs/parsers/manifest/utils/get_minimum_position.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/utils/get_minimum_position.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_minimum_position.js +0 -65
- package/dist/commonjs/parsers/manifest/utils/index_helpers.d.ts +0 -89
- package/dist/commonjs/parsers/manifest/utils/index_helpers.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/index_helpers.js +0 -154
- package/dist/commonjs/parsers/manifest/utils/update_segment_timeline.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/utils/update_segment_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/update_segment_timeline.js +0 -157
- package/dist/commonjs/parsers/texttracks/index.d.ts +0 -17
- package/dist/commonjs/parsers/texttracks/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/index.js +0 -17
- package/dist/commonjs/parsers/texttracks/sami/html.d.ts +0 -32
- package/dist/commonjs/parsers/texttracks/sami/html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/sami/html.js +0 -220
- package/dist/commonjs/parsers/texttracks/sami/native.d.ts +0 -37
- package/dist/commonjs/parsers/texttracks/sami/native.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/sami/native.js +0 -184
- package/dist/commonjs/parsers/texttracks/srt/find_end_of_cue_block.d.ts +0 -30
- package/dist/commonjs/parsers/texttracks/srt/find_end_of_cue_block.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/find_end_of_cue_block.js +0 -42
- package/dist/commonjs/parsers/texttracks/srt/get_cue_blocks.d.ts +0 -23
- package/dist/commonjs/parsers/texttracks/srt/get_cue_blocks.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/get_cue_blocks.js +0 -50
- package/dist/commonjs/parsers/texttracks/srt/html.d.ts +0 -28
- package/dist/commonjs/parsers/texttracks/srt/html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/html.js +0 -192
- package/dist/commonjs/parsers/texttracks/srt/native.d.ts +0 -30
- package/dist/commonjs/parsers/texttracks/srt/native.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/native.js +0 -66
- package/dist/commonjs/parsers/texttracks/srt/parse_cue.d.ts +0 -31
- package/dist/commonjs/parsers/texttracks/srt/parse_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/parse_cue.js +0 -75
- package/dist/commonjs/parsers/texttracks/srt/parse_timestamp.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/srt/parse_timestamp.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/parse_timestamp.js +0 -36
- package/dist/commonjs/parsers/texttracks/ttml/get_parameters.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/ttml/get_parameters.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/get_parameters.js +0 -90
- package/dist/commonjs/parsers/texttracks/ttml/get_styling.d.ts +0 -42
- package/dist/commonjs/parsers/texttracks/ttml/get_styling.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/get_styling.js +0 -136
- package/dist/commonjs/parsers/texttracks/ttml/get_time_delimiters.d.ts +0 -27
- package/dist/commonjs/parsers/texttracks/ttml/get_time_delimiters.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/get_time_delimiters.js +0 -43
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts +0 -49
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.js +0 -65
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_extent.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_extent.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_extent.js +0 -60
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_font_size.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_font_size.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_font_size.js +0 -59
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_line_height.d.ts +0 -21
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_line_height.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_line_height.js +0 -48
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_origin.d.ts +0 -21
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_origin.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_origin.js +0 -59
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_padding.d.ts +0 -21
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_padding.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_padding.js +0 -138
- package/dist/commonjs/parsers/texttracks/ttml/html/create_element.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/ttml/html/create_element.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/create_element.js +0 -477
- package/dist/commonjs/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts +0 -27
- package/dist/commonjs/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/generate_css_test_outline.js +0 -44
- package/dist/commonjs/parsers/texttracks/ttml/html/index.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/index.js +0 -23
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_cue.d.ts +0 -27
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_cue.js +0 -43
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts +0 -36
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_ttml_to_div.js +0 -87
- package/dist/commonjs/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/ttml_color_to_css_color.js +0 -76
- package/dist/commonjs/parsers/texttracks/ttml/native/index.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/native/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/native/index.js +0 -23
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_cue.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_cue.js +0 -200
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts +0 -24
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_ttml_to_vtt.js +0 -70
- package/dist/commonjs/parsers/texttracks/ttml/parse_ttml.d.ts +0 -44
- package/dist/commonjs/parsers/texttracks/ttml/parse_ttml.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/parse_ttml.js +0 -187
- package/dist/commonjs/parsers/texttracks/ttml/regexps.d.ts +0 -29
- package/dist/commonjs/parsers/texttracks/ttml/regexps.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/regexps.js +0 -49
- package/dist/commonjs/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts +0 -50
- package/dist/commonjs/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/resolve_styles_inheritance.js +0 -107
- package/dist/commonjs/parsers/texttracks/ttml/time_parsing.d.ts +0 -31
- package/dist/commonjs/parsers/texttracks/ttml/time_parsing.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/time_parsing.js +0 -126
- package/dist/commonjs/parsers/texttracks/ttml/xml_utils.d.ts +0 -71
- package/dist/commonjs/parsers/texttracks/ttml/xml_utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/xml_utils.js +0 -186
- package/dist/commonjs/parsers/texttracks/types.d.ts +0 -80
- package/dist/commonjs/parsers/texttracks/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/types.js +0 -17
- package/dist/commonjs/parsers/texttracks/webvtt/create_default_style_elements.d.ts +0 -3
- package/dist/commonjs/parsers/texttracks/webvtt/create_default_style_elements.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/create_default_style_elements.js +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/get_cue_blocks.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/get_cue_blocks.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/get_cue_blocks.js +0 -47
- package/dist/commonjs/parsers/texttracks/webvtt/get_style_blocks.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/get_style_blocks.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/get_style_blocks.js +0 -55
- package/dist/commonjs/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts +0 -23
- package/dist/commonjs/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/convert_payload_to_html.js +0 -38
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_style_attribute.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_style_attribute.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_style_attribute.js +0 -172
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_styled_element.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_styled_element.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_styled_element.js +0 -84
- package/dist/commonjs/parsers/texttracks/webvtt/html/index.d.ts +0 -28
- package/dist/commonjs/parsers/texttracks/webvtt/html/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/index.js +0 -26
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts +0 -13
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_mp4.js +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.js +0 -69
- package/dist/commonjs/parsers/texttracks/webvtt/html/to_html.d.ts +0 -50
- package/dist/commonjs/parsers/texttracks/webvtt/html/to_html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/to_html.js +0 -73
- package/dist/commonjs/parsers/texttracks/webvtt/native/index.d.ts +0 -23
- package/dist/commonjs/parsers/texttracks/webvtt/native/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/index.js +0 -26
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts +0 -30
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.js +0 -94
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts +0 -13
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.js +0 -24
- package/dist/commonjs/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts +0 -24
- package/dist/commonjs/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/set_settings_on_cue.js +0 -83
- package/dist/commonjs/parsers/texttracks/webvtt/native/to_native_cue.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/webvtt/native/to_native_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/to_native_cue.js +0 -30
- package/dist/commonjs/parsers/texttracks/webvtt/parse_cue_block.d.ts +0 -40
- package/dist/commonjs/parsers/texttracks/webvtt/parse_cue_block.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_cue_block.js +0 -104
- package/dist/commonjs/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.js +0 -154
- package/dist/commonjs/parsers/texttracks/webvtt/parse_style_block.d.ts +0 -28
- package/dist/commonjs/parsers/texttracks/webvtt/parse_style_block.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_style_block.js +0 -75
- package/dist/commonjs/parsers/texttracks/webvtt/parse_timestamp.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/parse_timestamp.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_timestamp.js +0 -36
- package/dist/commonjs/parsers/texttracks/webvtt/utils.d.ts +0 -58
- package/dist/commonjs/parsers/texttracks/webvtt/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/utils.js +0 -121
- package/dist/commonjs/playback_observer/index.d.ts +0 -7
- package/dist/commonjs/playback_observer/index.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/index.js +0 -5
- package/dist/commonjs/playback_observer/media_element_playback_observer.d.ts +0 -285
- package/dist/commonjs/playback_observer/media_element_playback_observer.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/media_element_playback_observer.js +0 -842
- package/dist/commonjs/playback_observer/types.d.ts +0 -226
- package/dist/commonjs/playback_observer/types.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/types.js +0 -2
- package/dist/commonjs/playback_observer/utils/generate_read_only_observer.d.ts +0 -12
- package/dist/commonjs/playback_observer/utils/generate_read_only_observer.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/utils/generate_read_only_observer.js +0 -42
- package/dist/commonjs/playback_observer/utils/observation_position.d.ts +0 -99
- package/dist/commonjs/playback_observer/utils/observation_position.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/utils/observation_position.js +0 -99
- package/dist/commonjs/playback_observer/worker_playback_observer.d.ts +0 -85
- package/dist/commonjs/playback_observer/worker_playback_observer.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/worker_playback_observer.js +0 -47
- package/dist/commonjs/public_types.d.ts +0 -1279
- package/dist/commonjs/public_types.d.ts.map +0 -1
- package/dist/commonjs/public_types.js +0 -6
- package/dist/commonjs/tools/TextTrackRenderer/index.d.ts +0 -24
- package/dist/commonjs/tools/TextTrackRenderer/index.d.ts.map +0 -1
- package/dist/commonjs/tools/TextTrackRenderer/index.js +0 -29
- package/dist/commonjs/tools/TextTrackRenderer/text_track_renderer.d.ts +0 -77
- package/dist/commonjs/tools/TextTrackRenderer/text_track_renderer.d.ts.map +0 -1
- package/dist/commonjs/tools/TextTrackRenderer/text_track_renderer.js +0 -82
- package/dist/commonjs/tools/index.d.ts +0 -20
- package/dist/commonjs/tools/index.d.ts.map +0 -1
- package/dist/commonjs/tools/index.js +0 -23
- package/dist/commonjs/tools/parseBIFThumbnails/index.d.ts +0 -30
- package/dist/commonjs/tools/parseBIFThumbnails/index.d.ts.map +0 -1
- package/dist/commonjs/tools/parseBIFThumbnails/index.js +0 -33
- package/dist/commonjs/tools/string_utils/index.d.ts +0 -17
- package/dist/commonjs/tools/string_utils/index.d.ts.map +0 -1
- package/dist/commonjs/tools/string_utils/index.js +0 -25
- package/dist/commonjs/transports/dash/construct_segment_url.d.ts +0 -19
- package/dist/commonjs/transports/dash/construct_segment_url.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/construct_segment_url.js +0 -28
- package/dist/commonjs/transports/dash/get_events_out_of_emsgs.d.ts +0 -29
- package/dist/commonjs/transports/dash/get_events_out_of_emsgs.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/get_events_out_of_emsgs.js +0 -96
- package/dist/commonjs/transports/dash/index.d.ts +0 -22
- package/dist/commonjs/transports/dash/index.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/index.js +0 -23
- package/dist/commonjs/transports/dash/init_segment_loader.d.ts +0 -29
- package/dist/commonjs/transports/dash/init_segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/init_segment_loader.js +0 -135
- package/dist/commonjs/transports/dash/integrity_checks.d.ts +0 -18
- package/dist/commonjs/transports/dash/integrity_checks.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/integrity_checks.js +0 -209
- package/dist/commonjs/transports/dash/load_chunked_segment_data.d.ts +0 -40
- package/dist/commonjs/transports/dash/load_chunked_segment_data.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/load_chunked_segment_data.js +0 -126
- package/dist/commonjs/transports/dash/manifest_parser.d.ts +0 -19
- package/dist/commonjs/transports/dash/manifest_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/manifest_parser.js +0 -298
- package/dist/commonjs/transports/dash/pipelines.d.ts +0 -24
- package/dist/commonjs/transports/dash/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/pipelines.js +0 -68
- package/dist/commonjs/transports/dash/segment_loader.d.ts +0 -39
- package/dist/commonjs/transports/dash/segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/segment_loader.js +0 -275
- package/dist/commonjs/transports/dash/segment_parser.d.ts +0 -24
- package/dist/commonjs/transports/dash/segment_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/segment_parser.js +0 -160
- package/dist/commonjs/transports/dash/text_loader.d.ts +0 -26
- package/dist/commonjs/transports/dash/text_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/text_loader.js +0 -166
- package/dist/commonjs/transports/dash/text_parser.d.ts +0 -26
- package/dist/commonjs/transports/dash/text_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/text_parser.js +0 -194
- package/dist/commonjs/transports/dash/thumbnails.d.ts +0 -21
- package/dist/commonjs/transports/dash/thumbnails.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/thumbnails.js +0 -127
- package/dist/commonjs/transports/index.d.ts +0 -17
- package/dist/commonjs/transports/index.d.ts.map +0 -1
- package/dist/commonjs/transports/index.js +0 -17
- package/dist/commonjs/transports/local/index.d.ts +0 -18
- package/dist/commonjs/transports/local/index.d.ts.map +0 -1
- package/dist/commonjs/transports/local/index.js +0 -19
- package/dist/commonjs/transports/local/pipelines.d.ts +0 -23
- package/dist/commonjs/transports/local/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/local/pipelines.js +0 -81
- package/dist/commonjs/transports/local/segment_loader.d.ts +0 -29
- package/dist/commonjs/transports/local/segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/local/segment_loader.js +0 -155
- package/dist/commonjs/transports/local/segment_parser.d.ts +0 -21
- package/dist/commonjs/transports/local/segment_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/local/segment_parser.js +0 -90
- package/dist/commonjs/transports/local/text_parser.d.ts +0 -28
- package/dist/commonjs/transports/local/text_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/local/text_parser.js +0 -165
- package/dist/commonjs/transports/metaplaylist/index.d.ts +0 -22
- package/dist/commonjs/transports/metaplaylist/index.d.ts.map +0 -1
- package/dist/commonjs/transports/metaplaylist/index.js +0 -23
- package/dist/commonjs/transports/metaplaylist/manifest_loader.d.ts +0 -27
- package/dist/commonjs/transports/metaplaylist/manifest_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/metaplaylist/manifest_loader.js +0 -57
- package/dist/commonjs/transports/metaplaylist/pipelines.d.ts +0 -18
- package/dist/commonjs/transports/metaplaylist/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/metaplaylist/pipelines.js +0 -268
- package/dist/commonjs/transports/smooth/extract_timings_infos.d.ts +0 -63
- package/dist/commonjs/transports/smooth/extract_timings_infos.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/extract_timings_infos.js +0 -104
- package/dist/commonjs/transports/smooth/index.d.ts +0 -22
- package/dist/commonjs/transports/smooth/index.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/index.js +0 -23
- package/dist/commonjs/transports/smooth/is_mp4_embedded_track.d.ts +0 -23
- package/dist/commonjs/transports/smooth/is_mp4_embedded_track.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/is_mp4_embedded_track.js +0 -27
- package/dist/commonjs/transports/smooth/isobmff/create_audio_init_segment.d.ts +0 -29
- package/dist/commonjs/transports/smooth/isobmff/create_audio_init_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_audio_init_segment.js +0 -54
- package/dist/commonjs/transports/smooth/isobmff/create_boxes.d.ts +0 -172
- package/dist/commonjs/transports/smooth/isobmff/create_boxes.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_boxes.js +0 -368
- package/dist/commonjs/transports/smooth/isobmff/create_init_segment.d.ts +0 -32
- package/dist/commonjs/transports/smooth/isobmff/create_init_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_init_segment.js +0 -66
- package/dist/commonjs/transports/smooth/isobmff/create_traf_box.d.ts +0 -17
- package/dist/commonjs/transports/smooth/isobmff/create_traf_box.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_traf_box.js +0 -27
- package/dist/commonjs/transports/smooth/isobmff/create_video_init_segment.d.ts +0 -30
- package/dist/commonjs/transports/smooth/isobmff/create_video_init_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_video_init_segment.js +0 -76
- package/dist/commonjs/transports/smooth/isobmff/get_aaces_header.d.ts +0 -28
- package/dist/commonjs/transports/smooth/isobmff/get_aaces_header.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/get_aaces_header.js +0 -46
- package/dist/commonjs/transports/smooth/isobmff/index.d.ts +0 -24
- package/dist/commonjs/transports/smooth/isobmff/index.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/index.js +0 -28
- package/dist/commonjs/transports/smooth/isobmff/parse_tfrf.d.ts +0 -25
- package/dist/commonjs/transports/smooth/isobmff/parse_tfrf.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/parse_tfrf.js +0 -50
- package/dist/commonjs/transports/smooth/isobmff/parse_tfxd.d.ts +0 -25
- package/dist/commonjs/transports/smooth/isobmff/parse_tfxd.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/parse_tfxd.js +0 -34
- package/dist/commonjs/transports/smooth/isobmff/patch_segment.d.ts +0 -24
- package/dist/commonjs/transports/smooth/isobmff/patch_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/patch_segment.js +0 -131
- package/dist/commonjs/transports/smooth/pipelines.d.ts +0 -18
- package/dist/commonjs/transports/smooth/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/pipelines.js +0 -352
- package/dist/commonjs/transports/smooth/segment_loader.d.ts +0 -28
- package/dist/commonjs/transports/smooth/segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/segment_loader.js +0 -299
- package/dist/commonjs/transports/smooth/utils.d.ts +0 -27
- package/dist/commonjs/transports/smooth/utils.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/utils.js +0 -39
- package/dist/commonjs/transports/types.d.ts +0 -772
- package/dist/commonjs/transports/types.d.ts.map +0 -1
- package/dist/commonjs/transports/types.js +0 -17
- package/dist/commonjs/transports/utils/add_query_string.d.ts +0 -13
- package/dist/commonjs/transports/utils/add_query_string.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/add_query_string.js +0 -54
- package/dist/commonjs/transports/utils/byte_range.d.ts +0 -22
- package/dist/commonjs/transports/utils/byte_range.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/byte_range.js +0 -43
- package/dist/commonjs/transports/utils/call_custom_manifest_loader.d.ts +0 -20
- package/dist/commonjs/transports/utils/call_custom_manifest_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/call_custom_manifest_loader.js +0 -99
- package/dist/commonjs/transports/utils/check_isobmff_integrity.d.ts +0 -24
- package/dist/commonjs/transports/utils/check_isobmff_integrity.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/check_isobmff_integrity.js +0 -49
- package/dist/commonjs/transports/utils/generate_manifest_loader.d.ts +0 -27
- package/dist/commonjs/transports/utils/generate_manifest_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/generate_manifest_loader.js +0 -89
- package/dist/commonjs/transports/utils/get_isobmff_timing_infos.d.ts +0 -30
- package/dist/commonjs/transports/utils/get_isobmff_timing_infos.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/get_isobmff_timing_infos.js +0 -70
- package/dist/commonjs/transports/utils/infer_segment_container.d.ts +0 -30
- package/dist/commonjs/transports/utils/infer_segment_container.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/infer_segment_container.js +0 -45
- package/dist/commonjs/transports/utils/parse_text_track.d.ts +0 -53
- package/dist/commonjs/transports/utils/parse_text_track.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/parse_text_track.js +0 -161
- package/dist/commonjs/utils/are_arrays_of_numbers_equal.d.ts +0 -23
- package/dist/commonjs/utils/are_arrays_of_numbers_equal.d.ts.map +0 -1
- package/dist/commonjs/utils/are_arrays_of_numbers_equal.js +0 -38
- package/dist/commonjs/utils/are_codecs_compatible.d.ts +0 -30
- package/dist/commonjs/utils/are_codecs_compatible.d.ts.map +0 -1
- package/dist/commonjs/utils/are_codecs_compatible.js +0 -76
- package/dist/commonjs/utils/array_find.d.ts +0 -24
- package/dist/commonjs/utils/array_find.d.ts.map +0 -1
- package/dist/commonjs/utils/array_find.js +0 -40
- package/dist/commonjs/utils/array_find_index.d.ts +0 -24
- package/dist/commonjs/utils/array_find_index.d.ts.map +0 -1
- package/dist/commonjs/utils/array_find_index.js +0 -39
- package/dist/commonjs/utils/array_includes.d.ts +0 -54
- package/dist/commonjs/utils/array_includes.d.ts.map +0 -1
- package/dist/commonjs/utils/array_includes.js +0 -80
- package/dist/commonjs/utils/assert.d.ts +0 -75
- package/dist/commonjs/utils/assert.d.ts.map +0 -1
- package/dist/commonjs/utils/assert.js +0 -117
- package/dist/commonjs/utils/base64.d.ts +0 -15
- package/dist/commonjs/utils/base64.d.ts.map +0 -1
- package/dist/commonjs/utils/base64.js +0 -212
- package/dist/commonjs/utils/buffer_source_to_uint8.d.ts +0 -8
- package/dist/commonjs/utils/buffer_source_to_uint8.d.ts.map +0 -1
- package/dist/commonjs/utils/buffer_source_to_uint8.js +0 -18
- package/dist/commonjs/utils/byte_parsing.d.ts +0 -132
- package/dist/commonjs/utils/byte_parsing.d.ts.map +0 -1
- package/dist/commonjs/utils/byte_parsing.js +0 -273
- package/dist/commonjs/utils/cancellable_sleep.d.ts +0 -31
- package/dist/commonjs/utils/cancellable_sleep.d.ts.map +0 -1
- package/dist/commonjs/utils/cancellable_sleep.js +0 -38
- package/dist/commonjs/utils/create_cancellable_promise.d.ts +0 -27
- package/dist/commonjs/utils/create_cancellable_promise.d.ts.map +0 -1
- package/dist/commonjs/utils/create_cancellable_promise.js +0 -55
- package/dist/commonjs/utils/create_uuid.d.ts +0 -9
- package/dist/commonjs/utils/create_uuid.d.ts.map +0 -1
- package/dist/commonjs/utils/create_uuid.js +0 -32
- package/dist/commonjs/utils/deep_merge.d.ts +0 -10
- package/dist/commonjs/utils/deep_merge.d.ts.map +0 -1
- package/dist/commonjs/utils/deep_merge.js +0 -73
- package/dist/commonjs/utils/event_emitter.d.ts +0 -63
- package/dist/commonjs/utils/event_emitter.d.ts.map +0 -1
- package/dist/commonjs/utils/event_emitter.js +0 -110
- package/dist/commonjs/utils/flat_map.d.ts +0 -23
- package/dist/commonjs/utils/flat_map.d.ts.map +0 -1
- package/dist/commonjs/utils/flat_map.js +0 -63
- package/dist/commonjs/utils/get_fuzzed_delay.d.ts +0 -22
- package/dist/commonjs/utils/get_fuzzed_delay.d.ts.map +0 -1
- package/dist/commonjs/utils/get_fuzzed_delay.js +0 -28
- package/dist/commonjs/utils/global_scope.d.ts +0 -10
- package/dist/commonjs/utils/global_scope.d.ts.map +0 -1
- package/dist/commonjs/utils/global_scope.js +0 -22
- package/dist/commonjs/utils/hash_buffer.d.ts +0 -33
- package/dist/commonjs/utils/hash_buffer.d.ts.map +0 -1
- package/dist/commonjs/utils/hash_buffer.js +0 -44
- package/dist/commonjs/utils/id_generator.d.ts +0 -22
- package/dist/commonjs/utils/id_generator.d.ts.map +0 -1
- package/dist/commonjs/utils/id_generator.js +0 -35
- package/dist/commonjs/utils/is_node.d.ts +0 -19
- package/dist/commonjs/utils/is_node.d.ts.map +0 -1
- package/dist/commonjs/utils/is_node.js +0 -21
- package/dist/commonjs/utils/is_non_empty_string.d.ts +0 -21
- package/dist/commonjs/utils/is_non_empty_string.d.ts.map +0 -1
- package/dist/commonjs/utils/is_non_empty_string.js +0 -25
- package/dist/commonjs/utils/is_null_or_undefined.d.ts +0 -25
- package/dist/commonjs/utils/is_null_or_undefined.d.ts.map +0 -1
- package/dist/commonjs/utils/is_null_or_undefined.js +0 -29
- package/dist/commonjs/utils/is_worker.d.ts +0 -6
- package/dist/commonjs/utils/is_worker.d.ts.map +0 -1
- package/dist/commonjs/utils/is_worker.js +0 -7
- package/dist/commonjs/utils/languages/ISO_639-1_to_ISO_639-3.d.ts +0 -23
- package/dist/commonjs/utils/languages/ISO_639-1_to_ISO_639-3.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/ISO_639-1_to_ISO_639-3.js +0 -207
- package/dist/commonjs/utils/languages/ISO_639-2_to_ISO_639-3.d.ts +0 -23
- package/dist/commonjs/utils/languages/ISO_639-2_to_ISO_639-3.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/ISO_639-2_to_ISO_639-3.js +0 -43
- package/dist/commonjs/utils/languages/index.d.ts +0 -21
- package/dist/commonjs/utils/languages/index.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/index.js +0 -22
- package/dist/commonjs/utils/languages/normalize.d.ts +0 -70
- package/dist/commonjs/utils/languages/normalize.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/normalize.js +0 -125
- package/dist/commonjs/utils/logger.d.ts +0 -157
- package/dist/commonjs/utils/logger.d.ts.map +0 -1
- package/dist/commonjs/utils/logger.js +0 -229
- package/dist/commonjs/utils/monotonic_timestamp.d.ts +0 -23
- package/dist/commonjs/utils/monotonic_timestamp.d.ts.map +0 -1
- package/dist/commonjs/utils/monotonic_timestamp.js +0 -40
- package/dist/commonjs/utils/noop.d.ts +0 -24
- package/dist/commonjs/utils/noop.d.ts.map +0 -1
- package/dist/commonjs/utils/noop.js +0 -27
- package/dist/commonjs/utils/object_assign.d.ts +0 -47
- package/dist/commonjs/utils/object_assign.d.ts.map +0 -1
- package/dist/commonjs/utils/object_assign.js +0 -75
- package/dist/commonjs/utils/object_values.d.ts +0 -31
- package/dist/commonjs/utils/object_values.d.ts.map +0 -1
- package/dist/commonjs/utils/object_values.js +0 -27
- package/dist/commonjs/utils/queue_microtask.d.ts +0 -3
- package/dist/commonjs/utils/queue_microtask.d.ts.map +0 -1
- package/dist/commonjs/utils/queue_microtask.js +0 -7
- package/dist/commonjs/utils/ranges.d.ts +0 -214
- package/dist/commonjs/utils/ranges.d.ts.map +0 -1
- package/dist/commonjs/utils/ranges.js +0 -519
- package/dist/commonjs/utils/reference.d.ts +0 -215
- package/dist/commonjs/utils/reference.d.ts.map +0 -1
- package/dist/commonjs/utils/reference.js +0 -333
- package/dist/commonjs/utils/request/fetch.d.ts +0 -81
- package/dist/commonjs/utils/request/fetch.d.ts.map +0 -1
- package/dist/commonjs/utils/request/fetch.js +0 -255
- package/dist/commonjs/utils/request/index.d.ts +0 -25
- package/dist/commonjs/utils/request/index.d.ts.map +0 -1
- package/dist/commonjs/utils/request/index.js +0 -27
- package/dist/commonjs/utils/request/request_error.d.ts +0 -47
- package/dist/commonjs/utils/request/request_error.d.ts.map +0 -1
- package/dist/commonjs/utils/request/request_error.js +0 -89
- package/dist/commonjs/utils/request/xhr.d.ts +0 -100
- package/dist/commonjs/utils/request/xhr.d.ts.map +0 -1
- package/dist/commonjs/utils/request/xhr.js +0 -205
- package/dist/commonjs/utils/retry_promise_with_backoff.d.ts +0 -55
- package/dist/commonjs/utils/retry_promise_with_backoff.d.ts.map +0 -1
- package/dist/commonjs/utils/retry_promise_with_backoff.js +0 -135
- package/dist/commonjs/utils/sleep.d.ts +0 -11
- package/dist/commonjs/utils/sleep.d.ts.map +0 -1
- package/dist/commonjs/utils/sleep.js +0 -17
- package/dist/commonjs/utils/slice_uint8array.d.ts +0 -28
- package/dist/commonjs/utils/slice_uint8array.d.ts.map +0 -1
- package/dist/commonjs/utils/slice_uint8array.js +0 -44
- package/dist/commonjs/utils/sorted_list.d.ts +0 -128
- package/dist/commonjs/utils/sorted_list.d.ts.map +0 -1
- package/dist/commonjs/utils/sorted_list.js +0 -185
- package/dist/commonjs/utils/starts_with.d.ts +0 -27
- package/dist/commonjs/utils/starts_with.d.ts.map +0 -1
- package/dist/commonjs/utils/starts_with.js +0 -38
- package/dist/commonjs/utils/string_parsing.d.ts +0 -89
- package/dist/commonjs/utils/string_parsing.d.ts.map +0 -1
- package/dist/commonjs/utils/string_parsing.js +0 -382
- package/dist/commonjs/utils/sync_or_async.d.ts +0 -71
- package/dist/commonjs/utils/sync_or_async.d.ts.map +0 -1
- package/dist/commonjs/utils/sync_or_async.js +0 -53
- package/dist/commonjs/utils/task_canceller.d.ts +0 -263
- package/dist/commonjs/utils/task_canceller.d.ts.map +0 -1
- package/dist/commonjs/utils/task_canceller.js +0 -344
- package/dist/commonjs/utils/url-utils.d.ts +0 -50
- package/dist/commonjs/utils/url-utils.d.ts.map +0 -1
- package/dist/commonjs/utils/url-utils.js +0 -356
- package/dist/commonjs/utils/warn_once.d.ts +0 -24
- package/dist/commonjs/utils/warn_once.d.ts.map +0 -1
- package/dist/commonjs/utils/warn_once.js +0 -34
- package/dist/commonjs/utils/weak_map_memory.d.ts +0 -71
- package/dist/commonjs/utils/weak_map_memory.d.ts.map +0 -1
- package/dist/commonjs/utils/weak_map_memory.js +0 -87
- package/dist/commonjs/utils/wrapInPromise.d.ts +0 -8
- package/dist/commonjs/utils/wrapInPromise.d.ts.map +0 -1
- package/dist/commonjs/utils/wrapInPromise.js +0 -25
- package/dist/commonjs/utils/xml-parser.d.ts +0 -71
- package/dist/commonjs/utils/xml-parser.d.ts.map +0 -1
- package/dist/commonjs/utils/xml-parser.js +0 -358
- package/dist/commonjs/worker_entry_point.d.ts +0 -6
- package/dist/commonjs/worker_entry_point.d.ts.map +0 -1
- package/dist/commonjs/worker_entry_point.js +0 -8
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.d.ts +0 -4
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +0 -1
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.js +0 -3
- package/dist/es2017/__GENERATED_CODE/embedded_worker.d.ts +0 -4
- package/dist/es2017/__GENERATED_CODE/embedded_worker.d.ts.map +0 -1
- package/dist/es2017/__GENERATED_CODE/embedded_worker.js +0 -3
- package/dist/es2017/__GENERATED_CODE/index.d.ts +0 -3
- package/dist/es2017/__GENERATED_CODE/index.d.ts.map +0 -1
- package/dist/es2017/__GENERATED_CODE/index.js +0 -2
- package/dist/es2017/compat/add_class_name.d.ts +0 -23
- package/dist/es2017/compat/add_class_name.d.ts.map +0 -1
- package/dist/es2017/compat/add_class_name.js +0 -36
- package/dist/es2017/compat/add_text_track.d.ts +0 -32
- package/dist/es2017/compat/add_text_track.d.ts.map +0 -1
- package/dist/es2017/compat/add_text_track.js +0 -49
- package/dist/es2017/compat/browser_compatibility_types.d.ts +0 -384
- package/dist/es2017/compat/browser_compatibility_types.d.ts.map +0 -1
- package/dist/es2017/compat/browser_compatibility_types.js +0 -42
- package/dist/es2017/compat/browser_version.d.ts +0 -25
- package/dist/es2017/compat/browser_version.d.ts.map +0 -1
- package/dist/es2017/compat/browser_version.js +0 -41
- package/dist/es2017/compat/can_patch_isobmff.d.ts +0 -26
- package/dist/es2017/compat/can_patch_isobmff.d.ts.map +0 -1
- package/dist/es2017/compat/can_patch_isobmff.js +0 -29
- package/dist/es2017/compat/can_preload_before_play.d.ts +0 -11
- package/dist/es2017/compat/can_preload_before_play.d.ts.map +0 -1
- package/dist/es2017/compat/can_preload_before_play.js +0 -20
- package/dist/es2017/compat/can_rely_on_request_media_key_system_access.d.ts +0 -41
- package/dist/es2017/compat/can_rely_on_request_media_key_system_access.d.ts.map +0 -1
- package/dist/es2017/compat/can_rely_on_request_media_key_system_access.js +0 -53
- package/dist/es2017/compat/can_rely_on_video_visibility_and_size.d.ts +0 -38
- package/dist/es2017/compat/can_rely_on_video_visibility_and_size.d.ts.map +0 -1
- package/dist/es2017/compat/can_rely_on_video_visibility_and_size.js +0 -49
- package/dist/es2017/compat/can_reuse_media_keys.d.ts +0 -20
- package/dist/es2017/compat/can_reuse_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/can_reuse_media_keys.js +0 -30
- package/dist/es2017/compat/change_source_buffer_type.d.ts +0 -49
- package/dist/es2017/compat/change_source_buffer_type.d.ts.map +0 -1
- package/dist/es2017/compat/change_source_buffer_type.js +0 -37
- package/dist/es2017/compat/clear_element_src.d.ts +0 -22
- package/dist/es2017/compat/clear_element_src.d.ts.map +0 -1
- package/dist/es2017/compat/clear_element_src.js +0 -53
- package/dist/es2017/compat/eme/close_session.d.ts +0 -31
- package/dist/es2017/compat/eme/close_session.d.ts.map +0 -1
- package/dist/es2017/compat/eme/close_session.js +0 -102
- package/dist/es2017/compat/eme/constants.d.ts +0 -17
- package/dist/es2017/compat/eme/constants.d.ts.map +0 -1
- package/dist/es2017/compat/eme/constants.js +0 -19
- package/dist/es2017/compat/eme/custom_key_system_access.d.ts +0 -50
- package/dist/es2017/compat/eme/custom_key_system_access.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_key_system_access.js +0 -40
- package/dist/es2017/compat/eme/custom_media_keys/ie11_media_keys.d.ts +0 -32
- package/dist/es2017/compat/eme/custom_media_keys/ie11_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/ie11_media_keys.js +0 -149
- package/dist/es2017/compat/eme/custom_media_keys/index.d.ts +0 -7
- package/dist/es2017/compat/eme/custom_media_keys/index.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/index.js +0 -6
- package/dist/es2017/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts +0 -28
- package/dist/es2017/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/moz_media_keys_constructor.js +0 -58
- package/dist/es2017/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts +0 -44
- package/dist/es2017/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/ms_media_keys_constructor.js +0 -26
- package/dist/es2017/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts +0 -42
- package/dist/es2017/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/old_webkit_media_keys.js +0 -166
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys.d.ts +0 -33
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys.js +0 -203
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts +0 -23
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys_constructor.js +0 -27
- package/dist/es2017/compat/eme/eme-api-implementation.d.ts +0 -78
- package/dist/es2017/compat/eme/eme-api-implementation.d.ts.map +0 -1
- package/dist/es2017/compat/eme/eme-api-implementation.js +0 -207
- package/dist/es2017/compat/eme/generate_key_request.d.ts +0 -55
- package/dist/es2017/compat/eme/generate_key_request.d.ts.map +0 -1
- package/dist/es2017/compat/eme/generate_key_request.js +0 -144
- package/dist/es2017/compat/eme/get_init_data.d.ts +0 -60
- package/dist/es2017/compat/eme/get_init_data.d.ts.map +0 -1
- package/dist/es2017/compat/eme/get_init_data.js +0 -110
- package/dist/es2017/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts +0 -24
- package/dist/es2017/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts.map +0 -1
- package/dist/es2017/compat/eme/get_uuid_kid_from_keystatus_kid.js +0 -33
- package/dist/es2017/compat/eme/get_webkit_fairplay_initdata.d.ts +0 -26
- package/dist/es2017/compat/eme/get_webkit_fairplay_initdata.d.ts.map +0 -1
- package/dist/es2017/compat/eme/get_webkit_fairplay_initdata.js +0 -54
- package/dist/es2017/compat/eme/index.d.ts +0 -26
- package/dist/es2017/compat/eme/index.d.ts.map +0 -1
- package/dist/es2017/compat/eme/index.js +0 -22
- package/dist/es2017/compat/eme/load_session.d.ts +0 -31
- package/dist/es2017/compat/eme/load_session.d.ts.map +0 -1
- package/dist/es2017/compat/eme/load_session.js +0 -53
- package/dist/es2017/compat/eme/set_media_keys.d.ts +0 -10
- package/dist/es2017/compat/eme/set_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/set_media_keys.js +0 -33
- package/dist/es2017/compat/enable_audio_track.d.ts +0 -12
- package/dist/es2017/compat/enable_audio_track.d.ts.map +0 -1
- package/dist/es2017/compat/enable_audio_track.js +0 -26
- package/dist/es2017/compat/env_detector.d.ts +0 -100
- package/dist/es2017/compat/env_detector.d.ts.map +0 -1
- package/dist/es2017/compat/env_detector.js +0 -185
- package/dist/es2017/compat/event_listeners.d.ts +0 -175
- package/dist/es2017/compat/event_listeners.d.ts.map +0 -1
- package/dist/es2017/compat/event_listeners.js +0 -411
- package/dist/es2017/compat/generate_init_data.d.ts +0 -14
- package/dist/es2017/compat/generate_init_data.d.ts.map +0 -1
- package/dist/es2017/compat/generate_init_data.js +0 -56
- package/dist/es2017/compat/get_start_date.d.ts +0 -32
- package/dist/es2017/compat/get_start_date.d.ts.map +0 -1
- package/dist/es2017/compat/get_start_date.js +0 -44
- package/dist/es2017/compat/has_issues_with_high_media_source_duration.d.ts +0 -22
- package/dist/es2017/compat/has_issues_with_high_media_source_duration.d.ts.map +0 -1
- package/dist/es2017/compat/has_issues_with_high_media_source_duration.js +0 -29
- package/dist/es2017/compat/has_mse_in_worker.d.ts +0 -3
- package/dist/es2017/compat/has_mse_in_worker.d.ts.map +0 -1
- package/dist/es2017/compat/has_mse_in_worker.js +0 -4
- package/dist/es2017/compat/has_webassembly.d.ts +0 -7
- package/dist/es2017/compat/has_webassembly.d.ts.map +0 -1
- package/dist/es2017/compat/has_webassembly.js +0 -6
- package/dist/es2017/compat/has_worker_api.d.ts +0 -10
- package/dist/es2017/compat/has_worker_api.d.ts.map +0 -1
- package/dist/es2017/compat/has_worker_api.js +0 -14
- package/dist/es2017/compat/is_codec_supported.d.ts +0 -28
- package/dist/es2017/compat/is_codec_supported.d.ts.map +0 -1
- package/dist/es2017/compat/is_codec_supported.js +0 -67
- package/dist/es2017/compat/is_seeking_approximate.d.ts +0 -29
- package/dist/es2017/compat/is_seeking_approximate.d.ts.map +0 -1
- package/dist/es2017/compat/is_seeking_approximate.js +0 -33
- package/dist/es2017/compat/is_vtt_cue.d.ts +0 -23
- package/dist/es2017/compat/is_vtt_cue.d.ts.map +0 -1
- package/dist/es2017/compat/is_vtt_cue.js +0 -24
- package/dist/es2017/compat/make_vtt_cue.d.ts +0 -27
- package/dist/es2017/compat/make_vtt_cue.d.ts.map +0 -1
- package/dist/es2017/compat/make_vtt_cue.js +0 -44
- package/dist/es2017/compat/may_media_element_fail_on_undecipherable_data.d.ts +0 -17
- package/dist/es2017/compat/may_media_element_fail_on_undecipherable_data.d.ts.map +0 -1
- package/dist/es2017/compat/may_media_element_fail_on_undecipherable_data.js +0 -22
- package/dist/es2017/compat/on_height_width_change.d.ts +0 -34
- package/dist/es2017/compat/on_height_width_change.d.ts.map +0 -1
- package/dist/es2017/compat/on_height_width_change.js +0 -72
- package/dist/es2017/compat/patch_webkit_source_buffer.d.ts +0 -17
- package/dist/es2017/compat/patch_webkit_source_buffer.d.ts.map +0 -1
- package/dist/es2017/compat/patch_webkit_source_buffer.js +0 -61
- package/dist/es2017/compat/remove_cue.d.ts +0 -23
- package/dist/es2017/compat/remove_cue.d.ts.map +0 -1
- package/dist/es2017/compat/remove_cue.js +0 -63
- package/dist/es2017/compat/should_await_set_media_keys.d.ts +0 -17
- package/dist/es2017/compat/should_await_set_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/should_await_set_media_keys.js +0 -24
- package/dist/es2017/compat/should_favour_custom_safari_EME.d.ts +0 -24
- package/dist/es2017/compat/should_favour_custom_safari_EME.d.ts.map +0 -1
- package/dist/es2017/compat/should_favour_custom_safari_EME.js +0 -34
- package/dist/es2017/compat/should_reload_media_source_on_decipherability_update.d.ts +0 -27
- package/dist/es2017/compat/should_reload_media_source_on_decipherability_update.d.ts.map +0 -1
- package/dist/es2017/compat/should_reload_media_source_on_decipherability_update.js +0 -32
- package/dist/es2017/compat/should_renew_media_key_system_access.d.ts +0 -22
- package/dist/es2017/compat/should_renew_media_key_system_access.d.ts.map +0 -1
- package/dist/es2017/compat/should_renew_media_key_system_access.js +0 -32
- package/dist/es2017/compat/should_unset_media_keys.d.ts +0 -23
- package/dist/es2017/compat/should_unset_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/should_unset_media_keys.js +0 -27
- package/dist/es2017/compat/should_validate_metadata.d.ts +0 -23
- package/dist/es2017/compat/should_validate_metadata.d.ts.map +0 -1
- package/dist/es2017/compat/should_validate_metadata.js +0 -27
- package/dist/es2017/compat/should_wait_for_data_before_loaded.d.ts +0 -25
- package/dist/es2017/compat/should_wait_for_data_before_loaded.d.ts.map +0 -1
- package/dist/es2017/compat/should_wait_for_data_before_loaded.js +0 -39
- package/dist/es2017/compat/should_wait_for_have_enough_data.d.ts +0 -14
- package/dist/es2017/compat/should_wait_for_have_enough_data.d.ts.map +0 -1
- package/dist/es2017/compat/should_wait_for_have_enough_data.js +0 -19
- package/dist/es2017/config.d.ts +0 -21
- package/dist/es2017/config.d.ts.map +0 -1
- package/dist/es2017/config.js +0 -28
- package/dist/es2017/core/adaptive/adaptive_representation_selector.d.ts +0 -294
- package/dist/es2017/core/adaptive/adaptive_representation_selector.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/adaptive_representation_selector.js +0 -407
- package/dist/es2017/core/adaptive/buffer_based_chooser.d.ts +0 -90
- package/dist/es2017/core/adaptive/buffer_based_chooser.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/buffer_based_chooser.js +0 -198
- package/dist/es2017/core/adaptive/guess_based_chooser.d.ts +0 -96
- package/dist/es2017/core/adaptive/guess_based_chooser.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/guess_based_chooser.js +0 -239
- package/dist/es2017/core/adaptive/index.d.ts +0 -20
- package/dist/es2017/core/adaptive/index.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/index.js +0 -17
- package/dist/es2017/core/adaptive/network_analyzer.d.ts +0 -74
- package/dist/es2017/core/adaptive/network_analyzer.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/network_analyzer.js +0 -347
- package/dist/es2017/core/adaptive/utils/bandwidth_estimator.d.ts +0 -48
- package/dist/es2017/core/adaptive/utils/bandwidth_estimator.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/bandwidth_estimator.js +0 -68
- package/dist/es2017/core/adaptive/utils/ewma.d.ts +0 -40
- package/dist/es2017/core/adaptive/utils/ewma.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/ewma.js +0 -49
- package/dist/es2017/core/adaptive/utils/filter_by_bitrate.d.ts +0 -26
- package/dist/es2017/core/adaptive/utils/filter_by_bitrate.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/filter_by_bitrate.js +0 -37
- package/dist/es2017/core/adaptive/utils/filter_by_resolution.d.ts +0 -32
- package/dist/es2017/core/adaptive/utils/filter_by_resolution.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/filter_by_resolution.js +0 -44
- package/dist/es2017/core/adaptive/utils/get_buffer_levels.d.ts +0 -25
- package/dist/es2017/core/adaptive/utils/get_buffer_levels.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/get_buffer_levels.js +0 -50
- package/dist/es2017/core/adaptive/utils/last_estimate_storage.d.ts +0 -62
- package/dist/es2017/core/adaptive/utils/last_estimate_storage.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/last_estimate_storage.js +0 -35
- package/dist/es2017/core/adaptive/utils/pending_requests_store.d.ts +0 -111
- package/dist/es2017/core/adaptive/utils/pending_requests_store.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/pending_requests_store.js +0 -75
- package/dist/es2017/core/adaptive/utils/representation_score_calculator.d.ts +0 -105
- package/dist/es2017/core/adaptive/utils/representation_score_calculator.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/representation_score_calculator.js +0 -117
- package/dist/es2017/core/adaptive/utils/select_optimal_representation.d.ts +0 -28
- package/dist/es2017/core/adaptive/utils/select_optimal_representation.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/select_optimal_representation.js +0 -36
- package/dist/es2017/core/cmcd/cmcd_data_builder.d.ts +0 -133
- package/dist/es2017/core/cmcd/cmcd_data_builder.d.ts.map +0 -1
- package/dist/es2017/core/cmcd/cmcd_data_builder.js +0 -340
- package/dist/es2017/core/cmcd/index.d.ts +0 -4
- package/dist/es2017/core/cmcd/index.d.ts.map +0 -1
- package/dist/es2017/core/cmcd/index.js +0 -2
- package/dist/es2017/core/fetchers/cdn_prioritizer.d.ts +0 -108
- package/dist/es2017/core/fetchers/cdn_prioritizer.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/cdn_prioritizer.js +0 -154
- package/dist/es2017/core/fetchers/index.d.ts +0 -25
- package/dist/es2017/core/fetchers/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/index.js +0 -20
- package/dist/es2017/core/fetchers/manifest/index.d.ts +0 -20
- package/dist/es2017/core/fetchers/manifest/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/manifest/index.js +0 -17
- package/dist/es2017/core/fetchers/manifest/manifest_fetcher.d.ts +0 -236
- package/dist/es2017/core/fetchers/manifest/manifest_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/manifest/manifest_fetcher.js +0 -538
- package/dist/es2017/core/fetchers/segment/index.d.ts +0 -22
- package/dist/es2017/core/fetchers/segment/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/index.js +0 -17
- package/dist/es2017/core/fetchers/segment/initialization_segment_cache.d.ts +0 -43
- package/dist/es2017/core/fetchers/segment/initialization_segment_cache.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/initialization_segment_cache.js +0 -48
- package/dist/es2017/core/fetchers/segment/prioritized_segment_fetcher.d.ts +0 -40
- package/dist/es2017/core/fetchers/segment/prioritized_segment_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/prioritized_segment_fetcher.js +0 -67
- package/dist/es2017/core/fetchers/segment/segment_fetcher.d.ts +0 -200
- package/dist/es2017/core/fetchers/segment/segment_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/segment_fetcher.js +0 -302
- package/dist/es2017/core/fetchers/segment/segment_queue.d.ts +0 -230
- package/dist/es2017/core/fetchers/segment/segment_queue.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/segment_queue.js +0 -421
- package/dist/es2017/core/fetchers/segment/segment_queue_creator.d.ts +0 -98
- package/dist/es2017/core/fetchers/segment/segment_queue_creator.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/segment_queue_creator.js +0 -73
- package/dist/es2017/core/fetchers/segment/task_prioritizer.d.ts +0 -155
- package/dist/es2017/core/fetchers/segment/task_prioritizer.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/task_prioritizer.js +0 -328
- package/dist/es2017/core/fetchers/thumbnails/index.d.ts +0 -5
- package/dist/es2017/core/fetchers/thumbnails/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/thumbnails/index.js +0 -2
- package/dist/es2017/core/fetchers/thumbnails/thumbnail_fetcher.d.ts +0 -79
- package/dist/es2017/core/fetchers/thumbnails/thumbnail_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/thumbnails/thumbnail_fetcher.js +0 -200
- package/dist/es2017/core/fetchers/utils/error_selector.d.ts +0 -23
- package/dist/es2017/core/fetchers/utils/error_selector.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/utils/error_selector.js +0 -31
- package/dist/es2017/core/fetchers/utils/schedule_request.d.ts +0 -99
- package/dist/es2017/core/fetchers/utils/schedule_request.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/utils/schedule_request.js +0 -331
- package/dist/es2017/core/main/common/FreezeResolver.d.ts +0 -176
- package/dist/es2017/core/main/common/FreezeResolver.d.ts.map +0 -1
- package/dist/es2017/core/main/common/FreezeResolver.js +0 -387
- package/dist/es2017/core/main/common/content_time_boundaries_observer.d.ts +0 -192
- package/dist/es2017/core/main/common/content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/es2017/core/main/common/content_time_boundaries_observer.js +0 -473
- package/dist/es2017/core/main/common/create_content_time_boundaries_observer.d.ts +0 -28
- package/dist/es2017/core/main/common/create_content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/es2017/core/main/common/create_content_time_boundaries_observer.js +0 -41
- package/dist/es2017/core/main/common/get_buffered_data_per_media_buffer.d.ts +0 -15
- package/dist/es2017/core/main/common/get_buffered_data_per_media_buffer.d.ts.map +0 -1
- package/dist/es2017/core/main/common/get_buffered_data_per_media_buffer.js +0 -34
- package/dist/es2017/core/main/common/get_thumbnail_data.d.ts +0 -13
- package/dist/es2017/core/main/common/get_thumbnail_data.d.ts.map +0 -1
- package/dist/es2017/core/main/common/get_thumbnail_data.js +0 -27
- package/dist/es2017/core/main/common/synchronize_sinks_on_observation.d.ts +0 -11
- package/dist/es2017/core/main/common/synchronize_sinks_on_observation.d.ts.map +0 -1
- package/dist/es2017/core/main/common/synchronize_sinks_on_observation.js +0 -17
- package/dist/es2017/core/main/worker/content_preparer.d.ts +0 -176
- package/dist/es2017/core/main/worker/content_preparer.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/content_preparer.js +0 -334
- package/dist/es2017/core/main/worker/globals.d.ts +0 -14
- package/dist/es2017/core/main/worker/globals.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/globals.js +0 -18
- package/dist/es2017/core/main/worker/index.d.ts +0 -3
- package/dist/es2017/core/main/worker/index.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/index.js +0 -2
- package/dist/es2017/core/main/worker/send_message.d.ts +0 -4
- package/dist/es2017/core/main/worker/send_message.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/send_message.js +0 -19
- package/dist/es2017/core/main/worker/track_choice_setter.d.ts +0 -20
- package/dist/es2017/core/main/worker/track_choice_setter.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/track_choice_setter.js +0 -126
- package/dist/es2017/core/main/worker/worker_main.d.ts +0 -2
- package/dist/es2017/core/main/worker/worker_main.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/worker_main.js +0 -871
- package/dist/es2017/core/main/worker/worker_text_displayer_interface.d.ts +0 -65
- package/dist/es2017/core/main/worker/worker_text_displayer_interface.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/worker_text_displayer_interface.js +0 -120
- package/dist/es2017/core/segment_sinks/garbage_collector.d.ts +0 -44
- package/dist/es2017/core/segment_sinks/garbage_collector.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/garbage_collector.js +0 -148
- package/dist/es2017/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts +0 -136
- package/dist/es2017/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.js +0 -269
- package/dist/es2017/core/segment_sinks/implementations/audio_video/index.d.ts +0 -18
- package/dist/es2017/core/segment_sinks/implementations/audio_video/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/audio_video/index.js +0 -17
- package/dist/es2017/core/segment_sinks/implementations/index.d.ts +0 -21
- package/dist/es2017/core/segment_sinks/implementations/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/index.js +0 -18
- package/dist/es2017/core/segment_sinks/implementations/text/index.d.ts +0 -5
- package/dist/es2017/core/segment_sinks/implementations/text/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/text/index.js +0 -2
- package/dist/es2017/core/segment_sinks/implementations/text/text_segment_sink.d.ts +0 -101
- package/dist/es2017/core/segment_sinks/implementations/text/text_segment_sink.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/text/text_segment_sink.js +0 -190
- package/dist/es2017/core/segment_sinks/implementations/types.d.ts +0 -308
- package/dist/es2017/core/segment_sinks/implementations/types.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/types.js +0 -112
- package/dist/es2017/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts +0 -30
- package/dist/es2017/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/utils/manual_time_ranges.js +0 -63
- package/dist/es2017/core/segment_sinks/index.d.ts +0 -25
- package/dist/es2017/core/segment_sinks/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/index.js +0 -21
- package/dist/es2017/core/segment_sinks/inventory/buffered_history.d.ts +0 -90
- package/dist/es2017/core/segment_sinks/inventory/buffered_history.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/buffered_history.js +0 -88
- package/dist/es2017/core/segment_sinks/inventory/index.d.ts +0 -24
- package/dist/es2017/core/segment_sinks/inventory/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/index.js +0 -18
- package/dist/es2017/core/segment_sinks/inventory/segment_inventory.d.ts +0 -240
- package/dist/es2017/core/segment_sinks/inventory/segment_inventory.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/segment_inventory.js +0 -1075
- package/dist/es2017/core/segment_sinks/inventory/types.d.ts +0 -33
- package/dist/es2017/core/segment_sinks/inventory/types.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/types.js +0 -16
- package/dist/es2017/core/segment_sinks/inventory/utils.d.ts +0 -34
- package/dist/es2017/core/segment_sinks/inventory/utils.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/utils.js +0 -48
- package/dist/es2017/core/segment_sinks/segment_sinks_store.d.ts +0 -198
- package/dist/es2017/core/segment_sinks/segment_sinks_store.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/segment_sinks_store.js +0 -323
- package/dist/es2017/core/stream/adaptation/adaptation_stream.d.ts +0 -34
- package/dist/es2017/core/stream/adaptation/adaptation_stream.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/adaptation_stream.js +0 -442
- package/dist/es2017/core/stream/adaptation/get_representations_switch_strategy.d.ts +0 -54
- package/dist/es2017/core/stream/adaptation/get_representations_switch_strategy.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/get_representations_switch_strategy.js +0 -112
- package/dist/es2017/core/stream/adaptation/index.d.ts +0 -19
- package/dist/es2017/core/stream/adaptation/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/index.js +0 -17
- package/dist/es2017/core/stream/adaptation/types.d.ts +0 -200
- package/dist/es2017/core/stream/adaptation/types.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/types.js +0 -1
- package/dist/es2017/core/stream/index.d.ts +0 -23
- package/dist/es2017/core/stream/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/index.js +0 -17
- package/dist/es2017/core/stream/orchestrator/get_time_ranges_for_content.d.ts +0 -31
- package/dist/es2017/core/stream/orchestrator/get_time_ranges_for_content.d.ts.map +0 -1
- package/dist/es2017/core/stream/orchestrator/get_time_ranges_for_content.js +0 -76
- package/dist/es2017/core/stream/orchestrator/index.d.ts +0 -20
- package/dist/es2017/core/stream/orchestrator/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/orchestrator/index.js +0 -17
- package/dist/es2017/core/stream/orchestrator/stream_orchestrator.d.ts +0 -176
- package/dist/es2017/core/stream/orchestrator/stream_orchestrator.d.ts.map +0 -1
- package/dist/es2017/core/stream/orchestrator/stream_orchestrator.js +0 -550
- package/dist/es2017/core/stream/period/index.d.ts +0 -19
- package/dist/es2017/core/stream/period/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/index.js +0 -17
- package/dist/es2017/core/stream/period/period_stream.d.ts +0 -50
- package/dist/es2017/core/stream/period/period_stream.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/period_stream.js +0 -432
- package/dist/es2017/core/stream/period/types.d.ts +0 -120
- package/dist/es2017/core/stream/period/types.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/types.js +0 -1
- package/dist/es2017/core/stream/period/utils/get_adaptation_switch_strategy.d.ts +0 -68
- package/dist/es2017/core/stream/period/utils/get_adaptation_switch_strategy.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/utils/get_adaptation_switch_strategy.js +0 -130
- package/dist/es2017/core/stream/representation/index.d.ts +0 -19
- package/dist/es2017/core/stream/representation/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/index.js +0 -17
- package/dist/es2017/core/stream/representation/representation_stream.d.ts +0 -54
- package/dist/es2017/core/stream/representation/representation_stream.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/representation_stream.js +0 -395
- package/dist/es2017/core/stream/representation/types.d.ts +0 -314
- package/dist/es2017/core/stream/representation/types.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/types.js +0 -1
- package/dist/es2017/core/stream/representation/utils/append_segment_to_buffer.d.ts +0 -36
- package/dist/es2017/core/stream/representation/utils/append_segment_to_buffer.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/append_segment_to_buffer.js +0 -79
- package/dist/es2017/core/stream/representation/utils/check_for_discontinuity.d.ts +0 -54
- package/dist/es2017/core/stream/representation/utils/check_for_discontinuity.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/check_for_discontinuity.js +0 -245
- package/dist/es2017/core/stream/representation/utils/get_buffer_status.d.ts +0 -73
- package/dist/es2017/core/stream/representation/utils/get_buffer_status.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/get_buffer_status.js +0 -198
- package/dist/es2017/core/stream/representation/utils/get_needed_segments.d.ts +0 -92
- package/dist/es2017/core/stream/representation/utils/get_needed_segments.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/get_needed_segments.js +0 -450
- package/dist/es2017/core/stream/representation/utils/get_segment_priority.d.ts +0 -29
- package/dist/es2017/core/stream/representation/utils/get_segment_priority.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/get_segment_priority.js +0 -38
- package/dist/es2017/core/stream/representation/utils/push_init_segment.d.ts +0 -42
- package/dist/es2017/core/stream/representation/utils/push_init_segment.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/push_init_segment.js +0 -36
- package/dist/es2017/core/stream/representation/utils/push_media_segment.d.ts +0 -43
- package/dist/es2017/core/stream/representation/utils/push_media_segment.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/push_media_segment.js +0 -63
- package/dist/es2017/core/types.d.ts +0 -9
- package/dist/es2017/core/types.d.ts.map +0 -1
- package/dist/es2017/core/types.js +0 -1
- package/dist/es2017/default_config.d.ts +0 -1200
- package/dist/es2017/default_config.d.ts.map +0 -1
- package/dist/es2017/default_config.js +0 -1234
- package/dist/es2017/errors/custom_loader_error.d.ts +0 -36
- package/dist/es2017/errors/custom_loader_error.d.ts.map +0 -1
- package/dist/es2017/errors/custom_loader_error.js +0 -39
- package/dist/es2017/errors/encrypted_media_error.d.ts +0 -72
- package/dist/es2017/errors/encrypted_media_error.d.ts.map +0 -1
- package/dist/es2017/errors/encrypted_media_error.js +0 -55
- package/dist/es2017/errors/error_codes.d.ts +0 -33
- package/dist/es2017/errors/error_codes.d.ts.map +0 -1
- package/dist/es2017/errors/error_codes.js +0 -68
- package/dist/es2017/errors/error_message.d.ts +0 -23
- package/dist/es2017/errors/error_message.d.ts.map +0 -1
- package/dist/es2017/errors/error_message.js +0 -24
- package/dist/es2017/errors/format_error.d.ts +0 -21
- package/dist/es2017/errors/format_error.d.ts.map +0 -1
- package/dist/es2017/errors/format_error.js +0 -29
- package/dist/es2017/errors/index.d.ts +0 -32
- package/dist/es2017/errors/index.d.ts.map +0 -1
- package/dist/es2017/errors/index.js +0 -25
- package/dist/es2017/errors/is_known_error.d.ts +0 -23
- package/dist/es2017/errors/is_known_error.d.ts.map +0 -1
- package/dist/es2017/errors/is_known_error.js +0 -32
- package/dist/es2017/errors/media_error.d.ts +0 -60
- package/dist/es2017/errors/media_error.d.ts.map +0 -1
- package/dist/es2017/errors/media_error.js +0 -53
- package/dist/es2017/errors/network_error.d.ts +0 -59
- package/dist/es2017/errors/network_error.d.ts.map +0 -1
- package/dist/es2017/errors/network_error.js +0 -65
- package/dist/es2017/errors/other_error.d.ts +0 -47
- package/dist/es2017/errors/other_error.d.ts.map +0 -1
- package/dist/es2017/errors/other_error.js +0 -51
- package/dist/es2017/errors/source_buffer_error.d.ts +0 -40
- package/dist/es2017/errors/source_buffer_error.d.ts.map +0 -1
- package/dist/es2017/errors/source_buffer_error.js +0 -42
- package/dist/es2017/errors/worker_initialization_error.d.ts +0 -19
- package/dist/es2017/errors/worker_initialization_error.d.ts.map +0 -1
- package/dist/es2017/errors/worker_initialization_error.js +0 -21
- package/dist/es2017/experimental/features/index.d.ts +0 -19
- package/dist/es2017/experimental/features/index.d.ts.map +0 -1
- package/dist/es2017/experimental/features/index.js +0 -18
- package/dist/es2017/experimental/features/local.d.ts +0 -20
- package/dist/es2017/experimental/features/local.d.ts.map +0 -1
- package/dist/es2017/experimental/features/local.js +0 -23
- package/dist/es2017/experimental/features/metaplaylist.d.ts +0 -20
- package/dist/es2017/experimental/features/metaplaylist.d.ts.map +0 -1
- package/dist/es2017/experimental/features/metaplaylist.js +0 -23
- package/dist/es2017/experimental/features/multi_thread.d.ts +0 -9
- package/dist/es2017/experimental/features/multi_thread.d.ts.map +0 -1
- package/dist/es2017/experimental/features/multi_thread.js +0 -10
- package/dist/es2017/experimental/index.d.ts +0 -3
- package/dist/es2017/experimental/index.d.ts.map +0 -1
- package/dist/es2017/experimental/index.js +0 -2
- package/dist/es2017/experimental/tools/DummyMediaElement/eme.d.ts +0 -225
- package/dist/es2017/experimental/tools/DummyMediaElement/eme.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/eme.js +0 -790
- package/dist/es2017/experimental/tools/DummyMediaElement/html5.d.ts +0 -376
- package/dist/es2017/experimental/tools/DummyMediaElement/html5.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/html5.js +0 -863
- package/dist/es2017/experimental/tools/DummyMediaElement/index.d.ts +0 -3
- package/dist/es2017/experimental/tools/DummyMediaElement/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/index.js +0 -2
- package/dist/es2017/experimental/tools/DummyMediaElement/mse.d.ts +0 -217
- package/dist/es2017/experimental/tools/DummyMediaElement/mse.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/mse.js +0 -586
- package/dist/es2017/experimental/tools/DummyMediaElement/utils.d.ts +0 -33
- package/dist/es2017/experimental/tools/DummyMediaElement/utils.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/utils.js +0 -457
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/dash.d.ts +0 -18
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/dash.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/dash.js +0 -20
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts +0 -18
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/metaplaylist.js +0 -20
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/index.d.ts +0 -19
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/index.js +0 -18
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts +0 -27
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/load_and_push_segment.js +0 -60
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts +0 -27
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.js +0 -71
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts +0 -30
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.js +0 -40
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/types.d.ts +0 -26
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/types.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/types.js +0 -16
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts +0 -55
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.js +0 -281
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts +0 -25
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.js +0 -29
- package/dist/es2017/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts +0 -24
- package/dist/es2017/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/createMetaplaylist/get_duration_from_manifest.js +0 -116
- package/dist/es2017/experimental/tools/createMetaplaylist/index.d.ts +0 -31
- package/dist/es2017/experimental/tools/createMetaplaylist/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/createMetaplaylist/index.js +0 -51
- package/dist/es2017/experimental/tools/index.d.ts +0 -20
- package/dist/es2017/experimental/tools/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/index.js +0 -19
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/api.d.ts +0 -73
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/api.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/api.js +0 -196
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/index.d.ts +0 -19
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/index.js +0 -17
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/log.d.ts +0 -19
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/log.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/log.js +0 -18
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts +0 -21
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.js +0 -58
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts +0 -22
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.js +0 -66
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts +0 -30
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.js +0 -60
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts +0 -24
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.js +0 -140
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts +0 -22
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.js +0 -49
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts +0 -22
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.js +0 -36
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/types.d.ts +0 -56
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/types.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/types.js +0 -16
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/utils.d.ts +0 -35
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/utils.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/utils.js +0 -82
- package/dist/es2017/features/add_features.d.ts +0 -21
- package/dist/es2017/features/add_features.d.ts.map +0 -1
- package/dist/es2017/features/add_features.js +0 -34
- package/dist/es2017/features/features_object.d.ts +0 -23
- package/dist/es2017/features/features_object.d.ts.map +0 -1
- package/dist/es2017/features/features_object.js +0 -33
- package/dist/es2017/features/index.d.ts +0 -36
- package/dist/es2017/features/index.d.ts.map +0 -1
- package/dist/es2017/features/index.js +0 -33
- package/dist/es2017/features/list/dash.d.ts +0 -24
- package/dist/es2017/features/list/dash.d.ts.map +0 -1
- package/dist/es2017/features/list/dash.js +0 -31
- package/dist/es2017/features/list/dash_wasm.d.ts +0 -24
- package/dist/es2017/features/list/dash_wasm.d.ts.map +0 -1
- package/dist/es2017/features/list/dash_wasm.js +0 -33
- package/dist/es2017/features/list/debug_element.d.ts +0 -9
- package/dist/es2017/features/list/debug_element.d.ts.map +0 -1
- package/dist/es2017/features/list/debug_element.js +0 -10
- package/dist/es2017/features/list/directfile.d.ts +0 -25
- package/dist/es2017/features/list/directfile.d.ts.map +0 -1
- package/dist/es2017/features/list/directfile.js +0 -27
- package/dist/es2017/features/list/eme.d.ts +0 -24
- package/dist/es2017/features/list/eme.d.ts.map +0 -1
- package/dist/es2017/features/list/eme.js +0 -25
- package/dist/es2017/features/list/html_sami_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_sami_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_sami_parser.js +0 -27
- package/dist/es2017/features/list/html_srt_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_srt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_srt_parser.js +0 -27
- package/dist/es2017/features/list/html_text_buffer.d.ts +0 -24
- package/dist/es2017/features/list/html_text_buffer.d.ts.map +0 -1
- package/dist/es2017/features/list/html_text_buffer.js +0 -25
- package/dist/es2017/features/list/html_ttml_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_ttml_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_ttml_parser.js +0 -27
- package/dist/es2017/features/list/html_vtt_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_vtt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_vtt_parser.js +0 -28
- package/dist/es2017/features/list/index.d.ts +0 -33
- package/dist/es2017/features/list/index.d.ts.map +0 -1
- package/dist/es2017/features/list/index.js +0 -32
- package/dist/es2017/features/list/media_source_main.d.ts +0 -9
- package/dist/es2017/features/list/media_source_main.d.ts.map +0 -1
- package/dist/es2017/features/list/media_source_main.js +0 -10
- package/dist/es2017/features/list/native_sami_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_sami_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_sami_parser.js +0 -27
- package/dist/es2017/features/list/native_srt_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_srt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_srt_parser.js +0 -27
- package/dist/es2017/features/list/native_text_buffer.d.ts +0 -24
- package/dist/es2017/features/list/native_text_buffer.d.ts.map +0 -1
- package/dist/es2017/features/list/native_text_buffer.js +0 -25
- package/dist/es2017/features/list/native_ttml_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_ttml_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_ttml_parser.js +0 -27
- package/dist/es2017/features/list/native_vtt_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_vtt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_vtt_parser.js +0 -28
- package/dist/es2017/features/list/smooth.d.ts +0 -24
- package/dist/es2017/features/list/smooth.d.ts.map +0 -1
- package/dist/es2017/features/list/smooth.js +0 -29
- package/dist/es2017/features/types.d.ts +0 -146
- package/dist/es2017/features/types.d.ts.map +0 -1
- package/dist/es2017/features/types.js +0 -16
- package/dist/es2017/index.d.ts +0 -18
- package/dist/es2017/index.d.ts.map +0 -1
- package/dist/es2017/index.js +0 -42
- package/dist/es2017/log.d.ts +0 -19
- package/dist/es2017/log.d.ts.map +0 -1
- package/dist/es2017/log.js +0 -19
- package/dist/es2017/main_thread/api/debug/buffer_graph.d.ts +0 -29
- package/dist/es2017/main_thread/api/debug/buffer_graph.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/buffer_graph.js +0 -175
- package/dist/es2017/main_thread/api/debug/buffer_size_graph.d.ts +0 -11
- package/dist/es2017/main_thread/api/debug/buffer_size_graph.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/buffer_size_graph.js +0 -102
- package/dist/es2017/main_thread/api/debug/constants.d.ts +0 -3
- package/dist/es2017/main_thread/api/debug/constants.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/constants.js +0 -2
- package/dist/es2017/main_thread/api/debug/index.d.ts +0 -3
- package/dist/es2017/main_thread/api/debug/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/index.js +0 -2
- package/dist/es2017/main_thread/api/debug/modules/general_info.d.ts +0 -4
- package/dist/es2017/main_thread/api/debug/modules/general_info.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/modules/general_info.js +0 -192
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_content.d.ts +0 -5
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_content.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_content.js +0 -169
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_size.d.ts +0 -4
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_size.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_size.js +0 -35
- package/dist/es2017/main_thread/api/debug/render.d.ts +0 -4
- package/dist/es2017/main_thread/api/debug/render.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/render.js +0 -32
- package/dist/es2017/main_thread/api/debug/utils.d.ts +0 -40
- package/dist/es2017/main_thread/api/debug/utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/utils.js +0 -54
- package/dist/es2017/main_thread/api/index.d.ts +0 -18
- package/dist/es2017/main_thread/api/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/index.js +0 -17
- package/dist/es2017/main_thread/api/option_utils.d.ts +0 -162
- package/dist/es2017/main_thread/api/option_utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/option_utils.js +0 -334
- package/dist/es2017/main_thread/api/public_api.d.ts +0 -995
- package/dist/es2017/main_thread/api/public_api.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/public_api.js +0 -2684
- package/dist/es2017/main_thread/api/utils.d.ts +0 -67
- package/dist/es2017/main_thread/api/utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/utils.js +0 -179
- package/dist/es2017/main_thread/decrypt/clear_on_stop.d.ts +0 -24
- package/dist/es2017/main_thread/decrypt/clear_on_stop.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/clear_on_stop.js +0 -42
- package/dist/es2017/main_thread/decrypt/content_decryptor.d.ts +0 -237
- package/dist/es2017/main_thread/decrypt/content_decryptor.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/content_decryptor.js +0 -921
- package/dist/es2017/main_thread/decrypt/create_or_load_session.d.ts +0 -65
- package/dist/es2017/main_thread/decrypt/create_or_load_session.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/create_or_load_session.js +0 -88
- package/dist/es2017/main_thread/decrypt/create_session.d.ts +0 -55
- package/dist/es2017/main_thread/decrypt/create_session.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/create_session.js +0 -152
- package/dist/es2017/main_thread/decrypt/dispose_decryption_resources.d.ts +0 -23
- package/dist/es2017/main_thread/decrypt/dispose_decryption_resources.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/dispose_decryption_resources.js +0 -24
- package/dist/es2017/main_thread/decrypt/find_key_system.d.ts +0 -86
- package/dist/es2017/main_thread/decrypt/find_key_system.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/find_key_system.js +0 -446
- package/dist/es2017/main_thread/decrypt/get_key_system_configuration.d.ts +0 -24
- package/dist/es2017/main_thread/decrypt/get_key_system_configuration.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/get_key_system_configuration.js +0 -32
- package/dist/es2017/main_thread/decrypt/get_media_keys.d.ts +0 -55
- package/dist/es2017/main_thread/decrypt/get_media_keys.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/get_media_keys.js +0 -114
- package/dist/es2017/main_thread/decrypt/index.d.ts +0 -27
- package/dist/es2017/main_thread/decrypt/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/index.js +0 -26
- package/dist/es2017/main_thread/decrypt/init_media_keys.d.ts +0 -30
- package/dist/es2017/main_thread/decrypt/init_media_keys.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/init_media_keys.js +0 -38
- package/dist/es2017/main_thread/decrypt/session_events_listener.d.ts +0 -77
- package/dist/es2017/main_thread/decrypt/session_events_listener.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/session_events_listener.js +0 -273
- package/dist/es2017/main_thread/decrypt/set_server_certificate.d.ts +0 -58
- package/dist/es2017/main_thread/decrypt/set_server_certificate.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/set_server_certificate.js +0 -96
- package/dist/es2017/main_thread/decrypt/types.d.ts +0 -380
- package/dist/es2017/main_thread/decrypt/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/types.js +0 -55
- package/dist/es2017/main_thread/decrypt/utils/are_init_values_compatible.d.ts +0 -35
- package/dist/es2017/main_thread/decrypt/utils/are_init_values_compatible.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/are_init_values_compatible.js +0 -141
- package/dist/es2017/main_thread/decrypt/utils/check_key_statuses.d.ts +0 -54
- package/dist/es2017/main_thread/decrypt/utils/check_key_statuses.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/check_key_statuses.js +0 -180
- package/dist/es2017/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts +0 -27
- package/dist/es2017/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/clean_old_loaded_sessions.js +0 -42
- package/dist/es2017/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts +0 -33
- package/dist/es2017/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/clean_old_stored_persistent_info.js +0 -43
- package/dist/es2017/main_thread/decrypt/utils/get_drm_system_id.d.ts +0 -21
- package/dist/es2017/main_thread/decrypt/utils/get_drm_system_id.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/get_drm_system_id.js +0 -37
- package/dist/es2017/main_thread/decrypt/utils/init_data_values_container.d.ts +0 -70
- package/dist/es2017/main_thread/decrypt/utils/init_data_values_container.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/init_data_values_container.js +0 -105
- package/dist/es2017/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts +0 -14
- package/dist/es2017/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/is_compatible_codec_supported.js +0 -28
- package/dist/es2017/main_thread/decrypt/utils/is_session_usable.d.ts +0 -25
- package/dist/es2017/main_thread/decrypt/utils/is_session_usable.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/is_session_usable.js +0 -54
- package/dist/es2017/main_thread/decrypt/utils/key_id_comparison.d.ts +0 -32
- package/dist/es2017/main_thread/decrypt/utils/key_id_comparison.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/key_id_comparison.js +0 -48
- package/dist/es2017/main_thread/decrypt/utils/key_session_record.d.ts +0 -105
- package/dist/es2017/main_thread/decrypt/utils/key_session_record.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/key_session_record.js +0 -152
- package/dist/es2017/main_thread/decrypt/utils/loaded_sessions_store.d.ts +0 -214
- package/dist/es2017/main_thread/decrypt/utils/loaded_sessions_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/loaded_sessions_store.js +0 -382
- package/dist/es2017/main_thread/decrypt/utils/media_keys_attacher.d.ts +0 -85
- package/dist/es2017/main_thread/decrypt/utils/media_keys_attacher.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/media_keys_attacher.js +0 -184
- package/dist/es2017/main_thread/decrypt/utils/persistent_sessions_store.d.ts +0 -93
- package/dist/es2017/main_thread/decrypt/utils/persistent_sessions_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/persistent_sessions_store.js +0 -369
- package/dist/es2017/main_thread/decrypt/utils/serializable_bytes.d.ts +0 -45
- package/dist/es2017/main_thread/decrypt/utils/serializable_bytes.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/serializable_bytes.js +0 -46
- package/dist/es2017/main_thread/decrypt/utils/server_certificate_store.d.ts +0 -65
- package/dist/es2017/main_thread/decrypt/utils/server_certificate_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/server_certificate_store.js +0 -121
- package/dist/es2017/main_thread/init/directfile_content_initializer.d.ts +0 -113
- package/dist/es2017/main_thread/init/directfile_content_initializer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/directfile_content_initializer.js +0 -264
- package/dist/es2017/main_thread/init/index.d.ts +0 -18
- package/dist/es2017/main_thread/init/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/index.js +0 -16
- package/dist/es2017/main_thread/init/media_source_content_initializer.d.ts +0 -260
- package/dist/es2017/main_thread/init/media_source_content_initializer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/media_source_content_initializer.js +0 -916
- package/dist/es2017/main_thread/init/multi_thread_content_initializer.d.ts +0 -308
- package/dist/es2017/main_thread/init/multi_thread_content_initializer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/multi_thread_content_initializer.js +0 -1559
- package/dist/es2017/main_thread/init/send_message.d.ts +0 -3
- package/dist/es2017/main_thread/init/send_message.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/send_message.js +0 -10
- package/dist/es2017/main_thread/init/types.d.ts +0 -237
- package/dist/es2017/main_thread/init/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/types.js +0 -29
- package/dist/es2017/main_thread/init/utils/create_core_playback_observer.d.ts +0 -96
- package/dist/es2017/main_thread/init/utils/create_core_playback_observer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/create_core_playback_observer.js +0 -106
- package/dist/es2017/main_thread/init/utils/create_media_source.d.ts +0 -54
- package/dist/es2017/main_thread/init/utils/create_media_source.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/create_media_source.js +0 -138
- package/dist/es2017/main_thread/init/utils/get_initial_time.d.ts +0 -77
- package/dist/es2017/main_thread/init/utils/get_initial_time.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/get_initial_time.js +0 -149
- package/dist/es2017/main_thread/init/utils/get_loaded_reference.d.ts +0 -28
- package/dist/es2017/main_thread/init/utils/get_loaded_reference.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/get_loaded_reference.js +0 -63
- package/dist/es2017/main_thread/init/utils/initial_seek_and_play.d.ts +0 -63
- package/dist/es2017/main_thread/init/utils/initial_seek_and_play.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/initial_seek_and_play.js +0 -224
- package/dist/es2017/main_thread/init/utils/initialize_content_decryption.d.ts +0 -99
- package/dist/es2017/main_thread/init/utils/initialize_content_decryption.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/initialize_content_decryption.js +0 -118
- package/dist/es2017/main_thread/init/utils/main_thread_text_displayer_interface.d.ts +0 -36
- package/dist/es2017/main_thread/init/utils/main_thread_text_displayer_interface.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/main_thread_text_displayer_interface.js +0 -50
- package/dist/es2017/main_thread/init/utils/rebuffering_controller.d.ts +0 -115
- package/dist/es2017/main_thread/init/utils/rebuffering_controller.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/rebuffering_controller.js +0 -444
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts +0 -40
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/are_same_stream_events.js +0 -33
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/index.d.ts +0 -19
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/index.js +0 -17
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts +0 -26
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.js +0 -82
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts +0 -52
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/stream_events_emitter.js +0 -173
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/types.d.ts +0 -42
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/types.js +0 -16
- package/dist/es2017/main_thread/init/utils/throw_on_media_error.d.ts +0 -25
- package/dist/es2017/main_thread/init/utils/throw_on_media_error.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/throw_on_media_error.js +0 -63
- package/dist/es2017/main_thread/init/utils/update_manifest_codec_support.d.ts +0 -35
- package/dist/es2017/main_thread/init/utils/update_manifest_codec_support.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/update_manifest_codec_support.js +0 -147
- package/dist/es2017/main_thread/render_thumbnail.d.ts +0 -27
- package/dist/es2017/main_thread/render_thumbnail.d.ts.map +0 -1
- package/dist/es2017/main_thread/render_thumbnail.js +0 -198
- package/dist/es2017/main_thread/text_displayer/html/html_parsers.d.ts +0 -20
- package/dist/es2017/main_thread/text_displayer/html/html_parsers.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/html_parsers.js +0 -22
- package/dist/es2017/main_thread/text_displayer/html/html_text_displayer.d.ts +0 -103
- package/dist/es2017/main_thread/text_displayer/html/html_text_displayer.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/html_text_displayer.js +0 -308
- package/dist/es2017/main_thread/text_displayer/html/index.d.ts +0 -3
- package/dist/es2017/main_thread/text_displayer/html/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/index.js +0 -2
- package/dist/es2017/main_thread/text_displayer/html/text_track_cues_store.d.ts +0 -66
- package/dist/es2017/main_thread/text_displayer/html/text_track_cues_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/text_track_cues_store.js +0 -356
- package/dist/es2017/main_thread/text_displayer/html/update_proportional_elements.d.ts +0 -16
- package/dist/es2017/main_thread/text_displayer/html/update_proportional_elements.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/update_proportional_elements.js +0 -61
- package/dist/es2017/main_thread/text_displayer/html/utils.d.ts +0 -55
- package/dist/es2017/main_thread/text_displayer/html/utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/utils.js +0 -133
- package/dist/es2017/main_thread/text_displayer/index.d.ts +0 -3
- package/dist/es2017/main_thread/text_displayer/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/index.js +0 -1
- package/dist/es2017/main_thread/text_displayer/manual_time_ranges.d.ts +0 -15
- package/dist/es2017/main_thread/text_displayer/manual_time_ranges.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/manual_time_ranges.js +0 -44
- package/dist/es2017/main_thread/text_displayer/native/index.d.ts +0 -3
- package/dist/es2017/main_thread/text_displayer/native/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/native/index.js +0 -2
- package/dist/es2017/main_thread/text_displayer/native/native_parsers.d.ts +0 -16
- package/dist/es2017/main_thread/text_displayer/native/native_parsers.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/native/native_parsers.js +0 -22
- package/dist/es2017/main_thread/text_displayer/native/native_text_displayer.d.ts +0 -59
- package/dist/es2017/main_thread/text_displayer/native/native_text_displayer.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/native/native_text_displayer.js +0 -200
- package/dist/es2017/main_thread/text_displayer/types.d.ts +0 -72
- package/dist/es2017/main_thread/text_displayer/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/types.js +0 -1
- package/dist/es2017/main_thread/tracks_store/index.d.ts +0 -21
- package/dist/es2017/main_thread/tracks_store/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/index.js +0 -18
- package/dist/es2017/main_thread/tracks_store/media_element_tracks_store.d.ts +0 -208
- package/dist/es2017/main_thread/tracks_store/media_element_tracks_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/media_element_tracks_store.js +0 -681
- package/dist/es2017/main_thread/tracks_store/track_dispatcher.d.ts +0 -105
- package/dist/es2017/main_thread/tracks_store/track_dispatcher.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/track_dispatcher.js +0 -153
- package/dist/es2017/main_thread/tracks_store/tracks_store.d.ts +0 -538
- package/dist/es2017/main_thread/tracks_store/tracks_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/tracks_store.js +0 -1354
- package/dist/es2017/main_thread/types.d.ts +0 -6
- package/dist/es2017/main_thread/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/types.js +0 -1
- package/dist/es2017/manifest/classes/adaptation.d.ts +0 -135
- package/dist/es2017/manifest/classes/adaptation.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/adaptation.js +0 -219
- package/dist/es2017/manifest/classes/codec_support_cache.d.ts +0 -45
- package/dist/es2017/manifest/classes/codec_support_cache.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/codec_support_cache.js +0 -58
- package/dist/es2017/manifest/classes/index.d.ts +0 -32
- package/dist/es2017/manifest/classes/index.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/index.js +0 -24
- package/dist/es2017/manifest/classes/manifest.d.ts +0 -425
- package/dist/es2017/manifest/classes/manifest.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/manifest.js +0 -436
- package/dist/es2017/manifest/classes/period.d.ts +0 -157
- package/dist/es2017/manifest/classes/period.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/period.js +0 -215
- package/dist/es2017/manifest/classes/representation.d.ts +0 -271
- package/dist/es2017/manifest/classes/representation.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation.js +0 -366
- package/dist/es2017/manifest/classes/representation_index/index.d.ts +0 -20
- package/dist/es2017/manifest/classes/representation_index/index.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation_index/index.js +0 -17
- package/dist/es2017/manifest/classes/representation_index/static.d.ts +0 -117
- package/dist/es2017/manifest/classes/representation_index/static.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation_index/static.js +0 -160
- package/dist/es2017/manifest/classes/representation_index/types.d.ts +0 -441
- package/dist/es2017/manifest/classes/representation_index/types.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation_index/types.js +0 -16
- package/dist/es2017/manifest/classes/types.d.ts +0 -30
- package/dist/es2017/manifest/classes/types.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/types.js +0 -30
- package/dist/es2017/manifest/classes/update_period_in_place.d.ts +0 -63
- package/dist/es2017/manifest/classes/update_period_in_place.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/update_period_in_place.js +0 -168
- package/dist/es2017/manifest/classes/update_periods.d.ts +0 -51
- package/dist/es2017/manifest/classes/update_periods.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/update_periods.js +0 -193
- package/dist/es2017/manifest/classes/utils.d.ts +0 -47
- package/dist/es2017/manifest/classes/utils.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/utils.js +0 -45
- package/dist/es2017/manifest/index.d.ts +0 -17
- package/dist/es2017/manifest/index.d.ts.map +0 -1
- package/dist/es2017/manifest/index.js +0 -3
- package/dist/es2017/manifest/types.d.ts +0 -466
- package/dist/es2017/manifest/types.d.ts.map +0 -1
- package/dist/es2017/manifest/types.js +0 -1
- package/dist/es2017/manifest/utils.d.ts +0 -184
- package/dist/es2017/manifest/utils.d.ts.map +0 -1
- package/dist/es2017/manifest/utils.js +0 -538
- package/dist/es2017/minimal.d.ts +0 -21
- package/dist/es2017/minimal.d.ts.map +0 -1
- package/dist/es2017/minimal.js +0 -28
- package/dist/es2017/mse/index.d.ts +0 -3
- package/dist/es2017/mse/index.d.ts.map +0 -1
- package/dist/es2017/mse/index.js +0 -1
- package/dist/es2017/mse/main_media_source_interface.d.ts +0 -128
- package/dist/es2017/mse/main_media_source_interface.d.ts.map +0 -1
- package/dist/es2017/mse/main_media_source_interface.js +0 -497
- package/dist/es2017/mse/types.d.ts +0 -289
- package/dist/es2017/mse/types.d.ts.map +0 -1
- package/dist/es2017/mse/types.js +0 -1
- package/dist/es2017/mse/utils/end_of_stream.d.ts +0 -35
- package/dist/es2017/mse/utils/end_of_stream.d.ts.map +0 -1
- package/dist/es2017/mse/utils/end_of_stream.js +0 -92
- package/dist/es2017/mse/utils/media_source_duration_updater.d.ts +0 -60
- package/dist/es2017/mse/utils/media_source_duration_updater.d.ts.map +0 -1
- package/dist/es2017/mse/utils/media_source_duration_updater.js +0 -267
- package/dist/es2017/mse/worker_media_source_interface.d.ts +0 -106
- package/dist/es2017/mse/worker_media_source_interface.d.ts.map +0 -1
- package/dist/es2017/mse/worker_media_source_interface.js +0 -305
- package/dist/es2017/multithread_types.d.ts +0 -915
- package/dist/es2017/multithread_types.d.ts.map +0 -1
- package/dist/es2017/multithread_types.js +0 -6
- package/dist/es2017/parsers/containers/isobmff/constants.d.ts +0 -24
- package/dist/es2017/parsers/containers/isobmff/constants.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/constants.js +0 -23
- package/dist/es2017/parsers/containers/isobmff/create_box.d.ts +0 -31
- package/dist/es2017/parsers/containers/isobmff/create_box.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/create_box.js +0 -65
- package/dist/es2017/parsers/containers/isobmff/drm/index.d.ts +0 -17
- package/dist/es2017/parsers/containers/isobmff/drm/index.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/drm/index.js +0 -16
- package/dist/es2017/parsers/containers/isobmff/drm/playready.d.ts +0 -22
- package/dist/es2017/parsers/containers/isobmff/drm/playready.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/drm/playready.js +0 -35
- package/dist/es2017/parsers/containers/isobmff/extract_complete_chunks.d.ts +0 -30
- package/dist/es2017/parsers/containers/isobmff/extract_complete_chunks.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/extract_complete_chunks.js +0 -85
- package/dist/es2017/parsers/containers/isobmff/find_complete_box.d.ts +0 -26
- package/dist/es2017/parsers/containers/isobmff/find_complete_box.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/find_complete_box.js +0 -54
- package/dist/es2017/parsers/containers/isobmff/get_box.d.ts +0 -107
- package/dist/es2017/parsers/containers/isobmff/get_box.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/get_box.js +0 -224
- package/dist/es2017/parsers/containers/isobmff/index.d.ts +0 -26
- package/dist/es2017/parsers/containers/isobmff/index.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/index.js +0 -24
- package/dist/es2017/parsers/containers/isobmff/read.d.ts +0 -58
- package/dist/es2017/parsers/containers/isobmff/read.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/read.js +0 -87
- package/dist/es2017/parsers/containers/isobmff/take_pssh_out.d.ts +0 -42
- package/dist/es2017/parsers/containers/isobmff/take_pssh_out.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/take_pssh_out.js +0 -82
- package/dist/es2017/parsers/containers/isobmff/utils.d.ts +0 -143
- package/dist/es2017/parsers/containers/isobmff/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/utils.js +0 -537
- package/dist/es2017/parsers/containers/matroska/index.d.ts +0 -18
- package/dist/es2017/parsers/containers/matroska/index.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/matroska/index.js +0 -16
- package/dist/es2017/parsers/containers/matroska/utils.d.ts +0 -35
- package/dist/es2017/parsers/containers/matroska/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/matroska/utils.js +0 -256
- package/dist/es2017/parsers/images/bif.d.ts +0 -40
- package/dist/es2017/parsers/images/bif.d.ts.map +0 -1
- package/dist/es2017/parsers/images/bif.js +0 -101
- package/dist/es2017/parsers/manifest/dash/common/attach_trickmode_track.d.ts +0 -29
- package/dist/es2017/parsers/manifest/dash/common/attach_trickmode_track.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/attach_trickmode_track.js +0 -44
- package/dist/es2017/parsers/manifest/dash/common/content_protection_parser.d.ts +0 -99
- package/dist/es2017/parsers/manifest/dash/common/content_protection_parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/content_protection_parser.js +0 -198
- package/dist/es2017/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts +0 -18
- package/dist/es2017/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/convert_supplemental_codecs.js +0 -24
- package/dist/es2017/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts +0 -44
- package/dist/es2017/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/flatten_overlapping_periods.js +0 -82
- package/dist/es2017/parsers/manifest/dash/common/get_clock_offset.d.ts +0 -30
- package/dist/es2017/parsers/manifest/dash/common/get_clock_offset.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_clock_offset.js +0 -38
- package/dist/es2017/parsers/manifest/dash/common/get_hdr_information.d.ts +0 -51
- package/dist/es2017/parsers/manifest/dash/common/get_hdr_information.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_hdr_information.js +0 -67
- package/dist/es2017/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts +0 -22
- package/dist/es2017/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_http_utc-timing_url.js +0 -25
- package/dist/es2017/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_minimum_and_maximum_positions.js +0 -33
- package/dist/es2017/parsers/manifest/dash/common/get_periods_time_infos.d.ts +0 -44
- package/dist/es2017/parsers/manifest/dash/common/get_periods_time_infos.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_periods_time_infos.js +0 -68
- package/dist/es2017/parsers/manifest/dash/common/index.d.ts +0 -22
- package/dist/es2017/parsers/manifest/dash/common/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/index.js +0 -19
- package/dist/es2017/parsers/manifest/dash/common/indexes/base.d.ts +0 -267
- package/dist/es2017/parsers/manifest/dash/common/indexes/base.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/base.js +0 -285
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_init_segment.d.ts +0 -33
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_init_segment.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_init_segment.js +0 -44
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts +0 -40
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_segments_from_timeline.js +0 -109
- package/dist/es2017/parsers/manifest/dash/common/indexes/index.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/common/indexes/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/index.js +0 -20
- package/dist/es2017/parsers/manifest/dash/common/indexes/list.d.ts +0 -209
- package/dist/es2017/parsers/manifest/dash/common/indexes/list.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/list.js +0 -227
- package/dist/es2017/parsers/manifest/dash/common/indexes/template.d.ts +0 -272
- package/dist/es2017/parsers/manifest/dash/common/indexes/template.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/template.js +0 -449
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts +0 -28
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.js +0 -43
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts +0 -19
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.js +0 -79
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts +0 -38
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.js +0 -63
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts +0 -43
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.js +0 -140
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/index.d.ts +0 -20
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/index.js +0 -17
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts +0 -37
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.js +0 -65
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts +0 -448
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.js +0 -685
- package/dist/es2017/parsers/manifest/dash/common/indexes/tokens.d.ts +0 -41
- package/dist/es2017/parsers/manifest/dash/common/indexes/tokens.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/tokens.js +0 -107
- package/dist/es2017/parsers/manifest/dash/common/indexes/utils.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/common/indexes/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/utils.js +0 -28
- package/dist/es2017/parsers/manifest/dash/common/infer_adaptation_type.d.ts +0 -48
- package/dist/es2017/parsers/manifest/dash/common/infer_adaptation_type.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/infer_adaptation_type.js +0 -154
- package/dist/es2017/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts +0 -120
- package/dist/es2017/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/manifest_bounds_calculator.js +0 -134
- package/dist/es2017/parsers/manifest/dash/common/parse_adaptation_sets.d.ts +0 -56
- package/dist/es2017/parsers/manifest/dash/common/parse_adaptation_sets.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_adaptation_sets.js +0 -434
- package/dist/es2017/parsers/manifest/dash/common/parse_availability_start_time.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/common/parse_availability_start_time.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_availability_start_time.js +0 -31
- package/dist/es2017/parsers/manifest/dash/common/parse_mpd.d.ts +0 -99
- package/dist/es2017/parsers/manifest/dash/common/parse_mpd.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_mpd.js +0 -291
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.d.ts +0 -71
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.js +0 -266
- package/dist/es2017/parsers/manifest/dash/common/parse_representation_index.d.ts +0 -87
- package/dist/es2017/parsers/manifest/dash/common/parse_representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_representation_index.js +0 -100
- package/dist/es2017/parsers/manifest/dash/common/parse_representations.d.ts +0 -51
- package/dist/es2017/parsers/manifest/dash/common/parse_representations.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_representations.js +0 -236
- package/dist/es2017/parsers/manifest/dash/common/resolve_base_urls.d.ts +0 -27
- package/dist/es2017/parsers/manifest/dash/common/resolve_base_urls.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/resolve_base_urls.js +0 -46
- package/dist/es2017/parsers/manifest/dash/index.d.ts +0 -17
- package/dist/es2017/parsers/manifest/dash/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/index.js +0 -16
- package/dist/es2017/parsers/manifest/dash/js-parser/index.d.ts +0 -18
- package/dist/es2017/parsers/manifest/dash/js-parser/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/index.js +0 -17
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.js +0 -365
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/BaseURL.js +0 -30
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.js +0 -45
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.js +0 -84
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/EventStream.js +0 -101
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Initialization.js +0 -45
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/MPD.js +0 -194
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Period.js +0 -156
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Representation.js +0 -227
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.js +0 -111
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentList.js +0 -41
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.js +0 -84
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.js +0 -33
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.js +0 -57
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts +0 -176
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/utils.js +0 -309
- package/dist/es2017/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/parse_from_xml_string.js +0 -114
- package/dist/es2017/parsers/manifest/dash/node_parser_types.d.ts +0 -404
- package/dist/es2017/parsers/manifest/dash/node_parser_types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/node_parser_types.js +0 -16
- package/dist/es2017/parsers/manifest/dash/parsers_types.d.ts +0 -84
- package/dist/es2017/parsers/manifest/dash/parsers_types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/parsers_types.js +0 -16
- package/dist/es2017/parsers/manifest/dash/wasm-parser/index.d.ts +0 -20
- package/dist/es2017/parsers/manifest/dash/wasm-parser/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/index.js +0 -17
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts +0 -112
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.js +0 -355
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts +0 -33
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.js +0 -272
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.js +0 -30
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.js +0 -41
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.js +0 -58
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts +0 -34
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.js +0 -112
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts +0 -4
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Label.js +0 -9
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts +0 -29
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/MPD.js +0 -164
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts +0 -34
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Period.js +0 -148
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts +0 -33
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Representation.js +0 -179
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.js +0 -35
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts +0 -19
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.js +0 -88
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts +0 -27
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.js +0 -45
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts +0 -19
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.js +0 -101
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.js +0 -52
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts +0 -30
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/XLink.js +0 -47
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts +0 -17
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/index.js +0 -16
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts +0 -28
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/root.js +0 -50
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts +0 -39
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/parsers_stack.js +0 -58
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/types.d.ts +0 -149
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/types.js +0 -16
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/utils.d.ts +0 -30
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/utils.js +0 -40
- package/dist/es2017/parsers/manifest/index.d.ts +0 -17
- package/dist/es2017/parsers/manifest/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/index.js +0 -16
- package/dist/es2017/parsers/manifest/local/index.d.ts +0 -19
- package/dist/es2017/parsers/manifest/local/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/index.js +0 -17
- package/dist/es2017/parsers/manifest/local/parse_local_manifest.d.ts +0 -23
- package/dist/es2017/parsers/manifest/local/parse_local_manifest.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/parse_local_manifest.js +0 -133
- package/dist/es2017/parsers/manifest/local/representation_index.d.ts +0 -99
- package/dist/es2017/parsers/manifest/local/representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/representation_index.js +0 -243
- package/dist/es2017/parsers/manifest/local/types.d.ts +0 -288
- package/dist/es2017/parsers/manifest/local/types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/types.js +0 -16
- package/dist/es2017/parsers/manifest/metaplaylist/index.d.ts +0 -20
- package/dist/es2017/parsers/manifest/metaplaylist/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/metaplaylist/index.js +0 -17
- package/dist/es2017/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts +0 -65
- package/dist/es2017/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/metaplaylist/metaplaylist_parser.js +0 -265
- package/dist/es2017/parsers/manifest/metaplaylist/representation_index.d.ts +0 -165
- package/dist/es2017/parsers/manifest/metaplaylist/representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/metaplaylist/representation_index.js +0 -234
- package/dist/es2017/parsers/manifest/smooth/create_parser.d.ts +0 -34
- package/dist/es2017/parsers/manifest/smooth/create_parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/create_parser.js +0 -516
- package/dist/es2017/parsers/manifest/smooth/get_codecs.d.ts +0 -27
- package/dist/es2017/parsers/manifest/smooth/get_codecs.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/get_codecs.js +0 -50
- package/dist/es2017/parsers/manifest/smooth/index.d.ts +0 -22
- package/dist/es2017/parsers/manifest/smooth/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/index.js +0 -19
- package/dist/es2017/parsers/manifest/smooth/parse_C_nodes.d.ts +0 -27
- package/dist/es2017/parsers/manifest/smooth/parse_C_nodes.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/parse_C_nodes.js +0 -60
- package/dist/es2017/parsers/manifest/smooth/parse_protection_node.d.ts +0 -30
- package/dist/es2017/parsers/manifest/smooth/parse_protection_node.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/parse_protection_node.js +0 -62
- package/dist/es2017/parsers/manifest/smooth/representation_index.d.ts +0 -242
- package/dist/es2017/parsers/manifest/smooth/representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/representation_index.js +0 -420
- package/dist/es2017/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts +0 -120
- package/dist/es2017/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/shared_smooth_segment_timeline.js +0 -156
- package/dist/es2017/parsers/manifest/smooth/utils/add_segment_infos.d.ts +0 -39
- package/dist/es2017/parsers/manifest/smooth/utils/add_segment_infos.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/add_segment_infos.js +0 -63
- package/dist/es2017/parsers/manifest/smooth/utils/parseBoolean.d.ts +0 -21
- package/dist/es2017/parsers/manifest/smooth/utils/parseBoolean.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/parseBoolean.js +0 -30
- package/dist/es2017/parsers/manifest/smooth/utils/reduceChildren.d.ts +0 -24
- package/dist/es2017/parsers/manifest/smooth/utils/reduceChildren.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/reduceChildren.js +0 -31
- package/dist/es2017/parsers/manifest/smooth/utils/tokens.d.ts +0 -29
- package/dist/es2017/parsers/manifest/smooth/utils/tokens.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/tokens.js +0 -34
- package/dist/es2017/parsers/manifest/types.d.ts +0 -443
- package/dist/es2017/parsers/manifest/types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/types.js +0 -16
- package/dist/es2017/parsers/manifest/utils/check_manifest_ids.d.ts +0 -26
- package/dist/es2017/parsers/manifest/utils/check_manifest_ids.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/check_manifest_ids.js +0 -80
- package/dist/es2017/parsers/manifest/utils/clear_timeline_from_position.d.ts +0 -26
- package/dist/es2017/parsers/manifest/utils/clear_timeline_from_position.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/clear_timeline_from_position.js +0 -73
- package/dist/es2017/parsers/manifest/utils/get_first_time_from_adaptation.d.ts +0 -28
- package/dist/es2017/parsers/manifest/utils/get_first_time_from_adaptation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_first_time_from_adaptation.js +0 -44
- package/dist/es2017/parsers/manifest/utils/get_last_time_from_adaptation.d.ts +0 -30
- package/dist/es2017/parsers/manifest/utils/get_last_time_from_adaptation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_last_time_from_adaptation.js +0 -46
- package/dist/es2017/parsers/manifest/utils/get_maximum_positions.d.ts +0 -25
- package/dist/es2017/parsers/manifest/utils/get_maximum_positions.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_maximum_positions.js +0 -66
- package/dist/es2017/parsers/manifest/utils/get_minimum_position.d.ts +0 -22
- package/dist/es2017/parsers/manifest/utils/get_minimum_position.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_minimum_position.js +0 -62
- package/dist/es2017/parsers/manifest/utils/index_helpers.d.ts +0 -89
- package/dist/es2017/parsers/manifest/utils/index_helpers.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/index_helpers.js +0 -146
- package/dist/es2017/parsers/manifest/utils/update_segment_timeline.d.ts +0 -34
- package/dist/es2017/parsers/manifest/utils/update_segment_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/update_segment_timeline.js +0 -129
- package/dist/es2017/parsers/texttracks/index.d.ts +0 -17
- package/dist/es2017/parsers/texttracks/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/index.js +0 -16
- package/dist/es2017/parsers/texttracks/sami/html.d.ts +0 -32
- package/dist/es2017/parsers/texttracks/sami/html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/sami/html.js +0 -201
- package/dist/es2017/parsers/texttracks/sami/native.d.ts +0 -37
- package/dist/es2017/parsers/texttracks/sami/native.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/sami/native.js +0 -165
- package/dist/es2017/parsers/texttracks/srt/find_end_of_cue_block.d.ts +0 -30
- package/dist/es2017/parsers/texttracks/srt/find_end_of_cue_block.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/find_end_of_cue_block.js +0 -39
- package/dist/es2017/parsers/texttracks/srt/get_cue_blocks.d.ts +0 -23
- package/dist/es2017/parsers/texttracks/srt/get_cue_blocks.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/get_cue_blocks.js +0 -47
- package/dist/es2017/parsers/texttracks/srt/html.d.ts +0 -28
- package/dist/es2017/parsers/texttracks/srt/html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/html.js +0 -167
- package/dist/es2017/parsers/texttracks/srt/native.d.ts +0 -30
- package/dist/es2017/parsers/texttracks/srt/native.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/native.js +0 -63
- package/dist/es2017/parsers/texttracks/srt/parse_cue.d.ts +0 -31
- package/dist/es2017/parsers/texttracks/srt/parse_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/parse_cue.js +0 -55
- package/dist/es2017/parsers/texttracks/srt/parse_timestamp.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/srt/parse_timestamp.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/parse_timestamp.js +0 -33
- package/dist/es2017/parsers/texttracks/ttml/get_parameters.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/ttml/get_parameters.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/get_parameters.js +0 -87
- package/dist/es2017/parsers/texttracks/ttml/get_styling.d.ts +0 -42
- package/dist/es2017/parsers/texttracks/ttml/get_styling.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/get_styling.js +0 -127
- package/dist/es2017/parsers/texttracks/ttml/get_time_delimiters.d.ts +0 -27
- package/dist/es2017/parsers/texttracks/ttml/get_time_delimiters.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/get_time_delimiters.js +0 -40
- package/dist/es2017/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts +0 -49
- package/dist/es2017/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.js +0 -61
- package/dist/es2017/parsers/texttracks/ttml/html/apply_extent.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/apply_extent.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_extent.js +0 -57
- package/dist/es2017/parsers/texttracks/ttml/html/apply_font_size.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/apply_font_size.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_font_size.js +0 -56
- package/dist/es2017/parsers/texttracks/ttml/html/apply_line_height.d.ts +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/apply_line_height.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_line_height.js +0 -45
- package/dist/es2017/parsers/texttracks/ttml/html/apply_origin.d.ts +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/apply_origin.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_origin.js +0 -56
- package/dist/es2017/parsers/texttracks/ttml/html/apply_padding.d.ts +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/apply_padding.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_padding.js +0 -135
- package/dist/es2017/parsers/texttracks/ttml/html/create_element.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/ttml/html/create_element.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/create_element.js +0 -448
- package/dist/es2017/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts +0 -27
- package/dist/es2017/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/generate_css_test_outline.js +0 -41
- package/dist/es2017/parsers/texttracks/ttml/html/index.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/index.js +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/parse_cue.d.ts +0 -27
- package/dist/es2017/parsers/texttracks/ttml/html/parse_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/parse_cue.js +0 -40
- package/dist/es2017/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts +0 -36
- package/dist/es2017/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/parse_ttml_to_div.js +0 -62
- package/dist/es2017/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/ttml_color_to_css_color.js +0 -73
- package/dist/es2017/parsers/texttracks/ttml/native/index.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/native/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/native/index.js +0 -21
- package/dist/es2017/parsers/texttracks/ttml/native/parse_cue.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/ttml/native/parse_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/native/parse_cue.js +0 -197
- package/dist/es2017/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts +0 -24
- package/dist/es2017/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/native/parse_ttml_to_vtt.js +0 -45
- package/dist/es2017/parsers/texttracks/ttml/parse_ttml.d.ts +0 -44
- package/dist/es2017/parsers/texttracks/ttml/parse_ttml.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/parse_ttml.js +0 -156
- package/dist/es2017/parsers/texttracks/ttml/regexps.d.ts +0 -29
- package/dist/es2017/parsers/texttracks/ttml/regexps.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/regexps.js +0 -35
- package/dist/es2017/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts +0 -50
- package/dist/es2017/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/resolve_styles_inheritance.js +0 -79
- package/dist/es2017/parsers/texttracks/ttml/time_parsing.d.ts +0 -31
- package/dist/es2017/parsers/texttracks/ttml/time_parsing.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/time_parsing.js +0 -124
- package/dist/es2017/parsers/texttracks/ttml/xml_utils.d.ts +0 -71
- package/dist/es2017/parsers/texttracks/ttml/xml_utils.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/xml_utils.js +0 -150
- package/dist/es2017/parsers/texttracks/types.d.ts +0 -80
- package/dist/es2017/parsers/texttracks/types.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/types.js +0 -16
- package/dist/es2017/parsers/texttracks/webvtt/create_default_style_elements.d.ts +0 -3
- package/dist/es2017/parsers/texttracks/webvtt/create_default_style_elements.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/create_default_style_elements.js +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/get_cue_blocks.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/webvtt/get_cue_blocks.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/get_cue_blocks.js +0 -44
- package/dist/es2017/parsers/texttracks/webvtt/get_style_blocks.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/webvtt/get_style_blocks.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/get_style_blocks.js +0 -52
- package/dist/es2017/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts +0 -23
- package/dist/es2017/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/convert_payload_to_html.js +0 -35
- package/dist/es2017/parsers/texttracks/webvtt/html/create_style_attribute.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/html/create_style_attribute.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/create_style_attribute.js +0 -166
- package/dist/es2017/parsers/texttracks/webvtt/html/create_styled_element.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/webvtt/html/create_styled_element.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/create_styled_element.js +0 -81
- package/dist/es2017/parsers/texttracks/webvtt/html/index.d.ts +0 -28
- package/dist/es2017/parsers/texttracks/webvtt/html/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/index.js +0 -26
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts +0 -13
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_mp4.js +0 -18
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.js +0 -66
- package/dist/es2017/parsers/texttracks/webvtt/html/to_html.d.ts +0 -50
- package/dist/es2017/parsers/texttracks/webvtt/html/to_html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/to_html.js +0 -70
- package/dist/es2017/parsers/texttracks/webvtt/native/index.d.ts +0 -23
- package/dist/es2017/parsers/texttracks/webvtt/native/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/index.js +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts +0 -30
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.js +0 -69
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts +0 -13
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.js +0 -20
- package/dist/es2017/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts +0 -24
- package/dist/es2017/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/set_settings_on_cue.js +0 -80
- package/dist/es2017/parsers/texttracks/webvtt/native/to_native_cue.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/webvtt/native/to_native_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/to_native_cue.js +0 -27
- package/dist/es2017/parsers/texttracks/webvtt/parse_cue_block.d.ts +0 -40
- package/dist/es2017/parsers/texttracks/webvtt/parse_cue_block.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_cue_block.js +0 -100
- package/dist/es2017/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.js +0 -129
- package/dist/es2017/parsers/texttracks/webvtt/parse_style_block.d.ts +0 -28
- package/dist/es2017/parsers/texttracks/webvtt/parse_style_block.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_style_block.js +0 -66
- package/dist/es2017/parsers/texttracks/webvtt/parse_timestamp.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/parse_timestamp.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_timestamp.js +0 -33
- package/dist/es2017/parsers/texttracks/webvtt/utils.d.ts +0 -58
- package/dist/es2017/parsers/texttracks/webvtt/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/utils.js +0 -114
- package/dist/es2017/playback_observer/index.d.ts +0 -7
- package/dist/es2017/playback_observer/index.d.ts.map +0 -1
- package/dist/es2017/playback_observer/index.js +0 -2
- package/dist/es2017/playback_observer/media_element_playback_observer.d.ts +0 -285
- package/dist/es2017/playback_observer/media_element_playback_observer.d.ts.map +0 -1
- package/dist/es2017/playback_observer/media_element_playback_observer.js +0 -832
- package/dist/es2017/playback_observer/types.d.ts +0 -226
- package/dist/es2017/playback_observer/types.d.ts.map +0 -1
- package/dist/es2017/playback_observer/types.js +0 -1
- package/dist/es2017/playback_observer/utils/generate_read_only_observer.d.ts +0 -12
- package/dist/es2017/playback_observer/utils/generate_read_only_observer.d.ts.map +0 -1
- package/dist/es2017/playback_observer/utils/generate_read_only_observer.js +0 -39
- package/dist/es2017/playback_observer/utils/observation_position.d.ts +0 -99
- package/dist/es2017/playback_observer/utils/observation_position.d.ts.map +0 -1
- package/dist/es2017/playback_observer/utils/observation_position.js +0 -95
- package/dist/es2017/playback_observer/worker_playback_observer.d.ts +0 -85
- package/dist/es2017/playback_observer/worker_playback_observer.d.ts.map +0 -1
- package/dist/es2017/playback_observer/worker_playback_observer.js +0 -43
- package/dist/es2017/public_types.d.ts +0 -1279
- package/dist/es2017/public_types.d.ts.map +0 -1
- package/dist/es2017/public_types.js +0 -5
- package/dist/es2017/tools/TextTrackRenderer/index.d.ts +0 -24
- package/dist/es2017/tools/TextTrackRenderer/index.d.ts.map +0 -1
- package/dist/es2017/tools/TextTrackRenderer/index.js +0 -22
- package/dist/es2017/tools/TextTrackRenderer/text_track_renderer.d.ts +0 -77
- package/dist/es2017/tools/TextTrackRenderer/text_track_renderer.d.ts.map +0 -1
- package/dist/es2017/tools/TextTrackRenderer/text_track_renderer.js +0 -77
- package/dist/es2017/tools/index.d.ts +0 -20
- package/dist/es2017/tools/index.d.ts.map +0 -1
- package/dist/es2017/tools/index.js +0 -20
- package/dist/es2017/tools/parseBIFThumbnails/index.d.ts +0 -30
- package/dist/es2017/tools/parseBIFThumbnails/index.d.ts.map +0 -1
- package/dist/es2017/tools/parseBIFThumbnails/index.js +0 -30
- package/dist/es2017/tools/string_utils/index.d.ts +0 -17
- package/dist/es2017/tools/string_utils/index.d.ts.map +0 -1
- package/dist/es2017/tools/string_utils/index.js +0 -16
- package/dist/es2017/transports/dash/construct_segment_url.d.ts +0 -19
- package/dist/es2017/transports/dash/construct_segment_url.d.ts.map +0 -1
- package/dist/es2017/transports/dash/construct_segment_url.js +0 -25
- package/dist/es2017/transports/dash/get_events_out_of_emsgs.d.ts +0 -29
- package/dist/es2017/transports/dash/get_events_out_of_emsgs.d.ts.map +0 -1
- package/dist/es2017/transports/dash/get_events_out_of_emsgs.js +0 -93
- package/dist/es2017/transports/dash/index.d.ts +0 -22
- package/dist/es2017/transports/dash/index.d.ts.map +0 -1
- package/dist/es2017/transports/dash/index.js +0 -21
- package/dist/es2017/transports/dash/init_segment_loader.d.ts +0 -29
- package/dist/es2017/transports/dash/init_segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/dash/init_segment_loader.js +0 -104
- package/dist/es2017/transports/dash/integrity_checks.d.ts +0 -18
- package/dist/es2017/transports/dash/integrity_checks.d.ts.map +0 -1
- package/dist/es2017/transports/dash/integrity_checks.js +0 -150
- package/dist/es2017/transports/dash/load_chunked_segment_data.d.ts +0 -40
- package/dist/es2017/transports/dash/load_chunked_segment_data.d.ts.map +0 -1
- package/dist/es2017/transports/dash/load_chunked_segment_data.js +0 -77
- package/dist/es2017/transports/dash/manifest_parser.d.ts +0 -19
- package/dist/es2017/transports/dash/manifest_parser.d.ts.map +0 -1
- package/dist/es2017/transports/dash/manifest_parser.js +0 -295
- package/dist/es2017/transports/dash/pipelines.d.ts +0 -24
- package/dist/es2017/transports/dash/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/dash/pipelines.js +0 -65
- package/dist/es2017/transports/dash/segment_loader.d.ts +0 -39
- package/dist/es2017/transports/dash/segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/dash/segment_loader.js +0 -214
- package/dist/es2017/transports/dash/segment_parser.d.ts +0 -24
- package/dist/es2017/transports/dash/segment_parser.d.ts.map +0 -1
- package/dist/es2017/transports/dash/segment_parser.js +0 -156
- package/dist/es2017/transports/dash/text_loader.d.ts +0 -26
- package/dist/es2017/transports/dash/text_loader.d.ts.map +0 -1
- package/dist/es2017/transports/dash/text_loader.js +0 -106
- package/dist/es2017/transports/dash/text_parser.d.ts +0 -26
- package/dist/es2017/transports/dash/text_parser.d.ts.map +0 -1
- package/dist/es2017/transports/dash/text_parser.js +0 -190
- package/dist/es2017/transports/dash/thumbnails.d.ts +0 -21
- package/dist/es2017/transports/dash/thumbnails.d.ts.map +0 -1
- package/dist/es2017/transports/dash/thumbnails.js +0 -72
- package/dist/es2017/transports/index.d.ts +0 -17
- package/dist/es2017/transports/index.d.ts.map +0 -1
- package/dist/es2017/transports/index.js +0 -16
- package/dist/es2017/transports/local/index.d.ts +0 -18
- package/dist/es2017/transports/local/index.d.ts.map +0 -1
- package/dist/es2017/transports/local/index.js +0 -17
- package/dist/es2017/transports/local/pipelines.d.ts +0 -23
- package/dist/es2017/transports/local/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/local/pipelines.js +0 -76
- package/dist/es2017/transports/local/segment_loader.d.ts +0 -29
- package/dist/es2017/transports/local/segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/local/segment_loader.js +0 -152
- package/dist/es2017/transports/local/segment_parser.d.ts +0 -21
- package/dist/es2017/transports/local/segment_parser.d.ts.map +0 -1
- package/dist/es2017/transports/local/segment_parser.js +0 -87
- package/dist/es2017/transports/local/text_parser.d.ts +0 -28
- package/dist/es2017/transports/local/text_parser.d.ts.map +0 -1
- package/dist/es2017/transports/local/text_parser.js +0 -162
- package/dist/es2017/transports/metaplaylist/index.d.ts +0 -22
- package/dist/es2017/transports/metaplaylist/index.d.ts.map +0 -1
- package/dist/es2017/transports/metaplaylist/index.js +0 -21
- package/dist/es2017/transports/metaplaylist/manifest_loader.d.ts +0 -27
- package/dist/es2017/transports/metaplaylist/manifest_loader.d.ts.map +0 -1
- package/dist/es2017/transports/metaplaylist/manifest_loader.js +0 -53
- package/dist/es2017/transports/metaplaylist/pipelines.d.ts +0 -18
- package/dist/es2017/transports/metaplaylist/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/metaplaylist/pipelines.js +0 -250
- package/dist/es2017/transports/smooth/extract_timings_infos.d.ts +0 -63
- package/dist/es2017/transports/smooth/extract_timings_infos.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/extract_timings_infos.js +0 -79
- package/dist/es2017/transports/smooth/index.d.ts +0 -22
- package/dist/es2017/transports/smooth/index.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/index.js +0 -21
- package/dist/es2017/transports/smooth/is_mp4_embedded_track.d.ts +0 -23
- package/dist/es2017/transports/smooth/is_mp4_embedded_track.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/is_mp4_embedded_track.js +0 -24
- package/dist/es2017/transports/smooth/isobmff/create_audio_init_segment.d.ts +0 -29
- package/dist/es2017/transports/smooth/isobmff/create_audio_init_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_audio_init_segment.js +0 -51
- package/dist/es2017/transports/smooth/isobmff/create_boxes.d.ts +0 -172
- package/dist/es2017/transports/smooth/isobmff/create_boxes.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_boxes.js +0 -319
- package/dist/es2017/transports/smooth/isobmff/create_init_segment.d.ts +0 -32
- package/dist/es2017/transports/smooth/isobmff/create_init_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_init_segment.js +0 -63
- package/dist/es2017/transports/smooth/isobmff/create_traf_box.d.ts +0 -17
- package/dist/es2017/transports/smooth/isobmff/create_traf_box.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_traf_box.js +0 -24
- package/dist/es2017/transports/smooth/isobmff/create_video_init_segment.d.ts +0 -30
- package/dist/es2017/transports/smooth/isobmff/create_video_init_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_video_init_segment.js +0 -57
- package/dist/es2017/transports/smooth/isobmff/get_aaces_header.d.ts +0 -28
- package/dist/es2017/transports/smooth/isobmff/get_aaces_header.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/get_aaces_header.js +0 -43
- package/dist/es2017/transports/smooth/isobmff/index.d.ts +0 -24
- package/dist/es2017/transports/smooth/isobmff/index.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/index.js +0 -21
- package/dist/es2017/transports/smooth/isobmff/parse_tfrf.d.ts +0 -25
- package/dist/es2017/transports/smooth/isobmff/parse_tfrf.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/parse_tfrf.js +0 -47
- package/dist/es2017/transports/smooth/isobmff/parse_tfxd.d.ts +0 -25
- package/dist/es2017/transports/smooth/isobmff/parse_tfxd.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/parse_tfxd.js +0 -31
- package/dist/es2017/transports/smooth/isobmff/patch_segment.d.ts +0 -24
- package/dist/es2017/transports/smooth/isobmff/patch_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/patch_segment.js +0 -128
- package/dist/es2017/transports/smooth/pipelines.d.ts +0 -18
- package/dist/es2017/transports/smooth/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/pipelines.js +0 -336
- package/dist/es2017/transports/smooth/segment_loader.d.ts +0 -28
- package/dist/es2017/transports/smooth/segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/segment_loader.js +0 -238
- package/dist/es2017/transports/smooth/utils.d.ts +0 -27
- package/dist/es2017/transports/smooth/utils.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/utils.js +0 -36
- package/dist/es2017/transports/types.d.ts +0 -772
- package/dist/es2017/transports/types.d.ts.map +0 -1
- package/dist/es2017/transports/types.js +0 -16
- package/dist/es2017/transports/utils/add_query_string.d.ts +0 -13
- package/dist/es2017/transports/utils/add_query_string.d.ts.map +0 -1
- package/dist/es2017/transports/utils/add_query_string.js +0 -51
- package/dist/es2017/transports/utils/byte_range.d.ts +0 -22
- package/dist/es2017/transports/utils/byte_range.d.ts.map +0 -1
- package/dist/es2017/transports/utils/byte_range.js +0 -23
- package/dist/es2017/transports/utils/call_custom_manifest_loader.d.ts +0 -20
- package/dist/es2017/transports/utils/call_custom_manifest_loader.d.ts.map +0 -1
- package/dist/es2017/transports/utils/call_custom_manifest_loader.js +0 -96
- package/dist/es2017/transports/utils/check_isobmff_integrity.d.ts +0 -24
- package/dist/es2017/transports/utils/check_isobmff_integrity.d.ts.map +0 -1
- package/dist/es2017/transports/utils/check_isobmff_integrity.js +0 -46
- package/dist/es2017/transports/utils/generate_manifest_loader.d.ts +0 -27
- package/dist/es2017/transports/utils/generate_manifest_loader.d.ts.map +0 -1
- package/dist/es2017/transports/utils/generate_manifest_loader.js +0 -85
- package/dist/es2017/transports/utils/get_isobmff_timing_infos.d.ts +0 -30
- package/dist/es2017/transports/utils/get_isobmff_timing_infos.d.ts.map +0 -1
- package/dist/es2017/transports/utils/get_isobmff_timing_infos.js +0 -67
- package/dist/es2017/transports/utils/infer_segment_container.d.ts +0 -30
- package/dist/es2017/transports/utils/infer_segment_container.d.ts.map +0 -1
- package/dist/es2017/transports/utils/infer_segment_container.js +0 -42
- package/dist/es2017/transports/utils/parse_text_track.d.ts +0 -53
- package/dist/es2017/transports/utils/parse_text_track.d.ts.map +0 -1
- package/dist/es2017/transports/utils/parse_text_track.js +0 -154
- package/dist/es2017/utils/are_arrays_of_numbers_equal.d.ts +0 -23
- package/dist/es2017/utils/are_arrays_of_numbers_equal.d.ts.map +0 -1
- package/dist/es2017/utils/are_arrays_of_numbers_equal.js +0 -35
- package/dist/es2017/utils/are_codecs_compatible.d.ts +0 -30
- package/dist/es2017/utils/are_codecs_compatible.d.ts.map +0 -1
- package/dist/es2017/utils/are_codecs_compatible.js +0 -57
- package/dist/es2017/utils/array_find.d.ts +0 -24
- package/dist/es2017/utils/array_find.d.ts.map +0 -1
- package/dist/es2017/utils/array_find.js +0 -37
- package/dist/es2017/utils/array_find_index.d.ts +0 -24
- package/dist/es2017/utils/array_find_index.d.ts.map +0 -1
- package/dist/es2017/utils/array_find_index.js +0 -36
- package/dist/es2017/utils/array_includes.d.ts +0 -54
- package/dist/es2017/utils/array_includes.d.ts.map +0 -1
- package/dist/es2017/utils/array_includes.js +0 -75
- package/dist/es2017/utils/assert.d.ts +0 -75
- package/dist/es2017/utils/assert.d.ts.map +0 -1
- package/dist/es2017/utils/assert.js +0 -91
- package/dist/es2017/utils/base64.d.ts +0 -15
- package/dist/es2017/utils/base64.d.ts.map +0 -1
- package/dist/es2017/utils/base64.js +0 -208
- package/dist/es2017/utils/buffer_source_to_uint8.d.ts +0 -8
- package/dist/es2017/utils/buffer_source_to_uint8.d.ts.map +0 -1
- package/dist/es2017/utils/buffer_source_to_uint8.js +0 -15
- package/dist/es2017/utils/byte_parsing.d.ts +0 -132
- package/dist/es2017/utils/byte_parsing.d.ts.map +0 -1
- package/dist/es2017/utils/byte_parsing.js +0 -252
- package/dist/es2017/utils/cancellable_sleep.d.ts +0 -31
- package/dist/es2017/utils/cancellable_sleep.d.ts.map +0 -1
- package/dist/es2017/utils/cancellable_sleep.js +0 -35
- package/dist/es2017/utils/create_cancellable_promise.d.ts +0 -27
- package/dist/es2017/utils/create_cancellable_promise.d.ts.map +0 -1
- package/dist/es2017/utils/create_cancellable_promise.js +0 -52
- package/dist/es2017/utils/create_uuid.d.ts +0 -9
- package/dist/es2017/utils/create_uuid.d.ts.map +0 -1
- package/dist/es2017/utils/create_uuid.js +0 -29
- package/dist/es2017/utils/deep_merge.d.ts +0 -10
- package/dist/es2017/utils/deep_merge.d.ts.map +0 -1
- package/dist/es2017/utils/deep_merge.js +0 -40
- package/dist/es2017/utils/event_emitter.d.ts +0 -63
- package/dist/es2017/utils/event_emitter.d.ts.map +0 -1
- package/dist/es2017/utils/event_emitter.js +0 -105
- package/dist/es2017/utils/flat_map.d.ts +0 -23
- package/dist/es2017/utils/flat_map.d.ts.map +0 -1
- package/dist/es2017/utils/flat_map.js +0 -35
- package/dist/es2017/utils/get_fuzzed_delay.d.ts +0 -22
- package/dist/es2017/utils/get_fuzzed_delay.d.ts.map +0 -1
- package/dist/es2017/utils/get_fuzzed_delay.js +0 -25
- package/dist/es2017/utils/global_scope.d.ts +0 -10
- package/dist/es2017/utils/global_scope.d.ts.map +0 -1
- package/dist/es2017/utils/global_scope.js +0 -20
- package/dist/es2017/utils/hash_buffer.d.ts +0 -33
- package/dist/es2017/utils/hash_buffer.d.ts.map +0 -1
- package/dist/es2017/utils/hash_buffer.js +0 -41
- package/dist/es2017/utils/id_generator.d.ts +0 -22
- package/dist/es2017/utils/id_generator.d.ts.map +0 -1
- package/dist/es2017/utils/id_generator.js +0 -32
- package/dist/es2017/utils/is_node.d.ts +0 -19
- package/dist/es2017/utils/is_node.d.ts.map +0 -1
- package/dist/es2017/utils/is_node.js +0 -19
- package/dist/es2017/utils/is_non_empty_string.d.ts +0 -21
- package/dist/es2017/utils/is_non_empty_string.d.ts.map +0 -1
- package/dist/es2017/utils/is_non_empty_string.js +0 -22
- package/dist/es2017/utils/is_null_or_undefined.d.ts +0 -25
- package/dist/es2017/utils/is_null_or_undefined.d.ts.map +0 -1
- package/dist/es2017/utils/is_null_or_undefined.js +0 -26
- package/dist/es2017/utils/is_worker.d.ts +0 -6
- package/dist/es2017/utils/is_worker.d.ts.map +0 -1
- package/dist/es2017/utils/is_worker.js +0 -5
- package/dist/es2017/utils/languages/ISO_639-1_to_ISO_639-3.d.ts +0 -23
- package/dist/es2017/utils/languages/ISO_639-1_to_ISO_639-3.d.ts.map +0 -1
- package/dist/es2017/utils/languages/ISO_639-1_to_ISO_639-3.js +0 -205
- package/dist/es2017/utils/languages/ISO_639-2_to_ISO_639-3.d.ts +0 -23
- package/dist/es2017/utils/languages/ISO_639-2_to_ISO_639-3.d.ts.map +0 -1
- package/dist/es2017/utils/languages/ISO_639-2_to_ISO_639-3.js +0 -41
- package/dist/es2017/utils/languages/index.d.ts +0 -21
- package/dist/es2017/utils/languages/index.d.ts.map +0 -1
- package/dist/es2017/utils/languages/index.js +0 -18
- package/dist/es2017/utils/languages/normalize.d.ts +0 -70
- package/dist/es2017/utils/languages/normalize.d.ts.map +0 -1
- package/dist/es2017/utils/languages/normalize.js +0 -122
- package/dist/es2017/utils/logger.d.ts +0 -157
- package/dist/es2017/utils/logger.d.ts.map +0 -1
- package/dist/es2017/utils/logger.js +0 -166
- package/dist/es2017/utils/monotonic_timestamp.d.ts +0 -23
- package/dist/es2017/utils/monotonic_timestamp.d.ts.map +0 -1
- package/dist/es2017/utils/monotonic_timestamp.js +0 -36
- package/dist/es2017/utils/noop.d.ts +0 -24
- package/dist/es2017/utils/noop.d.ts.map +0 -1
- package/dist/es2017/utils/noop.js +0 -24
- package/dist/es2017/utils/object_assign.d.ts +0 -47
- package/dist/es2017/utils/object_assign.d.ts.map +0 -1
- package/dist/es2017/utils/object_assign.js +0 -47
- package/dist/es2017/utils/object_values.d.ts +0 -31
- package/dist/es2017/utils/object_values.d.ts.map +0 -1
- package/dist/es2017/utils/object_values.js +0 -25
- package/dist/es2017/utils/queue_microtask.d.ts +0 -3
- package/dist/es2017/utils/queue_microtask.d.ts.map +0 -1
- package/dist/es2017/utils/queue_microtask.js +0 -5
- package/dist/es2017/utils/ranges.d.ts +0 -214
- package/dist/es2017/utils/ranges.d.ts.map +0 -1
- package/dist/es2017/utils/ranges.js +0 -495
- package/dist/es2017/utils/reference.d.ts +0 -215
- package/dist/es2017/utils/reference.d.ts.map +0 -1
- package/dist/es2017/utils/reference.js +0 -282
- package/dist/es2017/utils/request/fetch.d.ts +0 -81
- package/dist/es2017/utils/request/fetch.d.ts.map +0 -1
- package/dist/es2017/utils/request/fetch.js +0 -206
- package/dist/es2017/utils/request/index.d.ts +0 -25
- package/dist/es2017/utils/request/index.d.ts.map +0 -1
- package/dist/es2017/utils/request/index.js +0 -20
- package/dist/es2017/utils/request/request_error.d.ts +0 -47
- package/dist/es2017/utils/request/request_error.d.ts.map +0 -1
- package/dist/es2017/utils/request/request_error.js +0 -66
- package/dist/es2017/utils/request/xhr.d.ts +0 -100
- package/dist/es2017/utils/request/xhr.d.ts.map +0 -1
- package/dist/es2017/utils/request/xhr.js +0 -202
- package/dist/es2017/utils/retry_promise_with_backoff.d.ts +0 -55
- package/dist/es2017/utils/retry_promise_with_backoff.d.ts.map +0 -1
- package/dist/es2017/utils/retry_promise_with_backoff.js +0 -81
- package/dist/es2017/utils/sleep.d.ts +0 -11
- package/dist/es2017/utils/sleep.d.ts.map +0 -1
- package/dist/es2017/utils/sleep.js +0 -14
- package/dist/es2017/utils/slice_uint8array.d.ts +0 -28
- package/dist/es2017/utils/slice_uint8array.d.ts.map +0 -1
- package/dist/es2017/utils/slice_uint8array.js +0 -42
- package/dist/es2017/utils/sorted_list.d.ts +0 -128
- package/dist/es2017/utils/sorted_list.d.ts.map +0 -1
- package/dist/es2017/utils/sorted_list.js +0 -177
- package/dist/es2017/utils/starts_with.d.ts +0 -27
- package/dist/es2017/utils/starts_with.d.ts.map +0 -1
- package/dist/es2017/utils/starts_with.js +0 -35
- package/dist/es2017/utils/string_parsing.d.ts +0 -89
- package/dist/es2017/utils/string_parsing.d.ts.map +0 -1
- package/dist/es2017/utils/string_parsing.js +0 -370
- package/dist/es2017/utils/sync_or_async.d.ts +0 -71
- package/dist/es2017/utils/sync_or_async.d.ts.map +0 -1
- package/dist/es2017/utils/sync_or_async.js +0 -51
- package/dist/es2017/utils/task_canceller.d.ts +0 -263
- package/dist/es2017/utils/task_canceller.d.ts.map +0 -1
- package/dist/es2017/utils/task_canceller.js +0 -298
- package/dist/es2017/utils/url-utils.d.ts +0 -50
- package/dist/es2017/utils/url-utils.d.ts.map +0 -1
- package/dist/es2017/utils/url-utils.js +0 -323
- package/dist/es2017/utils/warn_once.d.ts +0 -24
- package/dist/es2017/utils/warn_once.d.ts.map +0 -1
- package/dist/es2017/utils/warn_once.js +0 -31
- package/dist/es2017/utils/weak_map_memory.d.ts +0 -71
- package/dist/es2017/utils/weak_map_memory.d.ts.map +0 -1
- package/dist/es2017/utils/weak_map_memory.js +0 -83
- package/dist/es2017/utils/wrapInPromise.d.ts +0 -8
- package/dist/es2017/utils/wrapInPromise.d.ts.map +0 -1
- package/dist/es2017/utils/wrapInPromise.js +0 -22
- package/dist/es2017/utils/xml-parser.d.ts +0 -71
- package/dist/es2017/utils/xml-parser.d.ts.map +0 -1
- package/dist/es2017/utils/xml-parser.js +0 -324
- package/dist/es2017/worker_entry_point.d.ts +0 -6
- package/dist/es2017/worker_entry_point.d.ts.map +0 -1
- package/dist/es2017/worker_entry_point.js +0 -6
- package/dist/mpd-parser.wasm +0 -0
- package/dist/rx-player.d.ts +0 -1
- package/dist/rx-player.js +0 -42741
- package/dist/rx-player.min.d.ts +0 -1
- package/dist/rx-player.min.js +0 -23
- package/dist/worker.js +0 -9
- package/src/__GENERATED_CODE/embedded_dash_wasm.ts +0 -3
- package/src/__GENERATED_CODE/embedded_worker.ts +0 -3
- package/src/__GENERATED_CODE/index.ts +0 -2
- package/src/core/main/worker/globals.ts +0 -38
- package/src/core/main/worker/index.ts +0 -2
- package/src/core/main/worker/send_message.ts +0 -28
- package/src/main_thread/init/multi_thread_content_initializer.ts +0 -2330
- package/src/main_thread/init/send_message.ts +0 -15
- package/src/main_thread/init/utils/create_media_source.ts +0 -169
- package/src/multithread_types.ts +0 -1095
|
@@ -1,1200 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Configuration file for the whole player.
|
|
3
|
-
* Feel free to tweak those values if you know what you're doing.
|
|
4
|
-
*
|
|
5
|
-
* Please not that you will need to re-build the whole project to take these
|
|
6
|
-
* modifications into account.
|
|
7
|
-
*
|
|
8
|
-
* @type {Object}
|
|
9
|
-
*/
|
|
10
|
-
declare const DEFAULT_CONFIG: {
|
|
11
|
-
/**
|
|
12
|
-
* Default time interval after which a request will timeout, in ms.
|
|
13
|
-
* @type {Number}
|
|
14
|
-
*/
|
|
15
|
-
DEFAULT_REQUEST_TIMEOUT: number;
|
|
16
|
-
/**
|
|
17
|
-
* Default connection time after which a request will timeout, in ms.
|
|
18
|
-
* @type {Number}
|
|
19
|
-
*/
|
|
20
|
-
DEFAULT_CONNECTION_TIMEOUT: number;
|
|
21
|
-
/**
|
|
22
|
-
* Can be either:
|
|
23
|
-
* - "native": Subtitles are all displayed in a <track> element
|
|
24
|
-
* - "html": Subtitles are all displayed in a <div> separated from the video
|
|
25
|
-
* element. Can be useful to display richer TTML subtitles, for example.
|
|
26
|
-
* @type {Object|null}
|
|
27
|
-
*/
|
|
28
|
-
DEFAULT_TEXT_TRACK_MODE: "native" | "html";
|
|
29
|
-
/**
|
|
30
|
-
* Default behavior for the `enableFastSwitching` loadVideo options.
|
|
31
|
-
*
|
|
32
|
-
* Fast-switching allows to provide quicker transitions from lower quality
|
|
33
|
-
* segments to higher quality segments but might be badly supported on some
|
|
34
|
-
* devices.
|
|
35
|
-
* When enabled, the RxPlayer might replace segments of a lower-quality
|
|
36
|
-
* (with a lower bitrate) with segments of a higher quality (with a higher
|
|
37
|
-
* bitrate). This allows to have a fast transition when network conditions
|
|
38
|
-
* improve.
|
|
39
|
-
* When disabled, segments of a lower-quality will not be replaced.
|
|
40
|
-
*/
|
|
41
|
-
DEFAULT_ENABLE_FAST_SWITCHING: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* In some cases after switching the current track or bitrate, the RxPlayer
|
|
44
|
-
* could be led to go into the `"RELOADING"` state, which corresponds to
|
|
45
|
-
* visually a black screen (with nothing audible) before restarting playback.
|
|
46
|
-
*
|
|
47
|
-
* We could want to seek back some milliseconds when doing that.
|
|
48
|
-
* For example, when switching the current audio track, it might make sense
|
|
49
|
-
* to restart some time before, so the beginning of the sentence can be heard
|
|
50
|
-
* again in the new language.
|
|
51
|
-
*
|
|
52
|
-
* This config property allows to set the relative position the RxPlayer will
|
|
53
|
-
* seek to after reloading, in seconds.
|
|
54
|
-
*
|
|
55
|
-
* For example: a value of `-0.7` means that will seek back 700 milliseconds
|
|
56
|
-
* when reloading due to a track or bitrate switch with necessitated a
|
|
57
|
-
* reloading.
|
|
58
|
-
*/
|
|
59
|
-
DELTA_POSITION_AFTER_RELOAD: {
|
|
60
|
-
/** Relative position when switching the bitrate */
|
|
61
|
-
bitrateSwitch: number;
|
|
62
|
-
/**
|
|
63
|
-
* Relative position when switching the track.
|
|
64
|
-
*
|
|
65
|
-
* From tests, I noticed that seeking back was only really "pleasant" when
|
|
66
|
-
* switching the audio track.
|
|
67
|
-
*
|
|
68
|
-
* E.g. switching the video track often means changing the camera angle or
|
|
69
|
-
* even totally changing what is being seen and rely much less on temporal
|
|
70
|
-
* context than when an audio track is switched.
|
|
71
|
-
* As such, I decided to only set a sensible seek-back behavior when
|
|
72
|
-
* switching the audio track, and only a minimal one (to still ensure
|
|
73
|
-
* nothing was missed) for video.
|
|
74
|
-
*
|
|
75
|
-
* "Other" mainly concern text track, where seeking back could even be
|
|
76
|
-
* annoying, so that behavior has been disabled in that case.
|
|
77
|
-
*/
|
|
78
|
-
trackSwitch: {
|
|
79
|
-
audio: number;
|
|
80
|
-
video: number;
|
|
81
|
-
other: number;
|
|
82
|
-
};
|
|
83
|
-
};
|
|
84
|
-
/**
|
|
85
|
-
* Behavior of the RxPlayer when encountering a whole other codec on a already
|
|
86
|
-
* existing audio or video SourceBuffer.
|
|
87
|
-
*
|
|
88
|
-
* Can be either:
|
|
89
|
-
*
|
|
90
|
-
* - "continue": Segments linked to the new codec will continue to be
|
|
91
|
-
* pushed to that same SourceBuffer. The RxPlayer will still try to call
|
|
92
|
-
* the `changeType` API on the SourceBuffer before pushing those
|
|
93
|
-
* segments but continue even if this call failed.
|
|
94
|
-
*
|
|
95
|
-
* - "reload": Every time a new incompatible codec is encountered on a
|
|
96
|
-
* given SourceBuffer, we will reload the MediaSource.
|
|
97
|
-
*/
|
|
98
|
-
DEFAULT_CODEC_SWITCHING_BEHAVIOR: "continue" | "reload";
|
|
99
|
-
/**
|
|
100
|
-
* Specifies the behavior when all audio tracks are not playable.
|
|
101
|
-
*
|
|
102
|
-
* - If set to `"continue"`, the player will proceed to play the content without audio.
|
|
103
|
-
* - If set to `"error"`, an error will be thrown to indicate that the audio tracks could not be played.
|
|
104
|
-
*
|
|
105
|
-
* Note: If neither the audio nor the video tracks are playable, an error will be thrown regardless of this setting.
|
|
106
|
-
*/
|
|
107
|
-
DEFAULT_AUDIO_TRACKS_NOT_PLAYABLE_BEHAVIOR: "continue" | "error";
|
|
108
|
-
/**
|
|
109
|
-
* Specifies the behavior when all video tracks are not playable.
|
|
110
|
-
*
|
|
111
|
-
* - If set to `"continue"`, the player will proceed to play the content without video.
|
|
112
|
-
* - If set to `"error"`, an error will be thrown to indicate that the video tracks could not be played.
|
|
113
|
-
*
|
|
114
|
-
* Note: If neither the audio nor the video tracks are playable, an error will be thrown regardless of this setting.
|
|
115
|
-
*/
|
|
116
|
-
DEFAULT_VIDEO_TRACKS_NOT_PLAYABLE_BEHAVIOR: "continue" | "error";
|
|
117
|
-
/**
|
|
118
|
-
* If set to true, video through loadVideo will auto play by default
|
|
119
|
-
* @type {Boolean}
|
|
120
|
-
*/
|
|
121
|
-
DEFAULT_AUTO_PLAY: boolean;
|
|
122
|
-
/**
|
|
123
|
-
* Default buffer goal in seconds.
|
|
124
|
-
* Once enough content has been downloaded to fill the buffer up to
|
|
125
|
-
* ``current position + DEFAULT_WANTED_BUFFER_AHEAD", we will stop downloading
|
|
126
|
-
* content.
|
|
127
|
-
* @type {Number}
|
|
128
|
-
*/
|
|
129
|
-
DEFAULT_WANTED_BUFFER_AHEAD: number;
|
|
130
|
-
/**
|
|
131
|
-
* Default max buffer size ahead of the current position in seconds.
|
|
132
|
-
* The buffer _after_ this limit will be garbage collected.
|
|
133
|
-
* Set to Infinity for no limit.
|
|
134
|
-
* @type {Number}
|
|
135
|
-
*/
|
|
136
|
-
DEFAULT_MAX_BUFFER_AHEAD: number;
|
|
137
|
-
/**
|
|
138
|
-
* Default max buffer size ahead of the current position in seconds.
|
|
139
|
-
* The buffer _before_ this limit will be garbage collected.
|
|
140
|
-
* Set to Infinity for no limit.
|
|
141
|
-
* @type {Number}
|
|
142
|
-
*/
|
|
143
|
-
DEFAULT_MAX_BUFFER_BEHIND: number;
|
|
144
|
-
/**
|
|
145
|
-
* Default video buffer memory limit in kilobytes.
|
|
146
|
-
* Once enough video content has been downloaded to fill the buffer up to
|
|
147
|
-
* DEFAULT_MAX_VIDEO_BUFFER_SIZE , we will stop downloading
|
|
148
|
-
* content.
|
|
149
|
-
* @type {Number}
|
|
150
|
-
*/
|
|
151
|
-
DEFAULT_MAX_VIDEO_BUFFER_SIZE: number;
|
|
152
|
-
/**
|
|
153
|
-
* Maximum possible buffer ahead for each type of buffer, to avoid too much
|
|
154
|
-
* memory usage when playing for a long time.
|
|
155
|
-
* Equal to Infinity if not defined here.
|
|
156
|
-
* @type {Object}
|
|
157
|
-
*/
|
|
158
|
-
MAXIMUM_MAX_BUFFER_AHEAD: Partial<Record<"audio" | "video" | "text", number>>;
|
|
159
|
-
/**
|
|
160
|
-
* Minimum possible buffer ahead for each type of buffer, to avoid Garbage
|
|
161
|
-
* Collecting too much data when it would have adverse effects.
|
|
162
|
-
* Equal to `0` if not defined here.
|
|
163
|
-
* @type {Object}
|
|
164
|
-
*/
|
|
165
|
-
MINIMUM_MAX_BUFFER_AHEAD: Partial<Record<"audio" | "video" | "image" | "text", number>>;
|
|
166
|
-
/**
|
|
167
|
-
* Maximum possible buffer behind for each type of buffer, to avoid too much
|
|
168
|
-
* memory usage when playing for a long time.
|
|
169
|
-
* Equal to Infinity if not defined here.
|
|
170
|
-
* @type {Object}
|
|
171
|
-
*/
|
|
172
|
-
MAXIMUM_MAX_BUFFER_BEHIND: Partial<Record<"audio" | "video" | "text", number>>;
|
|
173
|
-
/**
|
|
174
|
-
* Default bitrate ceils initially set as the first content begins.
|
|
175
|
-
*
|
|
176
|
-
* If no track is found with a bitrate inferior or equal to the
|
|
177
|
-
* bitrate there, the one with the lowest bitrate will be taken instead.
|
|
178
|
-
*
|
|
179
|
-
* Set to 0 for the lowest bitrate, Infinity for the highest.
|
|
180
|
-
*
|
|
181
|
-
* These values are only useful for the first content played, as consecutive
|
|
182
|
-
* play will always take the last set one.
|
|
183
|
-
* @type {Object}
|
|
184
|
-
*/
|
|
185
|
-
DEFAULT_BASE_BANDWIDTH: number;
|
|
186
|
-
/**
|
|
187
|
-
* Delay after which, if the page is hidden, the user is considered inactive
|
|
188
|
-
* on the current video.
|
|
189
|
-
*
|
|
190
|
-
* Allow to enforce specific optimizations when the page is not shown.
|
|
191
|
-
* @see DEFAULT_THROTTLE_WHEN_HIDDEN
|
|
192
|
-
* @type {Number}
|
|
193
|
-
*/
|
|
194
|
-
INACTIVITY_DELAY: number;
|
|
195
|
-
/**
|
|
196
|
-
* If true, if the video is considered in a "hidden" state for a delay specified by
|
|
197
|
-
* the INACTIVITY DELAY config property, we throttle automatically to the video
|
|
198
|
-
* representation with the lowest bitrate.
|
|
199
|
-
* @type {Boolean}
|
|
200
|
-
*/
|
|
201
|
-
DEFAULT_THROTTLE_VIDEO_BITRATE_WHEN_HIDDEN: boolean;
|
|
202
|
-
/**
|
|
203
|
-
* Default video resolution limit behavior.
|
|
204
|
-
*
|
|
205
|
-
* This option allows for example to throttle the video resolution so it
|
|
206
|
-
* does not exceed the screen resolution.
|
|
207
|
-
*
|
|
208
|
-
* Here set to "none" by default to disable throttling.
|
|
209
|
-
* @type {Boolean}
|
|
210
|
-
*/
|
|
211
|
-
DEFAULT_VIDEO_RESOLUTION_LIMIT: "none";
|
|
212
|
-
/**
|
|
213
|
-
* Default initial live gap considered if no presentation delay has been
|
|
214
|
-
* suggested, in seconds.
|
|
215
|
-
* @type {Number}
|
|
216
|
-
*/
|
|
217
|
-
DEFAULT_LIVE_GAP: {
|
|
218
|
-
DEFAULT: number;
|
|
219
|
-
LOW_LATENCY: number;
|
|
220
|
-
};
|
|
221
|
-
/**
|
|
222
|
-
* Maximum time, in seconds, the player should automatically skip when stalled
|
|
223
|
-
* because of a current hole in the buffer.
|
|
224
|
-
* Bear in mind that this might seek over not-yet-downloaded/pushed segments.
|
|
225
|
-
* @type {Number}
|
|
226
|
-
*/
|
|
227
|
-
BUFFER_DISCONTINUITY_THRESHOLD: number;
|
|
228
|
-
/**
|
|
229
|
-
* Ratio used to know if an already loaded segment should be re-buffered.
|
|
230
|
-
* We re-load the given segment if the current one times that ratio is
|
|
231
|
-
* inferior to the new one.
|
|
232
|
-
* @type {Number}
|
|
233
|
-
*/
|
|
234
|
-
BITRATE_REBUFFERING_RATIO: number;
|
|
235
|
-
/**
|
|
236
|
-
* The default number of times a manifest request will be re-performed
|
|
237
|
-
* when loaded/refreshed if the request finishes on an error which
|
|
238
|
-
* justify an retry.
|
|
239
|
-
*
|
|
240
|
-
* Note that some errors do not use this counter:
|
|
241
|
-
* - if the error is not due to the xhr, no retry will be peformed
|
|
242
|
-
* - if the error is an HTTP error code, but not a 500-smthg or a 404, no
|
|
243
|
-
* retry will be performed.
|
|
244
|
-
* @type Number
|
|
245
|
-
*/
|
|
246
|
-
DEFAULT_MAX_MANIFEST_REQUEST_RETRY: number;
|
|
247
|
-
/**
|
|
248
|
-
* Default delay, in seconds, during which a CDN will be "downgraded".
|
|
249
|
-
*
|
|
250
|
-
* For example in case of media content being available on multiple CDNs, the
|
|
251
|
-
* RxPlayer may decide that a CDN is less reliable (for example, it returned a
|
|
252
|
-
* server error) and should thus be avoided, at least for some time
|
|
253
|
-
*
|
|
254
|
-
* This value is the amount of time this CDN will be "less considered" than the
|
|
255
|
-
* alternatives.
|
|
256
|
-
*/
|
|
257
|
-
DEFAULT_CDN_DOWNGRADE_TIME: number;
|
|
258
|
-
/**
|
|
259
|
-
* The default number of times a segment request will be re-performed when
|
|
260
|
-
* on error which justify a retry.
|
|
261
|
-
*
|
|
262
|
-
* Note that some errors do not use this counter:
|
|
263
|
-
* - if the error is not due to the xhr, no retry will be peformed
|
|
264
|
-
* - if the error is an HTTP error code, but not a 500-smthg or a 404, no
|
|
265
|
-
* retry will be performed.
|
|
266
|
-
* @type Number
|
|
267
|
-
*/
|
|
268
|
-
DEFAULT_MAX_REQUESTS_RETRY_ON_ERROR: number;
|
|
269
|
-
/**
|
|
270
|
-
* Initial backoff delay when a segment / manifest download fails, in
|
|
271
|
-
* milliseconds.
|
|
272
|
-
*
|
|
273
|
-
* This delay will then grow exponentally by power of twos (200, 400, 800
|
|
274
|
-
* etc.)
|
|
275
|
-
*
|
|
276
|
-
* Please note that this delay is not exact, as it will be fuzzed.
|
|
277
|
-
* @type {Number}
|
|
278
|
-
*/
|
|
279
|
-
INITIAL_BACKOFF_DELAY_BASE: {
|
|
280
|
-
REGULAR: number;
|
|
281
|
-
LOW_LATENCY: number;
|
|
282
|
-
};
|
|
283
|
-
/**
|
|
284
|
-
* Maximum backoff delay when a segment / manifest download fails, in
|
|
285
|
-
* milliseconds.
|
|
286
|
-
*
|
|
287
|
-
* Please note that this delay is not exact, as it will be fuzzed.
|
|
288
|
-
* @type {Number}
|
|
289
|
-
*/
|
|
290
|
-
MAX_BACKOFF_DELAY_BASE: {
|
|
291
|
-
REGULAR: number;
|
|
292
|
-
LOW_LATENCY: number;
|
|
293
|
-
};
|
|
294
|
-
/**
|
|
295
|
-
* Minimum interval at which playback information samples will be taken. This
|
|
296
|
-
* variable is for the "regular" mediasource strategy (that is, not for the
|
|
297
|
-
* directfile API.
|
|
298
|
-
*
|
|
299
|
-
* At each of these interval, various different modules in the RxPlayer will
|
|
300
|
-
* run based on the information communicated.
|
|
301
|
-
*
|
|
302
|
-
* Keep in mind this is the minimum interval. This logic will also be
|
|
303
|
-
* triggered when various events of the media element are received.
|
|
304
|
-
* @type {Number}
|
|
305
|
-
*/
|
|
306
|
-
SAMPLING_INTERVAL_MEDIASOURCE: number;
|
|
307
|
-
/**
|
|
308
|
-
* Same than SAMPLING_INTERVAL_MEDIASOURCE but for lowLatency mode.
|
|
309
|
-
* @type {Number}
|
|
310
|
-
*/
|
|
311
|
-
SAMPLING_INTERVAL_LOW_LATENCY: number;
|
|
312
|
-
/**
|
|
313
|
-
* Same than SAMPLING_INTERVAL_MEDIASOURCE but for the directfile API.
|
|
314
|
-
* @type {Number}
|
|
315
|
-
*/
|
|
316
|
-
SAMPLING_INTERVAL_NO_MEDIASOURCE: number;
|
|
317
|
-
/**
|
|
318
|
-
* Amount of buffer to have ahead of the current position before we may
|
|
319
|
-
* consider buffer-based adaptive estimates, in seconds.
|
|
320
|
-
*
|
|
321
|
-
* For example setting it to `10` means that we need to have ten seconds of
|
|
322
|
-
* buffer ahead of the current position before relying on buffer-based
|
|
323
|
-
* adaptive estimates.
|
|
324
|
-
*
|
|
325
|
-
* To avoid getting in-and-out of the buffer-based logic all the time, it
|
|
326
|
-
* should be set higher than `ABR_EXIT_BUFFER_BASED_ALGO`.
|
|
327
|
-
*/
|
|
328
|
-
ABR_ENTER_BUFFER_BASED_ALGO: number;
|
|
329
|
-
/**
|
|
330
|
-
* Below this amount of buffer ahead of the current position, in seconds, we
|
|
331
|
-
* will stop using buffer-based estimate in our adaptive logic to select a
|
|
332
|
-
* quality.
|
|
333
|
-
*
|
|
334
|
-
* For example setting it to `5` means that if we have less than 5 seconds of
|
|
335
|
-
* buffer ahead of the current position, we should stop relying on
|
|
336
|
-
* buffer-based estimates to choose a quality.
|
|
337
|
-
*
|
|
338
|
-
* To avoid getting in-and-out of the buffer-based logic all the time, it
|
|
339
|
-
* should be set lower than `ABR_ENTER_BUFFER_BASED_ALGO`.
|
|
340
|
-
*/
|
|
341
|
-
ABR_EXIT_BUFFER_BASED_ALGO: number;
|
|
342
|
-
/**
|
|
343
|
-
* Minimum number of bytes sampled before we trust the estimate.
|
|
344
|
-
* If we have not sampled much data, our estimate may not be accurate
|
|
345
|
-
* enough to trust.
|
|
346
|
-
* If the total of bytes sampled is less than this value, we use a
|
|
347
|
-
* default estimate.
|
|
348
|
-
* This specific value is based on experimentations.
|
|
349
|
-
* @type {Number}
|
|
350
|
-
*/
|
|
351
|
-
ABR_MINIMUM_TOTAL_BYTES: number;
|
|
352
|
-
/**
|
|
353
|
-
* Minimum number of bytes, under which samples are discarded.
|
|
354
|
-
* Our models do not include latency information, so connection startup time
|
|
355
|
-
* (time to first byte) is considered part of the download time.
|
|
356
|
-
* Because of this, we should ignore very small downloads which would cause
|
|
357
|
-
* our estimate to be too low.
|
|
358
|
-
* This specific value is based on experimentation.
|
|
359
|
-
* @type {Number}
|
|
360
|
-
*/
|
|
361
|
-
ABR_MINIMUM_CHUNK_SIZE: number;
|
|
362
|
-
/**
|
|
363
|
-
* Factor with which is multiplied the bandwidth estimate when the ABR is in
|
|
364
|
-
* starvation mode.
|
|
365
|
-
* @type {Object}
|
|
366
|
-
*/
|
|
367
|
-
ABR_STARVATION_FACTOR: {
|
|
368
|
-
DEFAULT: number;
|
|
369
|
-
LOW_LATENCY: number;
|
|
370
|
-
};
|
|
371
|
-
/**
|
|
372
|
-
* Factor with which is multiplied the bandwidth estimate when the ABR is not
|
|
373
|
-
* in starvation mode.
|
|
374
|
-
* @type {Object}
|
|
375
|
-
*/
|
|
376
|
-
ABR_REGULAR_FACTOR: {
|
|
377
|
-
DEFAULT: number;
|
|
378
|
-
LOW_LATENCY: number;
|
|
379
|
-
};
|
|
380
|
-
/**
|
|
381
|
-
* If a media buffer has less than ABR_STARVATION_GAP in seconds ahead of the
|
|
382
|
-
* current position in its buffer, the adaptive logic will go into starvation
|
|
383
|
-
* mode.
|
|
384
|
-
*
|
|
385
|
-
* It gets out of starvation mode when the OUT_OF_STARVATION_GAP value is
|
|
386
|
-
* reached.
|
|
387
|
-
*
|
|
388
|
-
* Under this starvation mode:
|
|
389
|
-
*
|
|
390
|
-
* - the bandwidth considered will be a little lower than the one estimated
|
|
391
|
-
*
|
|
392
|
-
* - the time the next important request take will be checked
|
|
393
|
-
* multiple times to detect when/if it takes too much time.
|
|
394
|
-
* If the request is considered too long, the bitrate will be hastily
|
|
395
|
-
* re-calculated from this single request.
|
|
396
|
-
*
|
|
397
|
-
* @type {Object}
|
|
398
|
-
*/
|
|
399
|
-
ABR_STARVATION_GAP: {
|
|
400
|
-
DEFAULT: number;
|
|
401
|
-
LOW_LATENCY: number;
|
|
402
|
-
};
|
|
403
|
-
OUT_OF_STARVATION_GAP: {
|
|
404
|
-
DEFAULT: number;
|
|
405
|
-
LOW_LATENCY: number;
|
|
406
|
-
};
|
|
407
|
-
/**
|
|
408
|
-
* This is a security to avoid going into starvation mode when the content is
|
|
409
|
-
* ending (@see ABR_STARVATION_GAP).
|
|
410
|
-
* Basically, we subtract that value from the global duration of the content
|
|
411
|
-
* and we never enter "starvation mode" if the currently available buffer
|
|
412
|
-
* (which equals to the current position + the available buffer ahead of it)
|
|
413
|
-
* is equal or higher than this value.
|
|
414
|
-
* @type {Number}
|
|
415
|
-
*/
|
|
416
|
-
ABR_STARVATION_DURATION_DELTA: number;
|
|
417
|
-
/**
|
|
418
|
-
* Half-life, in seconds for a fastly-evolving exponential weighted moving
|
|
419
|
-
* average.
|
|
420
|
-
* The lower it is, the faster the ABR logic will react to the bandwidth
|
|
421
|
-
* falling quickly.
|
|
422
|
-
* Should be kept to a lower number than ABR_SLOW_EMA for coherency reasons.
|
|
423
|
-
* @type {Number}
|
|
424
|
-
*/
|
|
425
|
-
ABR_FAST_EMA: number;
|
|
426
|
-
/**
|
|
427
|
-
* Half-life, in seconds for a slowly-evolving exponential weighted moving
|
|
428
|
-
* average.
|
|
429
|
-
* The lower it is, the faster the ABR logic is going to react to recent
|
|
430
|
-
* bandwidth variation, on the higher and on the lower side.
|
|
431
|
-
* Should be kept to a higher number than ABR_FAST_EMA for coherency reasons.
|
|
432
|
-
* @type {Number}
|
|
433
|
-
*/
|
|
434
|
-
ABR_SLOW_EMA: number;
|
|
435
|
-
/**
|
|
436
|
-
* Number of seconds ahead in the buffer after which playback will resume when
|
|
437
|
-
* seeking on an unbuffered part of the content.
|
|
438
|
-
* @type {Number}
|
|
439
|
-
*/
|
|
440
|
-
RESUME_GAP_AFTER_SEEKING: {
|
|
441
|
-
DEFAULT: number;
|
|
442
|
-
LOW_LATENCY: number;
|
|
443
|
-
};
|
|
444
|
-
/**
|
|
445
|
-
* Number of seconds ahead in the buffer after which playback will resume when
|
|
446
|
-
* the player was rebuffering due to a low readyState.
|
|
447
|
-
* @type {Number}
|
|
448
|
-
*/
|
|
449
|
-
RESUME_GAP_AFTER_NOT_ENOUGH_DATA: {
|
|
450
|
-
DEFAULT: number;
|
|
451
|
-
LOW_LATENCY: number;
|
|
452
|
-
};
|
|
453
|
-
/**
|
|
454
|
-
* Number of seconds ahead in the buffer after which playback will resume
|
|
455
|
-
* after the player went through a buffering step.
|
|
456
|
-
* @type {Number}
|
|
457
|
-
*/
|
|
458
|
-
RESUME_GAP_AFTER_BUFFERING: {
|
|
459
|
-
DEFAULT: number;
|
|
460
|
-
LOW_LATENCY: number;
|
|
461
|
-
};
|
|
462
|
-
/**
|
|
463
|
-
* Maximum number of seconds in the buffer based on which a "rebuffering"
|
|
464
|
-
* strategy will be considered:
|
|
465
|
-
* The player will pause playback to get enough time building a sufficient
|
|
466
|
-
* buffer. This mostly happen when seeking in an unbuffered part or when not
|
|
467
|
-
* enough buffer is ahead of the current position.
|
|
468
|
-
* @type {Number}
|
|
469
|
-
*/
|
|
470
|
-
REBUFFERING_GAP: {
|
|
471
|
-
DEFAULT: number;
|
|
472
|
-
LOW_LATENCY: number;
|
|
473
|
-
};
|
|
474
|
-
/**
|
|
475
|
-
* Amount of time (in seconds) with data ahead of the current position, at
|
|
476
|
-
* which we always consider the browser to be able to play.
|
|
477
|
-
*
|
|
478
|
-
* If the media element has this amount of data in advance or more but
|
|
479
|
-
* playback cannot begin, the player will consider it "freezing".
|
|
480
|
-
*/
|
|
481
|
-
MINIMUM_BUFFER_AMOUNT_BEFORE_FREEZING: number;
|
|
482
|
-
/**
|
|
483
|
-
* A media whose position inexplicably does not increment despite playing is
|
|
484
|
-
* called as "freezing" in the RxPlayer.
|
|
485
|
-
*
|
|
486
|
-
* If the media is still "freezing" after waiting for `UNFREEZING_SEEK_DELAY`
|
|
487
|
-
* milliseconds, the RxPlayer will try to un-freeze the situation by interacting
|
|
488
|
-
* with the media element.
|
|
489
|
-
*
|
|
490
|
-
* Those interactions can be costly in time before playback continue, so it
|
|
491
|
-
* should be set at a sufficiently high value to avoid false positives.
|
|
492
|
-
*/
|
|
493
|
-
UNFREEZING_SEEK_DELAY: number;
|
|
494
|
-
/**
|
|
495
|
-
* A media whose position inexplicably does not increment despite playing is
|
|
496
|
-
* called as "freezing" in the RxPlayer.
|
|
497
|
-
*
|
|
498
|
-
* A small freezing interval may be normal as the browser may take time before
|
|
499
|
-
* playing, e.g. after a seek.
|
|
500
|
-
*
|
|
501
|
-
* If the media is still "freezing" after waiting for `FREEZING_STALLED_DELAY`
|
|
502
|
-
* milliseconds, the RxPlayer will emit a BUFFERING state through its API to
|
|
503
|
-
* notify that the player cannot currently advance.
|
|
504
|
-
*/
|
|
505
|
-
FREEZING_STALLED_DELAY: number;
|
|
506
|
-
/**
|
|
507
|
-
* A media whose position inexplicably does not increment despite playing is
|
|
508
|
-
* called as "freezing" in the RxPlayer.
|
|
509
|
-
*
|
|
510
|
-
* If the media is frozen for a sufficiently large time
|
|
511
|
-
* (@see UNFREEZING_SEEK_DELAY), the RxPlayer will perform a seek corresponding
|
|
512
|
-
* to its current position plus `UNFREEZING_DELTA_POSITION` seconds.
|
|
513
|
-
*
|
|
514
|
-
* This should be kept short enough as the goal is just to un-freeze lower-level
|
|
515
|
-
* buffers.
|
|
516
|
-
*/
|
|
517
|
-
UNFREEZING_DELTA_POSITION: number;
|
|
518
|
-
/**
|
|
519
|
-
* `FREEZING` is a situation where the playback does not seem to advance despite
|
|
520
|
-
* all web indicators telling us we can.
|
|
521
|
-
* Those may be linked to device issues, but sometimes are just linked to
|
|
522
|
-
* performance or it may be just decryption negotiations taking more time than
|
|
523
|
-
* expected.
|
|
524
|
-
*
|
|
525
|
-
* Anyway we might in the RxPlayer "flush" the buffer in that situation to
|
|
526
|
-
* un-stuck playback (this is usually done by seeking close to the current
|
|
527
|
-
* position),
|
|
528
|
-
*
|
|
529
|
-
* Yet that "flush" attempt may not in the end be succesful.
|
|
530
|
-
*
|
|
531
|
-
* If a flush was performed more than `FREEZING_FLUSH_FAILURE_DELAY.MINIMUM`
|
|
532
|
-
* milliseconds ago and less than `FREEZING_FLUSH_FAILURE_DELAY.MAXIMUM`
|
|
533
|
-
* milliseconds ago, yet a `FREEZING` situation at roughly the same playback
|
|
534
|
-
* position (deviating from less than
|
|
535
|
-
* `FREEZING_FLUSH_FAILURE_DELAY.POSITION_DELTA` seconds from it) is
|
|
536
|
-
* encountered again, we will consider that the flushing attempt was unsuccesful
|
|
537
|
-
* and try more agressive solutions (such as reloading the content).
|
|
538
|
-
*/
|
|
539
|
-
FREEZING_FLUSH_FAILURE_DELAY: {
|
|
540
|
-
MAXIMUM: number;
|
|
541
|
-
MINIMUM: number;
|
|
542
|
-
POSITION_DELTA: number;
|
|
543
|
-
};
|
|
544
|
-
/**
|
|
545
|
-
* The RxPlayer has a recurring logic which will synchronize the browser's
|
|
546
|
-
* buffers' buffered time ranges with its internal representation in the
|
|
547
|
-
* RxPlayer to then rely on that internal representation to determine where
|
|
548
|
-
* segments are technically present in the browser's buffer.
|
|
549
|
-
*
|
|
550
|
-
* We found out that when inserting a new segment to the buffer, the browser
|
|
551
|
-
* may actually take time before actually considering the full segment in its
|
|
552
|
-
* advertised buffered time ranges.
|
|
553
|
-
*
|
|
554
|
-
* This value thus set an amount of milliseconds we might want to wait before
|
|
555
|
-
* being sure that the buffered time ranges should have considered a segment
|
|
556
|
-
* that has been pushed.
|
|
557
|
-
*/
|
|
558
|
-
SEGMENT_SYNCHRONIZATION_DELAY: number;
|
|
559
|
-
/**
|
|
560
|
-
* The `SEGMENT_SYNCHRONIZATION_DELAY` defined in this same configuration
|
|
561
|
-
* object only needs to be used if it appears that the current buffered
|
|
562
|
-
* time ranges do not reflect the full data of a pushed segment yet.
|
|
563
|
-
*
|
|
564
|
-
* The `MISSING_DATA_TRIGGER_SYNC_DELAY` value thus allows to define a
|
|
565
|
-
* minimum time difference in seconds between what's buffered and what the
|
|
566
|
-
* segment's ranges should have been, from which we might consider that we may
|
|
567
|
-
* want to wait the `SEGMENT_SYNCHRONIZATION_DELAY` before trusting the buffered
|
|
568
|
-
* time ranges for that segment.
|
|
569
|
-
* If what's missing from that segment is however less than that value in
|
|
570
|
-
* seconds, we can begin to trust the reported buffered time ranges.
|
|
571
|
-
*
|
|
572
|
-
* Should generally be inferior to `MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT`.
|
|
573
|
-
*/
|
|
574
|
-
MISSING_DATA_TRIGGER_SYNC_DELAY: number;
|
|
575
|
-
/**
|
|
576
|
-
* Maximum authorized difference between what we calculated to be the
|
|
577
|
-
* beginning or end of the segment in a media buffer and what we
|
|
578
|
-
* actually are noticing now.
|
|
579
|
-
*
|
|
580
|
-
* If the segment seems to have removed more than this size in seconds, we
|
|
581
|
-
* will infer that the segment has been garbage collected and we might try to
|
|
582
|
-
* re-download it.
|
|
583
|
-
* @type {Number}
|
|
584
|
-
*/
|
|
585
|
-
MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT: number;
|
|
586
|
-
/**
|
|
587
|
-
* The maximum authorized difference, in seconds, between the real buffered
|
|
588
|
-
* time of a given chunk and what the segment information of the Manifest
|
|
589
|
-
* tells us.
|
|
590
|
-
*
|
|
591
|
-
* Setting a value too high can lead to parts of the media buffer being
|
|
592
|
-
* linked to the wrong segments and to segments wrongly believed to be still
|
|
593
|
-
* complete (instead of garbage collected).
|
|
594
|
-
*
|
|
595
|
-
* Setting a value too low can lead to parts of the media buffer not being
|
|
596
|
-
* linked to the concerned segment and to segments wrongly believed to be
|
|
597
|
-
* partly garbage collected (instead of complete segments).
|
|
598
|
-
* @type {Number}
|
|
599
|
-
*/
|
|
600
|
-
MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE: number;
|
|
601
|
-
/**
|
|
602
|
-
* The maximum authorized difference, in seconds, between the duration a
|
|
603
|
-
* segment should have according to the Manifest and the actual duration it
|
|
604
|
-
* seems to have once pushed to the media buffer.
|
|
605
|
-
*
|
|
606
|
-
* Setting a value too high can lead to parts of the media buffer being
|
|
607
|
-
* linked to the wrong segments and to segments wrongly believed to be still
|
|
608
|
-
* complete (instead of garbage collected).
|
|
609
|
-
*
|
|
610
|
-
* Setting a value too low can lead to parts of the media buffer not being
|
|
611
|
-
* linked to the concerned segment and to segments wrongly believed to be
|
|
612
|
-
* partly garbage collected (instead of complete segments). This last point
|
|
613
|
-
* could lead to unnecessary segment re-downloading.
|
|
614
|
-
* @type {Number}
|
|
615
|
-
*/
|
|
616
|
-
MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE: number;
|
|
617
|
-
/**
|
|
618
|
-
* Minimum duration in seconds a segment should be into a buffered range to be
|
|
619
|
-
* considered as part of that range.
|
|
620
|
-
* Segments which have less than this amount of time "linked" to a buffered
|
|
621
|
-
* range will be deleted.
|
|
622
|
-
*
|
|
623
|
-
* Setting a value too low can lead in worst-case scenarios to segments being
|
|
624
|
-
* wrongly linked to the next or previous range it is truly linked too (if
|
|
625
|
-
* those ranges are too close).
|
|
626
|
-
*
|
|
627
|
-
* Setting a value too high can lead to part of the buffer not being assigned
|
|
628
|
-
* any segment. It also limits the minimum duration a segment can be.
|
|
629
|
-
*
|
|
630
|
-
* TODO As of now, this limits the minimum size a complete segment can be. A
|
|
631
|
-
* better logic would be to also consider the duration of a segment. Though
|
|
632
|
-
* this logic could lead to bugs with the current code.
|
|
633
|
-
* @type {Number}
|
|
634
|
-
*/
|
|
635
|
-
MINIMUM_SEGMENT_SIZE: number;
|
|
636
|
-
/**
|
|
637
|
-
* Append windows allow to filter media data from segments if they are outside
|
|
638
|
-
* a given limit.
|
|
639
|
-
* Coded frames with presentation timestamp within this range are allowed to
|
|
640
|
-
* be appended to the media buffer while coded frames outside this range are
|
|
641
|
-
* filtered out.
|
|
642
|
-
*
|
|
643
|
-
* Those are often set to be the start and end of the "Period" the segment is
|
|
644
|
-
* in.
|
|
645
|
-
* However, we noticed that some browsers were too aggressive when the exact
|
|
646
|
-
* limits were set: more data than needed was removed, often leading to
|
|
647
|
-
* discontinuities.
|
|
648
|
-
*
|
|
649
|
-
* Those securities are added to the set windows (substracted from the window
|
|
650
|
-
* start and added to the window end) to avoid those problems.
|
|
651
|
-
* @type {Object}
|
|
652
|
-
*/
|
|
653
|
-
APPEND_WINDOW_SECURITIES: {
|
|
654
|
-
START: number;
|
|
655
|
-
END: number;
|
|
656
|
-
};
|
|
657
|
-
/**
|
|
658
|
-
* Maximum interval at which text tracks are refreshed in an "html"
|
|
659
|
-
* textTrackMode.
|
|
660
|
-
*
|
|
661
|
-
* The text tracks are also refreshed on various video events, this interval
|
|
662
|
-
* will only trigger a refresh if none of those events was received during
|
|
663
|
-
* that timespan.
|
|
664
|
-
*
|
|
665
|
-
* Note that if the TextTrack cue did not change between two intervals or
|
|
666
|
-
* events, the DOM won't be refreshed.
|
|
667
|
-
* The TextTrack cues structure is also optimized for fast retrieval.
|
|
668
|
-
* We should thus not have much of a performance impact here if we set a low
|
|
669
|
-
* interval.
|
|
670
|
-
*
|
|
671
|
-
* @type {Number}
|
|
672
|
-
*/
|
|
673
|
-
MAXIMUM_HTML_TEXT_TRACK_UPDATE_INTERVAL: number;
|
|
674
|
-
/**
|
|
675
|
-
* On browsers with no ResizeObserver API, this will be the interval in
|
|
676
|
-
* milliseconds at which we should check if the text track element has
|
|
677
|
-
* changed its size, and updates proportional text-track data accordingly
|
|
678
|
-
* (like a proportional font-size).
|
|
679
|
-
*
|
|
680
|
-
* This is only used:
|
|
681
|
-
* - in an "html" textTrackMode
|
|
682
|
-
* - when some styling is proportional in the text track data
|
|
683
|
-
*
|
|
684
|
-
* Putting a value too low will render faster but might use to much proc time.
|
|
685
|
-
* Putting a value too high might provoke a re-render too late after the user
|
|
686
|
-
* changed the element's size (e.g. when going to fullscreen mode).
|
|
687
|
-
*
|
|
688
|
-
* @type {Number}
|
|
689
|
-
*/
|
|
690
|
-
TEXT_TRACK_SIZE_CHECKS_INTERVAL: number;
|
|
691
|
-
/**
|
|
692
|
-
* The Buffer padding is a time offset from the current time that affects
|
|
693
|
-
* the buffer.
|
|
694
|
-
*
|
|
695
|
-
* Basically, from a given time, if the current buffer gap number (time
|
|
696
|
-
* between the current time and the end of the downloaded buffer) is above
|
|
697
|
-
* the padding described here (of the corresponding type), we won't
|
|
698
|
-
* reschedule segments for that range.
|
|
699
|
-
*
|
|
700
|
-
* This is to avoid excessive re-buffering.
|
|
701
|
-
*
|
|
702
|
-
* Keeping the padding too low would increase the risk of re-bufferings.
|
|
703
|
-
*
|
|
704
|
-
* Keeping the padding too high would delay visible quality increase.
|
|
705
|
-
*
|
|
706
|
-
* @type {Object}
|
|
707
|
-
*/
|
|
708
|
-
BUFFER_PADDING: {
|
|
709
|
-
audio: number;
|
|
710
|
-
video: number;
|
|
711
|
-
other: number;
|
|
712
|
-
};
|
|
713
|
-
/**
|
|
714
|
-
* Segments of different types are downloaded by steps:
|
|
715
|
-
*
|
|
716
|
-
* - first the audio/video/text Segments which are immediately needed
|
|
717
|
-
*
|
|
718
|
-
* - then once every of those Segments have been downloaded, less-needed
|
|
719
|
-
* Segments
|
|
720
|
-
*
|
|
721
|
-
* - then once every of those less-needed Segments have been downloaded,
|
|
722
|
-
* even less-needed Segments
|
|
723
|
-
*
|
|
724
|
-
* - etc.
|
|
725
|
-
*
|
|
726
|
-
* This stepped download strategy allows to make a better use of network
|
|
727
|
-
* ressources.
|
|
728
|
-
*
|
|
729
|
-
* For example, if more than sufficient audio buffer has been downloaded but
|
|
730
|
-
* the immediately-needed video Segment is still pending its request, we might
|
|
731
|
-
* be in a situation of rebuffering.
|
|
732
|
-
* In that case, a better strategy would be to make sure every network
|
|
733
|
-
* ressource is allocated for this video Segment before rebuffering happens.
|
|
734
|
-
*
|
|
735
|
-
* This is where those steps become useful.
|
|
736
|
-
*
|
|
737
|
-
* --
|
|
738
|
-
*
|
|
739
|
-
* The numbers defined in this Array describe what the steps are.
|
|
740
|
-
*
|
|
741
|
-
* Each number is linked to a distance from the current playing position, in
|
|
742
|
-
* seconds.
|
|
743
|
-
* Distances which will be used as limit points, from which a new step is
|
|
744
|
-
* reached (see example).
|
|
745
|
-
*
|
|
746
|
-
* In the RxPlayer's code, each step is then translated in to a priority
|
|
747
|
-
* number.
|
|
748
|
-
* The lower is that number, the lower is the step and the lower is the step,
|
|
749
|
-
* the higher is the priority.
|
|
750
|
-
*
|
|
751
|
-
* Note: You can set an empty array to deactivate the steps feature (every
|
|
752
|
-
* Segments have the same priority).
|
|
753
|
-
*
|
|
754
|
-
* @example
|
|
755
|
-
*
|
|
756
|
-
* let's imagine the following SEGMENT_PRIORITIES_STEPS array:
|
|
757
|
-
* [5, 11, 17, 25]
|
|
758
|
-
*
|
|
759
|
-
* To link each Segments to a corresponding priority number (and thus to a
|
|
760
|
-
* specific step), we have to consider the distance between the current
|
|
761
|
-
* position and the start time of the Segment.
|
|
762
|
-
*
|
|
763
|
-
* We have in our example 5 groups, which correspond to the following possible
|
|
764
|
-
* distances:
|
|
765
|
-
* 1. inferior to 5 => first step (priority number = 0)
|
|
766
|
-
* 2. between 5 and 11 => second step (priority number = 1)
|
|
767
|
-
* 3. between 11 and 17 => third step (priority number = 2)
|
|
768
|
-
* 4. between 17 and 25 => fourth step (priority number = 3)
|
|
769
|
-
* 5. superior to 25 => fifth step (priority number = 4)
|
|
770
|
-
*
|
|
771
|
-
* Segments corresponding to a lower-step will need to all be downloaded
|
|
772
|
-
* before Segments of a newer step begin.
|
|
773
|
-
*
|
|
774
|
-
* @type {Array.<Number>}
|
|
775
|
-
*/
|
|
776
|
-
SEGMENT_PRIORITIES_STEPS: number[];
|
|
777
|
-
/**
|
|
778
|
-
* Some segment requests are said to be "high priority".
|
|
779
|
-
*
|
|
780
|
-
* Requests in that category once done will cancel any segment request that
|
|
781
|
-
* has a low priority number (see `SEGMENT_PRIORITIES_STEPS`) - meaning a
|
|
782
|
-
* priority number equal to `MIN_CANCELABLE_PRIORITY` or more.
|
|
783
|
-
*
|
|
784
|
-
* Enter here the last priority number that is considered high priority
|
|
785
|
-
* (beginning by the first step, which has the priority number `0`).
|
|
786
|
-
* @type {number}
|
|
787
|
-
*/
|
|
788
|
-
MAX_HIGH_PRIORITY_LEVEL: number;
|
|
789
|
-
/**
|
|
790
|
-
* Enter here the first priority step (see `SEGMENT_PRIORITIES_STEPS`) that
|
|
791
|
-
* will be considered as low priority.
|
|
792
|
-
*
|
|
793
|
-
* Segment requests with a low priority will be cancelled if a high priority
|
|
794
|
-
* segment request (see MAX_HIGH_PRIORITY_LEVEL) is scheduled while they are
|
|
795
|
-
* pending.
|
|
796
|
-
*
|
|
797
|
-
* This number should be strictly superior to the value indicated in
|
|
798
|
-
* `MAX_HIGH_PRIORITY_LEVEL`.
|
|
799
|
-
* @type {number}
|
|
800
|
-
*/
|
|
801
|
-
MIN_CANCELABLE_PRIORITY: number;
|
|
802
|
-
/**
|
|
803
|
-
* Codecs used in the videoCapabilities of the MediaKeySystemConfiguration
|
|
804
|
-
* (DRM).
|
|
805
|
-
*
|
|
806
|
-
* Defined in order of importance (first will be tested first etc.)
|
|
807
|
-
* @type {Array.<string>}
|
|
808
|
-
*/
|
|
809
|
-
EME_DEFAULT_VIDEO_CODECS: string[];
|
|
810
|
-
/**
|
|
811
|
-
* Codecs used in the audioCapabilities of the MediaKeySystemConfiguration
|
|
812
|
-
* (DRM).
|
|
813
|
-
*
|
|
814
|
-
* Defined in order of importance (first will be tested first etc.)
|
|
815
|
-
* @type {Array.<string>}
|
|
816
|
-
*/
|
|
817
|
-
EME_DEFAULT_AUDIO_CODECS: string[];
|
|
818
|
-
/**
|
|
819
|
-
* Robustnesses used in the {audio,video}Capabilities of the
|
|
820
|
-
* MediaKeySystemConfiguration (DRM).
|
|
821
|
-
*
|
|
822
|
-
* Only used for widevine keysystems.
|
|
823
|
-
*
|
|
824
|
-
* Defined in order of importance (first will be tested first etc.)
|
|
825
|
-
* @type {Array.<string>}
|
|
826
|
-
*/
|
|
827
|
-
EME_DEFAULT_WIDEVINE_ROBUSTNESSES: string[];
|
|
828
|
-
/**
|
|
829
|
-
* Robustnesses used in the {audio,video}Capabilities of the
|
|
830
|
-
* MediaKeySystemConfiguration (DRM).
|
|
831
|
-
*
|
|
832
|
-
* Only used for "com.microsoft.playready.recommendation" keysystems.
|
|
833
|
-
*
|
|
834
|
-
* Defined in order of importance (first will be tested first etc.)
|
|
835
|
-
* @type {Array.<string>}
|
|
836
|
-
*/
|
|
837
|
-
EME_DEFAULT_PLAYREADY_RECOMMENDATION_ROBUSTNESSES: string[];
|
|
838
|
-
/**
|
|
839
|
-
* Link canonical key systems names to their respective reverse domain name,
|
|
840
|
-
* used in the EME APIs.
|
|
841
|
-
* This allows to have a simpler API, where users just need to set "widevine"
|
|
842
|
-
* or "playready" as a keySystem.
|
|
843
|
-
* @type {Object}
|
|
844
|
-
*/
|
|
845
|
-
EME_KEY_SYSTEMS: Partial<Record<string, string[]>>;
|
|
846
|
-
/**
|
|
847
|
-
* The Manifest parsing logic has a notion of "unsafeMode" which allows to
|
|
848
|
-
* speed-up this process a lot with a small risk of de-synchronization with
|
|
849
|
-
* what actually is on the server.
|
|
850
|
-
* Because using that mode is risky, and can lead to all sort of problems, we
|
|
851
|
-
* regularly should fall back to a regular "safe" parsing every once in a
|
|
852
|
-
* while.
|
|
853
|
-
* This value defines how many consecutive time maximum the "unsafeMode"
|
|
854
|
-
* parsing can be done.
|
|
855
|
-
*/
|
|
856
|
-
MAX_CONSECUTIVE_MANIFEST_PARSING_IN_UNSAFE_MODE: number;
|
|
857
|
-
/**
|
|
858
|
-
* Minimum time spent parsing the Manifest before we can authorize parsing
|
|
859
|
-
* it in an "unsafeMode", to speed-up the process with a little risk.
|
|
860
|
-
* Please note that this parsing time also sometimes includes idle time such
|
|
861
|
-
* as when the parser is waiting for a request to finish.
|
|
862
|
-
*/
|
|
863
|
-
MIN_MANIFEST_PARSING_TIME_TO_ENTER_UNSAFE_MODE: number;
|
|
864
|
-
/**
|
|
865
|
-
* Minimum amount of <S> elements in a DASH MPD's <SegmentTimeline> element
|
|
866
|
-
* necessary to begin parsing the current SegmentTimeline element in an
|
|
867
|
-
* unsafe manner (meaning: with risks of de-synchronization).
|
|
868
|
-
* This is only done when the "unsafeMode" parsing mode is enabled.
|
|
869
|
-
*/
|
|
870
|
-
MIN_DASH_S_ELEMENTS_TO_PARSE_UNSAFELY: number;
|
|
871
|
-
/**
|
|
872
|
-
* When we detect that the local Manifest might be out-of-sync with the
|
|
873
|
-
* server's one, we schedule a Manifest refresh.
|
|
874
|
-
* However, as this "unsynchronization" is only a theory and as we do not want
|
|
875
|
-
* to send too many Manifest requests, we keep a delay between the last
|
|
876
|
-
* Manifest refresh done and that one.
|
|
877
|
-
* This value indicates which delay we want. Note that the Manifest could
|
|
878
|
-
* still be refreshed before this delay for other reasons.
|
|
879
|
-
* @type {Number}
|
|
880
|
-
*/
|
|
881
|
-
OUT_OF_SYNC_MANIFEST_REFRESH_DELAY: number;
|
|
882
|
-
/**
|
|
883
|
-
* When a partial Manifest update (that is an update with a partial sub-set
|
|
884
|
-
* of the Manifest) fails, we will perform an update with the whole Manifest
|
|
885
|
-
* instead.
|
|
886
|
-
* To not overload the client - as parsing a Manifest can be resource heavy -
|
|
887
|
-
* we set a minimum delay to wait before doing the corresponding request.
|
|
888
|
-
* @type {Number}
|
|
889
|
-
*/
|
|
890
|
-
FAILED_PARTIAL_UPDATE_MANIFEST_REFRESH_DELAY: number;
|
|
891
|
-
/**
|
|
892
|
-
* DASH Manifest based on a SegmentTimeline should normally have an
|
|
893
|
-
* MPD@minimumUpdatePeriod attribute which should be sufficient to
|
|
894
|
-
* know when to refresh it.
|
|
895
|
-
* However, there is a specific case, for when it is equal to 0.
|
|
896
|
-
* As of DASH-IF IOP (valid in v4.3), when a DASH's MPD set a
|
|
897
|
-
* MPD@minimumUpdatePeriod to `0`, a client should not refresh the MPD
|
|
898
|
-
* unless told to do so through inband events, in the stream.
|
|
899
|
-
* In reality however, we found it to not always be the case (even with
|
|
900
|
-
* DASH-IF own streams) and moreover to not always be the best thing to do.
|
|
901
|
-
* We prefer to refresh in average at a regular interval when we do not have
|
|
902
|
-
* this information.
|
|
903
|
-
* /!\ This value is expressed in seconds.
|
|
904
|
-
*/
|
|
905
|
-
DASH_FALLBACK_LIFETIME_WHEN_MINIMUM_UPDATE_PERIOD_EQUAL_0: number;
|
|
906
|
-
/**
|
|
907
|
-
* Default value for the maximum number of simultaneous MediaKeySessions that
|
|
908
|
-
* will be kept in a cache (linked to the MediaKeys instance) to avoid doing
|
|
909
|
-
* superfluous license requests.
|
|
910
|
-
*
|
|
911
|
-
* If this number is reached, any new session creation will close the oldest
|
|
912
|
-
* one.
|
|
913
|
-
* Another value can be configured through the API, in which case this default
|
|
914
|
-
* will be overwritten.
|
|
915
|
-
* @type {Number}
|
|
916
|
-
*/
|
|
917
|
-
EME_DEFAULT_MAX_SIMULTANEOUS_MEDIA_KEY_SESSIONS: number;
|
|
918
|
-
/**
|
|
919
|
-
* When playing contents with a persistent license, we will usually store some
|
|
920
|
-
* information related to that MediaKeySession, to be able to play it at a
|
|
921
|
-
* later time.
|
|
922
|
-
*
|
|
923
|
-
* Those information are removed once a MediaKeySession is not considered
|
|
924
|
-
* as "usable" anymore. But to know that, the RxPlayer has to load it.
|
|
925
|
-
*
|
|
926
|
-
* But the RxPlayer does not re-load every persisted MediaKeySession every
|
|
927
|
-
* time to check each one of them one by one, as this would not be a
|
|
928
|
-
* performant thing to do.
|
|
929
|
-
*
|
|
930
|
-
* So this is only done when and if the corresponding content is encountered
|
|
931
|
-
* again and only if it contains the same initialization data.
|
|
932
|
-
*
|
|
933
|
-
* We have to consider that those "information" contain binary data which can
|
|
934
|
-
* be of arbitrary length. Size taken by an array of them can relatively
|
|
935
|
-
* rapidly take a lot of space in JS memory.
|
|
936
|
-
*
|
|
937
|
-
* So to avoid this storage to take too much space (would it be in the chosen
|
|
938
|
-
* browser's storage or in JS memory), we now set a higher bound for the
|
|
939
|
-
* amount of MediaKeySession information that can be stored at the same time.
|
|
940
|
-
*
|
|
941
|
-
* I set the value of 1000 here, as it seems big enough to not be considered a
|
|
942
|
-
* problem (though it can become one, when contents have a lot of keys per
|
|
943
|
-
* content), and still low enough so it should not cause much problem (my
|
|
944
|
-
* method to choose that number was to work with power of 10s and choosing the
|
|
945
|
-
* amount which seemed the most sensible one).
|
|
946
|
-
*
|
|
947
|
-
* This wasn't battle-tested however.
|
|
948
|
-
*/
|
|
949
|
-
EME_MAX_STORED_PERSISTENT_SESSION_INFORMATION: number;
|
|
950
|
-
/**
|
|
951
|
-
* After loading a persistent MediaKeySession, the RxPlayer needs to ensure
|
|
952
|
-
* that its keys still allow to decrypt a content.
|
|
953
|
-
*
|
|
954
|
-
* However on some browsers, the `keyStatuses` property that we used to check
|
|
955
|
-
* the keys' satuses linked to that session can be empty for some time after
|
|
956
|
-
* the loading operation is done.
|
|
957
|
-
*
|
|
958
|
-
* This value allows to configure a delay in milliseconds that will be the
|
|
959
|
-
* maximum time we will wait after a persistent session is loaded.
|
|
960
|
-
* If after that time, the `keyStatuses` property is still empty, we will
|
|
961
|
-
* consider that session as not usable.
|
|
962
|
-
*/
|
|
963
|
-
EME_WAITING_DELAY_LOADED_SESSION_EMPTY_KEYSTATUSES: number;
|
|
964
|
-
/**
|
|
965
|
-
* The player relies on browser events and properties to update its status to
|
|
966
|
-
* "ENDED".
|
|
967
|
-
*
|
|
968
|
-
* Sadly in some cases, like in Chrome 54, this event is never triggered on
|
|
969
|
-
* some contents probably due to a browser bug.
|
|
970
|
-
*
|
|
971
|
-
* This threshold resolves this issue by forcing the status to "ENDED" when:
|
|
972
|
-
* 1. the player is stalling
|
|
973
|
-
* 2. the absolute difference between current playback time and duration is
|
|
974
|
-
* under this value
|
|
975
|
-
*
|
|
976
|
-
* If set to null, this workaround is disabled and the player only relies on
|
|
977
|
-
* browser events.
|
|
978
|
-
*
|
|
979
|
-
* @type {Number|null}
|
|
980
|
-
*/
|
|
981
|
-
FORCED_ENDED_THRESHOLD: number;
|
|
982
|
-
/**
|
|
983
|
-
* Maximum duration from the current position we will let in the buffer when
|
|
984
|
-
* switching an Adaptation/Representations of a given type.
|
|
985
|
-
*
|
|
986
|
-
* For example, if we have ``text: { before: 1, after: 4 }``, it means that
|
|
987
|
-
* when switching subtitles, we will let 1 second before and 4 second after
|
|
988
|
-
* the current position in the previous language (until the new segments
|
|
989
|
-
* overwrite it).
|
|
990
|
-
* This is to allow smooth transitions and avoid de-synchronization that
|
|
991
|
-
* can happen when removing the content being decoded.
|
|
992
|
-
* @type {Object}
|
|
993
|
-
*/
|
|
994
|
-
ADAP_REP_SWITCH_BUFFER_PADDINGS: {
|
|
995
|
-
video: {
|
|
996
|
-
before: number;
|
|
997
|
-
after: number;
|
|
998
|
-
};
|
|
999
|
-
audio: {
|
|
1000
|
-
before: number;
|
|
1001
|
-
after: number;
|
|
1002
|
-
};
|
|
1003
|
-
text: {
|
|
1004
|
-
before: number;
|
|
1005
|
-
after: number;
|
|
1006
|
-
};
|
|
1007
|
-
};
|
|
1008
|
-
/**
|
|
1009
|
-
* Interval, in milliseconds, at which we should manually flush
|
|
1010
|
-
* SourceBuffers.
|
|
1011
|
-
* Some browsers (happened with firefox 66) sometimes "forget" to send us
|
|
1012
|
-
* `update` or `updateend` events.
|
|
1013
|
-
* In that case, we're completely unable to continue the queue here and
|
|
1014
|
-
* stay locked in a waiting state.
|
|
1015
|
-
* This interval is here to check at regular intervals if the underlying
|
|
1016
|
-
* SourceBuffer is currently updating.
|
|
1017
|
-
* @type {Number}
|
|
1018
|
-
*/
|
|
1019
|
-
SOURCE_BUFFER_FLUSHING_INTERVAL: number;
|
|
1020
|
-
/**
|
|
1021
|
-
* Any already-pushed segment starting before or at the current position +
|
|
1022
|
-
* CONTENT_REPLACEMENT_PADDING won't be replaced by new segments.
|
|
1023
|
-
*
|
|
1024
|
-
* This allows to avoid overwriting segments that are currently being decoded
|
|
1025
|
-
* as we encountered many decoding issues when doing so.
|
|
1026
|
-
* @type {Number} - in seconds
|
|
1027
|
-
*/
|
|
1028
|
-
CONTENT_REPLACEMENT_PADDING: number;
|
|
1029
|
-
/**
|
|
1030
|
-
* For video and audio segments, determines two thresholds below which :
|
|
1031
|
-
* - The segment is considered as loaded from cache
|
|
1032
|
-
* - The segment may be loaded from cache depending on the previous request
|
|
1033
|
-
*/
|
|
1034
|
-
CACHE_LOAD_DURATION_THRESHOLDS: {
|
|
1035
|
-
video: number;
|
|
1036
|
-
audio: number;
|
|
1037
|
-
};
|
|
1038
|
-
/** Interval we will use to poll for checking if an event shall be emitted */
|
|
1039
|
-
STREAM_EVENT_EMITTER_POLL_INTERVAL: number;
|
|
1040
|
-
/**
|
|
1041
|
-
* In Javascript, numbers are encoded in a way that a floating number may be
|
|
1042
|
-
* represented internally with a rounding error. When multiplying times in
|
|
1043
|
-
* seconds by the timescale, we've encoutered cases were the rounding error
|
|
1044
|
-
* was amplified by a factor which is about the timescale.
|
|
1045
|
-
* Example :
|
|
1046
|
-
* (192797480.641122).toFixed(20) = 192797480.64112201333045959473
|
|
1047
|
-
* (error is 0.0000000133...)
|
|
1048
|
-
* 192797480.641122 * 10000000 = 1927974806411220.2 (error is 0.2)
|
|
1049
|
-
* 192797480.641122 * 10000000 * 4 = 7711899225644881 (error is 1)
|
|
1050
|
-
* The error is much more significant here, once the timescale has been
|
|
1051
|
-
* applied.
|
|
1052
|
-
* Thus, we consider that our max tolerable rounding error is 1ms.
|
|
1053
|
-
* It is much more than max rounding errors when seen into practice,
|
|
1054
|
-
* and not significant from the media loss perspective.
|
|
1055
|
-
*/
|
|
1056
|
-
DEFAULT_MAXIMUM_TIME_ROUNDING_ERROR: number;
|
|
1057
|
-
/**
|
|
1058
|
-
* RxPlayer's media buffers have a linked history registering recent events
|
|
1059
|
-
* that happened on those.
|
|
1060
|
-
* The reason is to implement various heuristics in case of weird browser
|
|
1061
|
-
* behavior.
|
|
1062
|
-
*
|
|
1063
|
-
* The `BUFFERED_HISTORY_RETENTION_TIME` is the minimum age an entry of
|
|
1064
|
-
* that history can have before being removed from the history.
|
|
1065
|
-
*/
|
|
1066
|
-
BUFFERED_HISTORY_RETENTION_TIME: number;
|
|
1067
|
-
/**
|
|
1068
|
-
* RxPlayer's media buffers have a linked history registering recent events
|
|
1069
|
-
* that happened on those.
|
|
1070
|
-
* The reason is to implement various heuristics in case of weird browser
|
|
1071
|
-
* behavior.
|
|
1072
|
-
*
|
|
1073
|
-
* The `BUFFERED_HISTORY_RETENTION_TIME` is the maximum number of entries
|
|
1074
|
-
* there can be in that history.
|
|
1075
|
-
*/
|
|
1076
|
-
BUFFERED_HISTORY_MAXIMUM_ENTRIES: number;
|
|
1077
|
-
/**
|
|
1078
|
-
* Minimum buffer in seconds ahead relative to current time
|
|
1079
|
-
* we should be able to download, even in cases of saturated memory.
|
|
1080
|
-
*/
|
|
1081
|
-
MIN_BUFFER_AHEAD: number;
|
|
1082
|
-
/**
|
|
1083
|
-
* Distance in seconds behind the current position
|
|
1084
|
-
* the player will free up to in the case we agressively free up memory
|
|
1085
|
-
* It is set to avoid playback issues
|
|
1086
|
-
*/
|
|
1087
|
-
UPTO_CURRENT_POSITION_CLEANUP: number;
|
|
1088
|
-
/**
|
|
1089
|
-
* Default "switching mode" used when locking video Representations.
|
|
1090
|
-
* That is, which behavior the RxPlayer should have by default when
|
|
1091
|
-
* explicitely and manually switching from a previous set of video
|
|
1092
|
-
* Representations to a new one.
|
|
1093
|
-
*/
|
|
1094
|
-
DEFAULT_VIDEO_REPRESENTATIONS_SWITCHING_MODE: "seamless";
|
|
1095
|
-
/**
|
|
1096
|
-
* Default "switching mode" used when locking audio Representations.
|
|
1097
|
-
* That is, which behavior the RxPlayer should have by default when
|
|
1098
|
-
* explicitely and manually switching from a previous set of audio
|
|
1099
|
-
* Representations to a new one.
|
|
1100
|
-
*/
|
|
1101
|
-
DEFAULT_AUDIO_REPRESENTATIONS_SWITCHING_MODE: "seamless";
|
|
1102
|
-
/**
|
|
1103
|
-
* Default "switching mode" used when switching between video tracks.
|
|
1104
|
-
* That is, which behavior the RxPlayer should have by default when
|
|
1105
|
-
* explicitely and manually switching from a previous video track to a new
|
|
1106
|
-
* one.
|
|
1107
|
-
*/
|
|
1108
|
-
DEFAULT_VIDEO_TRACK_SWITCHING_MODE: "reload";
|
|
1109
|
-
/**
|
|
1110
|
-
* Default "switching mode" used when switching between audio tracks.
|
|
1111
|
-
* That is, which behavior the RxPlayer should have by default when
|
|
1112
|
-
* explicitely and manually switching from a previous audio track to a new
|
|
1113
|
-
* one.
|
|
1114
|
-
*/
|
|
1115
|
-
DEFAULT_AUDIO_TRACK_SWITCHING_MODE: "seamless";
|
|
1116
|
-
/**
|
|
1117
|
-
* The default number of times a thumbnail request will be re-performed when
|
|
1118
|
-
* on error which justify a retry.
|
|
1119
|
-
*
|
|
1120
|
-
* Note that some errors do not use this counter:
|
|
1121
|
-
* - if the error is not due to the xhr, no retry will be peformed
|
|
1122
|
-
* - if the error is an HTTP error code, but not a 500-smthg or a 404, no
|
|
1123
|
-
* retry will be performed.
|
|
1124
|
-
* @type Number
|
|
1125
|
-
*/
|
|
1126
|
-
DEFAULT_MAX_THUMBNAIL_REQUESTS_RETRY_ON_ERROR: number;
|
|
1127
|
-
/**
|
|
1128
|
-
* Default time interval after which a thumbnail request will timeout, in ms.
|
|
1129
|
-
* @type {Number}
|
|
1130
|
-
*/
|
|
1131
|
-
DEFAULT_THUMBNAIL_REQUEST_TIMEOUT: number;
|
|
1132
|
-
/**
|
|
1133
|
-
* Default connection time after which a thumbnail request conncection will
|
|
1134
|
-
* timeout, in ms.
|
|
1135
|
-
* @type {Number}
|
|
1136
|
-
*/
|
|
1137
|
-
DEFAULT_THUMBNAIL_CONNECTION_TIMEOUT: number;
|
|
1138
|
-
/**
|
|
1139
|
-
* If set to `true`, we'll always try to check thoroughly that a
|
|
1140
|
-
* `MediaKeySystemAccess` can be relied on.
|
|
1141
|
-
*/
|
|
1142
|
-
FORCE_CANNOT_RELY_ON_REQUEST_MEDIA_KEY_SYSTEM_ACCESS: boolean;
|
|
1143
|
-
/**
|
|
1144
|
-
* If set to `true`, we'll always re-create a `MediaKeys` instance for each
|
|
1145
|
-
* encrypted content where we need one.
|
|
1146
|
-
*/
|
|
1147
|
-
FORCE_CANNOT_REUSE_MEDIA_KEYS: boolean;
|
|
1148
|
-
/**
|
|
1149
|
-
* If set to `true`, force work-around for devices which have issues with
|
|
1150
|
-
* `MediaSource` objects with a high `duration` property.
|
|
1151
|
-
*/
|
|
1152
|
-
FORCE_HAS_ISSUES_WITH_HIGH_MEDIA_SOURCE_DURATION: boolean;
|
|
1153
|
-
/**
|
|
1154
|
-
* If set to `true`, the device might seek before what we actually tell it to,
|
|
1155
|
-
* breaking other RxPlayer behaviors in the process.
|
|
1156
|
-
* Setting it to `true` allows to enable work-arounds.
|
|
1157
|
-
*/
|
|
1158
|
-
FORCE_IS_SEEKING_APPROXIMATE: boolean;
|
|
1159
|
-
/**
|
|
1160
|
-
* If set to `true`, the device might fail directly after uncountering
|
|
1161
|
-
* decipherable data.
|
|
1162
|
-
*/
|
|
1163
|
-
FORCE_MEDIA_ELEMENT_FAIL_ON_UNDECIPHERABLE_DATA: boolean;
|
|
1164
|
-
/**
|
|
1165
|
-
* If set to `true` we'll await a `MediaKeys` attachment on a given
|
|
1166
|
-
* `HTMLMediaElement` before trying to set a new one.
|
|
1167
|
-
*/
|
|
1168
|
-
FORCE_SHOULD_AWAIT_SET_MEDIA_KEYS: boolean;
|
|
1169
|
-
/** If set to `true` we'll rely on Safari's Webkit flavor of the EME API. */
|
|
1170
|
-
FORCE_SHOULD_FAVOUR_CUSTOM_SAFARI_EME: boolean;
|
|
1171
|
-
/**
|
|
1172
|
-
* If `true`, we'll reload if unencrypted data is encountered close to
|
|
1173
|
-
* the current position.
|
|
1174
|
-
*/
|
|
1175
|
-
FORCE_SHOULD_RELOAD_MEDIA_SOURCE_ON_DECIPHERABILITY_UPDATE: boolean;
|
|
1176
|
-
/** If `true`, we'll for each content re-create a `MediaKeySystemAccess`. */
|
|
1177
|
-
FORCE_SHOULD_RENEW_MEDIA_KEY_SYSTEM_ACCESS: boolean;
|
|
1178
|
-
/** If `true`, we'll unset the `MediaKeys` at each stop. */
|
|
1179
|
-
FORCE_SHOULD_UNSET_MEDIA_KEYS: boolean;
|
|
1180
|
-
/**
|
|
1181
|
-
* If `true`, we cannot trust that a `loadedmetadata` event from the
|
|
1182
|
-
* `HTMLMediaElement` is sent after the browser has parsed key metadata such
|
|
1183
|
-
* as the content's duration.
|
|
1184
|
-
*/
|
|
1185
|
-
FORCE_SHOULD_VALIDATE_METADATA: boolean;
|
|
1186
|
-
/**
|
|
1187
|
-
* If `true`, we have to announce the content as loaded even if no data is
|
|
1188
|
-
* actually loaded, because that target do not preload, meaning a `play` call
|
|
1189
|
-
* is required.
|
|
1190
|
-
*/
|
|
1191
|
-
FORCE_DONT_WAIT_FOR_DATA_BEFORE_LOADED: boolean;
|
|
1192
|
-
/**
|
|
1193
|
-
* If `true`, we have to wait for the `HAVE_ENOUGH_DATA` `readyState` before
|
|
1194
|
-
* announcing the content as loaded.
|
|
1195
|
-
*/
|
|
1196
|
-
FORCE_WAIT_FOR_HAVE_ENOUGH_DATA: boolean;
|
|
1197
|
-
};
|
|
1198
|
-
export type IDefaultConfig = typeof DEFAULT_CONFIG;
|
|
1199
|
-
export default DEFAULT_CONFIG;
|
|
1200
|
-
//# sourceMappingURL=default_config.d.ts.map
|