-
Notifications
You must be signed in to change notification settings - Fork 31
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
Should integrate Hls.Events.FRAG_PARSING_METADATA for video.js exposure of hls id3 frames #7
Comments
what exactly you want to do? |
that is the idea
|
The data getting thrown is completely different now than when catching the same info from just hls.js. I'm not sure why this is, but when catching the data from hls.js the data is formatted as such: pts, dts, and data(which is a smaller scale Uint8Array) but now with this video.js plugin, the data getting thrown is: endDTS, endPTS, startDTS, endPTS, and two Uint8Arrays of much larger size hls.js videojs-hlsjs.js |
hmm, which data of hlsjs you checked? |
Sample code that is producing the first image of data from hls.js: hls.on(Hls.Events.FRAG_PARSING_METADATA, function(event, data){ console.log(data); }); You can reference Issue 159 from hls.js's github to see where another is referencing the same metadata for the stream's ID3 tags |
the pull request I made is just pass whatever data hls produced to trigger event for videojs. |
FRAG_PARSING_METADATA was recently introduced and merged into hls.js and exposes the current fragment's ID3 frame to the API upon firing.
The text was updated successfully, but these errors were encountered: