Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hls.js going after old ts segments after Stop/Resume. #6854

Open
5 tasks done
LalitAgrawala004 opened this issue Nov 18, 2024 · 0 comments
Open
5 tasks done

Hls.js going after old ts segments after Stop/Resume. #6854

LalitAgrawala004 opened this issue Nov 18, 2024 · 0 comments
Labels
Bug Needs Triage If there is a suspected stream issue, apply this label to triage if it is something we should fix.

Comments

@LalitAgrawala004
Copy link

What version of Hls.js are you using?

1.5.7

What browser (including version) are you using?

Chrome Version 131.0.6778.70

What OS (including version) are you using?

Windows 11

Test stream

No response

Configuration

{
   autoStartLoad: false,
   enableLazyURLResolve: true,
   fragLoadPolicy: {
  	default: {
  		maxTimeToFirstByteMs: 10000,
  		maxLoadTimeMs: 10000,
  		timeoutRetry: {
  			maxNumRetry: 4,
  			retryDelayMs: 250,
  			maxRetryDelayMs: 0
  		},
  		errorRetry: {
  			maxNumRetry: 11,
  			retryDelayMs: 250,
  			maxRetryDelayMs: 8000
  		}
  	}
  },
    playlistLoadPolicy: {
  	default: {
  		maxTimeToFirstByteMs: 10000,
  		maxLoadTimeMs: 20000,
  		timeoutRetry: {
  			maxNumRetry: 3,
  			retryDelayMs: 0,
  			maxRetryDelayMs: 0
  		},
  		errorRetry: {
  			maxNumRetry: 3,
  			retryDelayMs: 1500,
  			maxRetryDelayMs: 8000
  		}
  	}
  },
  liveMaxLatencyDurationCount: 6,
  liveSyncDurationCount: 4,
  maxFragLookUpTolerance: 0.5,
  maxMaxBufferLength: 60,
  seekHoleNudgeDuration: 0.5,
  startFragPrefech: false,
  stretchShortVideoTrack: true
}

Additional player setup steps

No response

Checklist

Steps to reproduce

  1. we have stop/resume feature in our hls.js player for Live Playback.

  2. When the user stops the playback, we call stopLoad() and detachMedia(). On resume, we call startLoad() followed by attachMedia().

  3. The issue I’m encountering is that after resuming, hls.js sends a level playlist request, but it gets canceled, and the player starts requesting old .ts segments instead.

  4. I've attached a screenshot with color-coded blocks:

    • Green block: Requests made before stopping playback. The last segment fetched was 3.ts.
    • Dark red block: Playlist request sent after resuming, which gets canceled.
    • Blue block: Requests for old .ts segments following the canceled playlist request.

multicast-hls-call

  1. we have clean up process in our multicast playback which removes old ts segments. That's why you will see 404s for the old after user resumes the playback.

  2. we do have higher frag retry count and once retry exhausts, we try to recover one more time by calling stopLoad and startLoad. At this time, Hls.js gets the refreshed playlist and start fetching new segments but It never plays the Video.

  3. In our other playback modality like Play from a cache serve, we don't cleanup old ts segments that often. So, Hls.js requests one or two old ts segments and it gets 200 response but by that time it gets a refreshed Level playlist and all plays fine.

Expected behaviour

If TS segments have already been loaded and the stopLoad() method is called, then upon calling startLoad() again, hls.js should not request the previously fetched TS segments, as they were already successfully retrieved.

What actually happened?

After calling stopLoad() followed by startLoad(), Hls.js requests old TS segments. When these requests result in 404 errors, it cancels the level playlist call. Once the TS segment retries are exhausted, we attempt to recover playback by calling stopLoad() and startLoad() again. While the player receives the refreshed playlist and begins fetching new segments, it gets stuck and fails to play the stream.

Console output

async-stack-tagging.ts:55 [log] > loadSource:https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612.m3u8?reorderpackets=true
16:50:49.276 async-stack-tagging.ts:55 [log] > [stream-controller]: Trigger BUFFER_RESET
16:50:53.963 async-stack-tagging.ts:55 [log] > [level-controller]: manifest loaded, 1 level(s) found, first bitrate: 835584
16:50:53.963 async-stack-tagging.ts:55 [log] > setting initial bwe to 835584
16:50:53.963 async-stack-tagging.ts:55 [log] > [buffer-controller] 1 bufferCodec event(s) expected
16:50:53.964 async-stack-tagging.ts:55 [log] > startLoad(-1)
async-stack-tagging.ts:55 [log] > [level-controller]: Switching to level 0 (SDR @835584) from level -1
16:50:53.965 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:50:53.966 async-stack-tagging.ts:55 [log] > [stream-controller]: STOPPED->IDLE
16:50:53.966 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: STOPPED->IDLE
16:50:54.006 async-stack-tagging.ts:55 [log] > [level-controller]: reload live playlist 0 in 9958 ms
16:50:54.007 async-stack-tagging.ts:55 [log] > [stream-controller]: Level 0 loaded [0,0], cc [0, 0] duration:10
16:50:54.007 async-stack-tagging.ts:55 [log] > [stream-controller]: Live playlist sliding: 0.00 start-sn: na->0 prev-sn: na fragments: 1
16:50:54.008 async-stack-tagging.ts:55 [log] > [buffer-controller] Updating Media Source duration to 10.000
16:50:54.009 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 0 cc: 0 of [0-0] level: 0, target: 0
16:50:54.009 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
ng_zone.ts:470 [log] > [transmuxer-interface, main]: Starting new transmux session for sn: 0 p: -1 level: 0 id: 1
        discontinuity: true
        trackSwitch: true
        contiguous: false
        accurateTimeOffset: false
        timeOffset: 0
        initSegmentChange: true
16:50:54.079 ng_zone.ts:470 [log] > [mp4-remuxer]: ISGenerated flag reset
16:50:54.079 ng_zone.ts:470 [log] > [mp4-remuxer]: initPTS & initDTS reset
16:50:54.080 ng_zone.ts:470 [log] > [mp4-remuxer]: reset next timestamp
16:50:54.083 ng_zone.ts:470 [log] > manifest codec:undefined, ADTS type:2, samplingIndex:3
16:50:54.083 ng_zone.ts:470 [log] > parsed codec:mp4a.40.5, rate:48000, channels:2
16:50:54.099 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->PARSING
16:50:54.100 ng_zone.ts:470 [log] > [stream-controller]: Init audio buffer, container:audio/mp4, codecs[selected/level/parsed]=[//mp4a.40.5]
16:50:54.100 ng_zone.ts:470 [log] > [stream-controller]: Init video buffer, container:video/mp4, codecs[level/parsed]=[/avc1.42c01e]
16:50:54.101 ng_zone.ts:470 [log] > [buffer-controller] 0 bufferCodec event(s) expected audio,video
ng_zone.ts:470 [log] > [buffer-controller] creating sourceBuffer(audio/mp4;codecs=mp4a.40.5)
16:50:54.102 ng_zone.ts:470 [log] > [buffer-controller] creating sourceBuffer(video/mp4;codecs=avc1.42c01e)
16:50:54.104 ng_zone.ts:470 [log] > [audio-stream-controller]: InitPTS for cc: 0 found from main: 126000
16:50:54.107 ng_zone.ts:470 [log] > [stream-controller]: Loaded fragment 0 of level 0
16:50:54.107 ng_zone.ts:470 [log] > [transmuxer.ts]: Flushed fragment 0 of level 0
16:50:54.107 ng_zone.ts:470 [log] > [stream-controller]: PARSING->PARSED
16:50:54.198 async-stack-tagging.ts:55 [log] > [stream-controller]: media seeking to 0.027, state: PARSED
16:50:54.201 async-stack-tagging.ts:55 [log] > [audio-stream-controller]: media seeking to 0.027, state: STOPPED
16:50:54.206 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: media seeking to 0.027, state: IDLE
async-stack-tagging.ts:55 [log] > [stream-controller]: Media seeked to 0.027
16:50:54.269 async-stack-tagging.ts:55 [warn] > [stream-controller]: Main forward buffer length on "seeked" event 0)
onMediaSeeked @ hls.mjs:26978

16:50:54.327 ng_zone.ts:470 [log] > [stream-controller]: Buffered main sn: 0 of level 0 (frag:[0.000-10.027] > buffer:[0.021-10.021])
16:50:54.327 ng_zone.ts:470 [log] > [stream-controller]: PARSED->IDLE
16:51:03.975 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:51:04.036 async-stack-tagging.ts:55 [log] > [level-controller]: live playlist 0 REFRESHED 1--1
16:51:04.037 async-stack-tagging.ts:55 [log] > [level-controller]: reload live playlist 0 in 9928 ms
16:51:04.037 async-stack-tagging.ts:55 [log] > [stream-controller]: Level 0 loaded [0,1][part-1--1], cc [0, 0] duration:20.026666666666667
16:51:04.039 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 1 cc: 0 of [0-1] level: 0, target: 10.027
16:51:04.039 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:51:04.041 ng_zone.ts:470 [log] > [buffer-controller] Updating Media Source duration to 20.027
16:51:04.124 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->PARSING
16:51:04.126 ng_zone.ts:470 [log] > [stream-controller]: Loaded fragment 1 of level 0
16:51:04.127 ng_zone.ts:470 [log] > [transmuxer.ts]: Flushed fragment 1 of level 0
16:51:04.127 ng_zone.ts:470 [log] > [stream-controller]: PARSING->PARSED
16:51:04.192 ng_zone.ts:470 [log] > [stream-controller]: Buffered main sn: 1 of level 0 (frag:[10.021-20.032] > buffer:[0.021-20.021])
16:51:04.192 ng_zone.ts:470 [log] > [stream-controller]: PARSED->IDLE
16:51:13.985 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:51:14.055 async-stack-tagging.ts:55 [log] > [level-controller]: live playlist 0 REFRESHED 2--1
async-stack-tagging.ts:55 [log] > [level-controller]: reload live playlist 0 in 9910 ms
16:51:14.056 async-stack-tagging.ts:55 [log] > [stream-controller]: Level 0 loaded [0,2][part-2--1], cc [0, 0] duration:30.032
16:51:14.057 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 2 cc: 0 of [0-2] level: 0, target: 20.032
16:51:14.057 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:51:14.059 ng_zone.ts:470 [log] > [buffer-controller] Updating Media Source duration to 30.032
16:51:14.123 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->PARSING
16:51:14.125 ng_zone.ts:470 [log] > [stream-controller]: Loaded fragment 2 of level 0
16:51:14.125 ng_zone.ts:470 [log] > [transmuxer.ts]: Flushed fragment 2 of level 0
16:51:14.126 ng_zone.ts:470 [log] > [stream-controller]: PARSING->PARSED
16:51:14.161 ng_zone.ts:470 [log] > [stream-controller]: Buffered main sn: 2 of level 0 (frag:[20.021-30.037] > buffer:[0.021-30.021])
16:51:14.161 ng_zone.ts:470 [log] > [stream-controller]: PARSED->IDLE
16:51:23.990 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:51:24.044 async-stack-tagging.ts:55 [log] > [level-controller]: live playlist 0 MISSED
16:51:24.044 async-stack-tagging.ts:55 [log] > [level-controller]: reload live playlist 0 in 4922 ms
16:51:24.045 async-stack-tagging.ts:55 [log] > [stream-controller]: Level 0 loaded [0,2][part-2--1], cc [0, 0] duration:30.037333333333333
16:51:24.046 ng_zone.ts:470 [log] > [buffer-controller] Updating Media Source duration to 30.037
async-stack-tagging.ts:55 [warn] > Playback stalling at @29.952986 due to low buffer ({"len":0.06834699999999927,"start":0.021333,"end":30.021333})

16:51:24.970 async-stack-tagging.ts:55 [warn] > [playback-rate-controller]: Stall detected, adjusting target latency
onError @ hls.mjs:4850

16:51:28.982 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:51:29.017 async-stack-tagging.ts:55 [log] > [level-controller]: live playlist 0 REFRESHED 3--1
16:51:29.018 async-stack-tagging.ts:55 [log] > [level-controller]: reload live playlist 0 in 9948 ms
16:51:29.018 async-stack-tagging.ts:55 [log] > [stream-controller]: Level 0 loaded [0,3][part-3--1], cc [0, 0] duration:40.037333333333336
16:51:29.019 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 30.037
16:51:29.019 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:51:29.021 ng_zone.ts:470 [log] > [buffer-controller] Updating Media Source duration to 40.037
ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->PARSING
16:51:29.091 ng_zone.ts:470 [log] > [stream-controller]: Loaded fragment 3 of level 0
16:51:29.091 ng_zone.ts:470 [log] > [transmuxer.ts]: Flushed fragment 3 of level 0
16:51:29.092 ng_zone.ts:470 [log] > [stream-controller]: PARSING->PARSED
16:51:29.154 async-stack-tagging.ts:55 [warn] > playback not stuck anymore @30.042544, after 4483ms

16:51:29.182 ng_zone.ts:470 [log] > [stream-controller]: Buffered main sn: 3 of level 0 (frag:[30.021-40.021] > buffer:[0.021-40.021])
16:51:29.182 ng_zone.ts:470 [log] > [stream-controller]: PARSED->IDLE
16:51:36.753 async-stack-tagging.ts:55 [log] > stopLoad
16:51:36.754 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->STOPPED
16:51:36.754 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: IDLE->STOPPED
16:51:36.754 async-stack-tagging.ts:55 [log] > detachMedia

async-stack-tagging.ts:55 [log] > [buffer-controller] media source detaching
16:55:35.257 async-stack-tagging.ts:55 [log] > startLoad(-1)
16:55:35.258 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:55:35.259 async-stack-tagging.ts:55 [log] > [stream-controller]: STOPPED->IDLE
16:55:35.260 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: STOPPED->IDLE
16:55:35.261 async-stack-tagging.ts:55 [log] > attachMedia
16:55:35.262 async-stack-tagging.ts:55 [log] > [buffer-controller] created media source: MediaSource
16:55:35.309 async-stack-tagging.ts:55 [log] > [buffer-controller] Media source opened
16:55:35.309 async-stack-tagging.ts:55 [log] > [buffer-controller] Updating Media Source duration to 40.037
16:55:35.362 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.362 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 0 cc: 0 of [0-3] level: 0, target: 0
16:55:35.362 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.406 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-0.ts 404 (Not Found)

16:55:35.424 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-0.ts

16:55:35.426 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.427 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.438 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.439 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 1 cc: 0 of [0-3] level: 0, target: 10.021
16:55:35.439 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
async-stack-tagging.ts:55 [log] > [buffer-controller] media source detaching
16:55:35.257 async-stack-tagging.ts:55 [log] > startLoad(-1)
16:55:35.258 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:55:35.259 async-stack-tagging.ts:55 [log] > [stream-controller]: STOPPED->IDLE
16:55:35.260 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: STOPPED->IDLE
16:55:35.261 async-stack-tagging.ts:55 [log] > attachMedia
16:55:35.262 async-stack-tagging.ts:55 [log] > [buffer-controller] created media source: MediaSource
16:55:35.309 async-stack-tagging.ts:55 [log] > [buffer-controller] Media source opened
16:55:35.309 async-stack-tagging.ts:55 [log] > [buffer-controller] Updating Media Source duration to 40.037
16:55:35.362 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.362 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 0 cc: 0 of [0-3] level: 0, target: 0
16:55:35.362 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.406 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-0.ts 404 (Not Found)

16:55:35.424 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-0.ts
readystatechange @ hls.mjs:24674

16:55:35.426 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.427 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.438 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.439 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 1 cc: 0 of [0-3] level: 0, target: 10.021
16:55:35.439 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.458 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-1.ts 404 (Not Found)

16:55:35.469 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-1.ts
readystatechange @ hls.mjs:24674

16:55:35.471 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.473 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.482 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.483 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 2 cc: 0 of [0-3] level: 0, target: 20.021
16:55:35.483 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.526 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-2.ts 404 (Not Found)

16:55:35.538 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-2.ts
readystatechange @ hls.mjs:24674

16:55:35.540 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.543 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.558 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.558 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 30.021
16:55:35.558 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.602 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.613 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts

16:55:35.617 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}

16:55:35.620 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.633 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.633 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.633 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.673 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.686 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts

16:55:35.690 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.693 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.703 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.703 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.704 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.717 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.729 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts

16:55:35.733 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.736 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.749 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.750 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.750 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.766 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.777 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts
readystatechange @ hls.mjs:24674

16:55:35.781 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196

16:55:35.783 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.795 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.795 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.795 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.810 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.820 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts

16:55:35.822 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}

16:55:35.822 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.830 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.831 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.831 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.846 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.857 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts

16:55:35.859 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: 
16:55:35.860 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.872 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.873 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.873 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.885 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.895 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts
readystatechange @ hls.mjs:24674
16:55:35.898 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196
16:55:35.900 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.911 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.911 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.911 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.923 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)
16:55:35.934 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts
readystatechange @ hls.mjs:24674

16:55:35.938 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
16:55:35.940 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->IDLE
16:55:35.950 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:35.951 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 3 cc: 0 of [0-3] level: 0, target: 40.021
16:55:35.951 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:35.970 async-stack-tagging.ts:42 
        
        
       GET https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts 404 (Not Found)

16:55:35.980 async-stack-tagging.ts:55 [error] > 404 while loading https://localstreaming.vbrick.com:3443/live-streaming/bd41f0f3-bfd3-4f54-b64b-42ccea8e03ed/580ce68f-55f3-4d51-aced-a9b761961612/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps-3.ts
readystatechange @ hls.mjs:24674
wrapFn @ zone.js:778
16:55:35.983 ng_zone.ts:470 [warn] > Could not resolve fragLoadError ("HTTP Error 404 Not Found") with content-steering for Pathway: . levels: 1 priorities: ["."] penalized: {".":1433220.5}
onError @ hls.mjs:24196
emit @ hls.mjs:15180
emit @ hls.mjs:27891
trigger @ hls.mjs:27895
handleFragLoadError @ hls.mjs:9639
(anonymous) @ hls.mjs:9597
invoke @ zone.js:369
onInvoke @ ng_zone.ts:470
invoke @ zone.js:368
run @ zone.js:111
(anonymous) @ zone.js:2538
16:55:35.988 ng_zone.ts:470 [log] > stopLoad
16:55:35.989 ng_zone.ts:470 [log] > [stream-controller]: IDLE->STOPPED
16:55:35.989 ng_zone.ts:470 [log] > [subtitle-stream-controller]: IDLE->STOPPED
16:55:56.002 async-stack-tagging.ts:55 [log] > swapAudioCodec
16:55:56.003 async-stack-tagging.ts:55 [log] > recoverMediaError
16:55:56.003 async-stack-tagging.ts:55 [log] > detachMedia
16:55:56.004 async-stack-tagging.ts:55 [log] > [buffer-controller] media source detaching
16:55:56.008 async-stack-tagging.ts:55 [log] > attachMedia
16:55:56.008 async-stack-tagging.ts:55 [log] > [buffer-controller] created media source: MediaSource
16:55:56.010 async-stack-tagging.ts:55 [log] > stopLoad
16:55:56.011 async-stack-tagging.ts:55 [log] > startLoad(-1)
16:55:56.011 async-stack-tagging.ts:55 [log] > [level-controller]: Loading level index 0 with https://localstreaming.vbrick.com:3443/580ce68f-55f3-4d51-aced-a9b761961612-362p-688kbps.m3u8
16:55:56.013 async-stack-tagging.ts:55 [log] > [stream-controller]: STOPPED->IDLE
16:55:56.013 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: STOPPED->IDLE
16:55:56.049 async-stack-tagging.ts:55 [log] > [buffer-controller] Media source opened
16:55:56.050 async-stack-tagging.ts:55 [log] > [buffer-controller] Updating Media Source duration to 40.037
16:55:56.081 async-stack-tagging.ts:55 [log] > [level-controller]: live playlist 0 REFRESHED 30--1
16:55:56.082 async-stack-tagging.ts:55 [log] > [level-controller]: reload live playlist 0 in 9930 ms
16:55:56.083 async-stack-tagging.ts:55 [log] > [stream-controller]: Level 0 loaded [30,30][part-30--1], cc [0, 0] duration:10
16:55:56.083 async-stack-tagging.ts:55 [log] > [stream-controller]: Live playlist sliding: 0.00 start-sn: 0->30 prev-sn: na fragments: 1
16:55:56.084 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.084 async-stack-tagging.ts:55 [log] > [stream-controller]: Loading fragment 30 cc: 0 of [30-30] level: 0, target: 0
16:55:56.084 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->FRAG_LOADING
16:55:56.151 ng_zone.ts:470 [log] > [transmuxer-interface, main]: Starting new transmux session for sn: 30 p: -1 level: 0 id: 1
        discontinuity: true
        trackSwitch: true
        contiguous: false
        accurateTimeOffset: false
        timeOffset: 0
        initSegmentChange: true
16:55:56.152 ng_zone.ts:470 [log] > [mp4-remuxer]: ISGenerated flag reset
16:55:56.152 ng_zone.ts:470 [log] > [mp4-remuxer]: initPTS & initDTS reset
16:55:56.153 ng_zone.ts:470 [log] > [mp4-remuxer]: reset next timestamp
16:55:56.157 ng_zone.ts:470 [log] > manifest codec:undefined, ADTS type:2, samplingIndex:3
16:55:56.157 ng_zone.ts:470 [log] > parsed codec:mp4a.40.5, rate:48000, channels:2
16:55:56.176 ng_zone.ts:470 [log] > [stream-controller]: FRAG_LOADING->PARSING
16:55:56.177 ng_zone.ts:470 [log] > [stream-controller]: Init audio buffer, container:audio/mp4, codecs[selected/level/parsed]=[//mp4a.40.5]
16:55:56.177 ng_zone.ts:470 [log] > [stream-controller]: Init video buffer, container:video/mp4, codecs[level/parsed]=[/avc1.42c01e]
16:55:56.178 ng_zone.ts:470 [log] > [buffer-controller] 0 bufferCodec event(s) expected audio,video
16:55:56.178 ng_zone.ts:470 [log] > [buffer-controller] creating sourceBuffer(audio/mp4;codecs=mp4a.40.5)
16:55:56.180 ng_zone.ts:470 [log] > [buffer-controller] creating sourceBuffer(video/mp4;codecs=avc1.42c01e)
16:55:56.184 ng_zone.ts:470 [log] > [stream-controller]: Loaded fragment 30 of level 0
16:55:56.185 ng_zone.ts:470 [log] > [transmuxer.ts]: Flushed fragment 30 of level 0
16:55:56.185 ng_zone.ts:470 [log] > [stream-controller]: PARSING->PARSED
16:55:56.265 ng_zone.ts:470 [log] > [stream-controller]: Buffered main sn: 30 of level 0 (frag:[0.000-310.021] > buffer:)
16:55:56.266 ng_zone.ts:470 [log] > [stream-controller]: PARSED->IDLE
16:55:56.266 ng_zone.ts:470 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.316 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.430 async-stack-tagging.ts:55 [log] > [stream-controller]: media seeking to 300.021, state: IDLE
16:55:56.434 async-stack-tagging.ts:55 [log] > [audio-stream-controller]: media seeking to 300.021, state: STOPPED
16:55:56.438 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: media seeking to 300.021, state: IDLE
16:55:56.442 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.448 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.512 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.627 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.722 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.814 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:56.923 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.017 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.127 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.221 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.314 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.424 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.517 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.627 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.720 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.829 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:57.921 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.014 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.123 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.215 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.324 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.416 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.518 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.620 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.727 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.820 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:58.913 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.020 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.114 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.223 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.316 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.426 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.517 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.616 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.724 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.818 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:55:59.923 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.017 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.113 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.225 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.319 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.414 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.519 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.613 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.725 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.820 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:00.913 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.017 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.113 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.225 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.319 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.423 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.514 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.613 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.725 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.817 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:01.924 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.017 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.113 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.222 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.315 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.423 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.513 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.613 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.723 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.815 async-stack-tagging.ts:55 [info] > [abr] buffer is empty, optimal quality level 0
16:56:02.979 async-stack-tagging.ts:55 [log] > stopLoad
16:56:02.980 async-stack-tagging.ts:55 [log] > [stream-controller]: IDLE->STOPPED
16:56:02.980 async-stack-tagging.ts:55 [log] > [subtitle-stream-controller]: IDLE->STOPPED
16:56:02.980 async-stack-tagging.ts:55 [log] > detachMedia
16:56:02.981 async-stack-tagging.ts:55 [log] > [buffer-controller] media source detaching
17:09:59.523 node_manipulation.ts:585 [log] > destroy
17:09:59.525 node_manipulation.ts:585 [log] > detachMedia

Chrome media internals output

No response

@LalitAgrawala004 LalitAgrawala004 added Bug Needs Triage If there is a suspected stream issue, apply this label to triage if it is something we should fix. labels Nov 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Needs Triage If there is a suspected stream issue, apply this label to triage if it is something we should fix.
Projects
None yet
Development

No branches or pull requests

1 participant