Replies: 1 comment 3 replies
-
Audio and video segments are downloaded in parallel by dash.js according to the buffer targets, see https://reference.dashif.org/dash.js/nightly/samples/buffer/buffer-target.html. Note that only one segment per type is downloaded at the same time, i.e. no download of two video segments at the same time. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am a novice on dash.js. I noticed that the server can store audio and video decoupled encoding chunks separately. When playing in dash.js, it will fetch the corresponding video chunk and audio chunk from the server respectively.
I'm curious about how dash.js fetches audio chunk and video chunk in this process. In my practice, I found that audio chunk and video chunk with the same index are always downloaded next to each other. Is there any coupling relationship between them? Are they serial transmission or parallel transmission?
Beta Was this translation helpful? Give feedback.
All reactions