You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With version <!--Generated with https://github.com/google/edash-packager version e39c357-debu g-->
generated Manifests show ranges which prohibit playback (webm case).
For example an entry looks like: <BaseURL>1.webm</BaseURL> <SegmentBase indexRange="14198634-14199331" timescale="1000000"> <Initialization range="0-333"/> </SegmentBase>
And invalid ranges are used by resulting HTTP requests.
Changing the above to:
With version
<!--Generated with https://github.com/google/edash-packager version e39c357-debu g-->
generated Manifests show ranges which prohibit playback (webm case).
For example an entry looks like:
<BaseURL>1.webm</BaseURL> <SegmentBase indexRange="14198634-14199331" timescale="1000000"> <Initialization range="0-333"/> </SegmentBase>
And invalid ranges are used by resulting HTTP requests.
Changing the above to:
<BaseURL>1.webm</BaseURL> <SegmentBase indexRange="14198634-14199330" timescale="1000000"> <Initialization range="0-333"/> </SegmentBase>
And playback works on Exoplayer. Dash.js fails, possibly since the SIDX box still contains an invalid range.
The text was updated successfully, but these errors were encountered: