mpd-parser
mpd-parser copied to clipboard
It looks like the parser is not including certain values. For example, in this AdaptationSet, we are completely dropping the Accessibility tag ```
Exception occur when play follow url: https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd video.js:36749 Uncaught TypeError: Cannot set properties of undefined (setting 'discontinuity') at video.js:36749:44 at Array.forEach () at updateSequenceNumbers (video.js:36705:18) at positionManifestOnTimeline (video.js:36841:5) at toM3u8...
There are occurrences in the [inheritAttributes](https://github.com/videojs/mpd-parser/blob/9ece4aec83f064fadce784c24b05575675fab107/src/inheritAttributes.js#L570) functionality where this `representationInfo` array contains undesired duplicates. This generally occurs when there are multiple BaseURL nodes that are direct children of the MPD...
endList at the root level should be set to false when manifest type is dynamic. see https://github.com/videojs/mpd-parser/issues/168 for details.
Isn't endList should be set to false if manifest type is "dynamic"? suggestion: https://github.com/videojs/mpd-parser/blob/3fc0486cbc06114635055d540606f850477c8c5d/src/toM3u8.js#L419 should be changed to: ``` endList: type === 'static' ```
The following file fails to parse: ``` 864_vp9.webm 864_aac.mp4 ``` The problem seems to be in https://github.com/videojs/mpd-parser/blob/d7261e907c460ed21d186f0b094f61f66a1cffae/src/toPlaylists.js#L21-L27 For the first representation, there are no elements with any segment information, so...
Hi, I'm trying to parse SlingTV manifest, however the `uri` and `resolvedUri` in the returned parser manifest seems to be wrong. `{ uri: 'audio/stereo/192/$Number%08x$.m4s', timeline: 1, duration: 2.048, resolvedUri: 'http://p-cdn1-c-cg14-linear-cbd46b77.movetv.com/15807/live/CNNHD-DYN/6986bd324cdc11ebb62f0025b5472115/audio/stereo/192/$Number%08x$.m4s',...
mpd-parser only parses the protection system specific identifiers.(in `src/inheritAttributes.js`) I'd like to extract the kid with mpd-parser but the generic identifier such as `urn:mpeg:dash:mp4protection:2011` is not parsed. https://dashif.org/identifiers/content_protection/ you can...
I am using video.js which calls the `mpd-parser` in the background. An error occurs in `mpd-parser` if I call video.js with a blob url of an .mpd file, instead of...
Hi, Thanks for creating such an awesome parser! I'm currently migrating a service that parses manifests to use mpd instead of m3u8 manifests. I am trying to find our when...