Replies: 1 comment
-
A request for a file should only return that file, but maybe what you really want is to keep the connection open and reuse that connection for each response. Maybe a guide like this will help https://www.sohamkamani.com/nodejs/http2/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
(Maybe this is more backend side related but I'm learning so if anyone knows I appreciate it)
I'd like to know if it's possible return from backend more than one segment per request
Looking into DevTools > Network I see a first request for segment.m3u8 and then one request per segment:
segment.m3u8
segment0.ts
segment1.ts
...
segmentN.ts
My backend looks like this:
And client can access to it by
http://localhost:3000/
Btw: Backend is also very new to me, so maybe the answer is just right there but I don't know how to make it possible
Beta Was this translation helpful? Give feedback.
All reactions