Julia

Results 47 comments of Julia

When I played around with it, I also noticed that `TextureView` works and I raised the issue internally about the difference of `SurfaceView` vs `TextureView` clipping inside FrameLayout. We do...

Duplicate of https://github.com/androidx/media/issues/1237 Tracking internal bug: b/334901521

Hi @kotya341, Given that it's been a while, let's bring each other up to date. Is it still correct that: * `TextureView` works, `SurfaceView` doesn't? * Both `VerticalPager` and `LazyColumn`...

Hello, @oogle12 Please provide the video you are trying to play and describe the exact reproduction steps that lead to the failure.

You pasted the documentation that describes the 2 necessary steps: "This change can be overridden by calling both * MediaSource.Factory.experimentalParseSubtitlesDuringExtraction(false) and * TextRenderer.experimentalSetLegacyDecodingEnabled(true)." In your project, you have: ``` fun...

If I use the URL you provided, I run into "Cleartext HTTP traffic not permitted", because of https://github.com/androidx/media/blob/b01c6ffcb3fca3d038476dab5d3bc9c9f2010781/libraries/common/src/main/java/androidx/media3/common/util/Util.java#L435-L454 If I change it to https, I get: ``` 2024-08-19 15:56:39.071 13122-13145...

Thanks! I've been able to reproduce. Have you taken a look at: https://github.com/androidx/media/issues/519 https://github.com/androidx/media/issues/596#issuecomment-1687749330 https://github.com/androidx/media/issues/607 Maybe any of those discussions would be useful? Also, I'm assuming that as per https://developer.android.com/media/media3/exoplayer/live-streaming#behindlivewindowexception-and,...

I think we actually have a map you are talking about here: https://github.com/androidx/media/blob/2fc189d6a40f116bd54da69ab9a065219f6973e7/libraries/session/src/main/java/androidx/media3/session/MediaSession.java#L235 ...which is how the uniqueness is checked in the first place, although it's private. Could you provide...

1) The fact that you are using `MediaButtonReceiver.buildMediaButtonPendingIntent` tells me that your receiver is from `media1` library ([MediaButtonReceiver](https://developer.android.com/reference/androidx/media/session/MediaButtonReceiver)) instead of `media3` ([MediaButtonReceiver](https://developer.android.com/reference/androidx/media/session/MediaButtonReceiver#buildMediaButtonPendingIntent(android.content.Context,long))). Although you mention using `Media3 1.3.1`? Have you...

How are you specifying the URI of the local file? Seems like the error is originating in `FileDataSource.openLocalFile` before any playback actually can begin.