-
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
DASH: Parse MIME type, width and height into Format for image AdaptationSet #9500
Comments
@ojw28 could our dash parser be reuse outside of ExoPlayer as asked? |
Thank you for your comments. Here is my code using dash parser:
result:
Format.java:
|
you can check our approach how to achieve this with Custom classes for Parsing the manifest https://github.com/kaltura/playkit-android/pull/686/files |
Am I correct in thinking that you're already managing to extract the sprite URIs? The width, format and MIME type are not being set in the We can make the necessary change on our side. Once we've made the change, you can either wait for the next release to get the functionality, or temporarily fork the |
Thank you! URIs can be extracted by referring #8577. I don't think this is the best practice but enough for my use case. |
Thank you. This is useful as a reference to my application. |
Issue: #9500 PiperOrigin-RevId: 401091261
The commit above will parse the MIME type, width and height for image adaptation sets. As noted above, you can either wait for the next release to get the functionality, or temporarily fork the dev-v2 version of DashManifestParser into your own code. |
Hello guys, I want to extract the width, height, and value of the image from the following manifest.
I have referred to #8577 as an example but it only works for mimeType="video/mp4".
code for image/jpeg:
result:
code for video/mp4:
result:
Any suggestions to parse this thing in exoplayer?
here is the manifest URL: https://dash.akamaized.net/akamai/bbb_30fps/bbb_with_tiled_thumbnails.mpd
The text was updated successfully, but these errors were encountered: