Clarification on HLS vs. LLHLS Dump Configuration (Documentation Discrepancy) #2092
Unanswered
Mengsreang-Chhoeung
asked this question in
Help
Replies: 3 comments
|
How is it now? |
0 replies
|
The documentation is wrong, thanks for pointing it out. The HLS publisher and the LLHLS publisher each read their own That said, your config already has the dump under |
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 OvenMediaEngine Team,
I am currently exploring the dump features of the HLS and LL-HLS publishers by walkthrough the REST API. Here is my json response of my application:
{ "name": "default", "host": { "names": ["*"] }, "originMapStore": { "originHostName": "ome.origin.local", "redisServer": { "host": "redis.local:6379" } }, "applications": [ { "name": "39421458", "type": "live", "providers": { "rtmp": {} }, "publishers": { "hls": { "segmentDuration": 6, "segmentCount": 5, "dumps": { "dump": [ { "enable": true, "targetStreamName": "*", "outputPath": "/data/recordings/hls/${VHostName}_${AppName}_${StreamName}/${YYYY}_${MM}_${DD}_${hh}_${mm}_${ss}", "playlists": { "playlist": ["playlist.m3u8"] } } ] } }, "llhls": { "segmentDuration": 4, "segmentCount": 10, "dumps": { "dump": [ { "enable": true, "targetStreamName": "*", "outputPath": "/data/recordings/llhls/${VHostName}_${AppName}_${StreamName}/${YYYY}_${MM}_${DD}_${hh}_${mm}_${ss}", "playlists": { "playlist": ["llhls.m3u8"] } } ] } }, "ovt": {} }, "outputProfiles": { "outputProfile": [ { "encodes": { "audios": [ { "bitrate": 128000, "channel": 2, "codec": "aac", "name": "aac_audio", "samplerate": 44100 } ], "videos": [ { "bitrate": 2500000, "codec": "h264", "framerate": 30, "height": 720, "keyFrameInterval": 60, "name": "720p", "width": 1280 }, { "bitrate": 800000, "codec": "h264", "framerate": 30, "height": 360, "keyFrameInterval": 60, "name": "360p", "width": 640 } ] }, "name": "abr_stream", "outputStreamName": "${OriginStreamName}", "playlists": [ { "fileName": "llhls", "name": "Standard_ABR", "options": { "enableTsPackaging": true, "webRtcAutoAbr": true }, "renditions": [ { "audio": "aac_audio", "name": "720p", "video": "720p" }, { "audio": "aac_audio", "name": "360p", "video": "360p" } ] } ] } ] } } ] }And the dump of the LL-HLS is working perfectly but the dump of HLS isn't.

And then I walkthrough to your document and see that snippet:
Image from this page
My question: Is the document on this part correct to put the dump of HLS into the LL-HLS config?
All reactions