-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Retrieve EssentialProperty
from a DashManifest image Representation
#9579
Labels
Comments
Although we parse the values, we currently don't save the result in the |
tonihei
added a commit
that referenced
this issue
Nov 15, 2021
We already parse essential and supplemental properties from the Representation, but don't add them to our Representation class so that they can be accessed by users. Issue: #9579 PiperOrigin-RevId: 409961990
tonihei
added a commit
that referenced
this issue
Nov 18, 2021
We already parse essential and supplemental properties from the Representation, but don't add them to our Representation class so that they can be accessed by users. Issue: #9579 PiperOrigin-RevId: 409961990
icbaker
pushed a commit
to androidx/media
that referenced
this issue
Nov 19, 2021
We already parse essential and supplemental properties from the Representation, but don't add them to our Representation class so that they can be accessed by users. Issue: google/ExoPlayer#9579 PiperOrigin-RevId: 409961990
Added support by the commit above. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have the following
AdaptionSet
from a DASH manifest fileAs you can see, it defines the template for images of sizes 1280x720 and in the
Representation
we have anEssentialProperty
of value5x5
which describes the fact that the image is basically an image atlas of 25 images each of 256x144 each.Is there a way to retrieve that
EssentialProperty
so that I can display the correct tile from that image?I have checked the property
essentialProperties
from theAdaptionSet
class however it is an empty list and theRepresentation.MultiSegmentRepresentation
does not seem to have anessentialProperties
of it's own, just theinbandEventStreams
property.As a side note I have found this related issue, however the fix for it seems to just set the image width and height from the representation in the format structure.
Thanks in advance!
The text was updated successfully, but these errors were encountered: