Jean Le Feuvre

Results 201 comments of Jean Le Feuvre

Should now be fixed, thanks for detailed report and sample stream.

Are you using HTTP2 here ? Can you reproduce when disabling it (`-no-h2`) ?

can you try with another http server, like: ``` const http = require('http') const fs = require('fs'); const server = http.createServer(function(request, response) { if ((request.method == 'POST') || (request.method ==...

I looks like trackID 3 is no longer present after import (I added a more explicit check in mp4box for that). Can you run a -info on the output file...

now fixed The missing cue is a bug in the nhml source file

The usual way is to use the track handler name, exposed as property `HandlerName`: ``` -i SRC:#HandlerName="My Cool Track" ```

The `NAME=` in HLS can be set using `HLSMExt`property of the pid, otherwise it defauts to the representation ID (`#Representation` property) so: ``` gpac -i src_vid.mp4::#HLSMExt=NAME=\"foo\" ``` see testsuite https://github.com/gpac/testsuite/blob/master/scripts/hls.sh#L84...

You need to add a feedback loop from the download part ("get segment" in your diagram) and from "buffer" to the "select representation".

We cannot box patch fragments files directly, we need to remux them. For your use case since it looks like piff: ``` gpac --initseg=video-2800000-init.mp4 -i video-2800000-42835577159.m4s:norw -o refrag.m4s:noinit:cdur=10000000:frag:cmf2 ``` explanations:...