sobbe81
sobbe81
Hi, Yes, you are correct. The content has both a video and an image track. The use case we are trying to solve is to support is to show a...
Hi, If I set `TrackSelectionParameters#isPrioritizeImageOverVideoEnabled` I do get a callback to `onImageAvailable()`. However, as I think you pointed out earlier you will not get any video rendered instead. What I'm...
Due to DRM/Encryption the screenshot displays a black image. In reality, the actual video is playing.
Potentially as a test, it's feels like a hack rather than a stable and maintainable solution. Say that we would go with a specific player for the images. As I...
Ok, we'll give it a try.
Hi, Yes, the DASH specification only lists `caption` and `subtitle` as possible values of the `Role` parameter. The terms captions and subtitles are probably something that is defined in how...
I see what you mean. What about something like this: parametersBuilder.setRequiredTextLanguage("swe") if (captioningManager.isEnabled) { parametersBuilder.setPreferredTextRoleFlags(ROLE_FLAG_CAPTION) } else { parametersBuilder.setRequiredTextRoleFlags(ROLE_FLAG_SUBTITLE) } Always require Swedish text otherwise to text. Hearing impaired would...
I agree that the apis becomes a bit too complex. What we are trying to adress is what text track (if any) should be displayed to the user as default...