Ian Baker

Results 409 comments of Ian Baker

Thanks for the report, and for the nice self-contained repro example - that makes it much easier to investigate! I think I've got an understanding of what's going on -...

The hacky change I made looks a bit like this in `FragmentedMp4Extractor` - specifically inserting code after this line: https://github.com/androidx/media/blob/282171cb6f469c85d1b5eee1e07f571b5f3021da/libraries/extractor/src/main/java/androidx/media3/extractor/mp4/FragmentedMp4Extractor.java#L1414 ``` private boolean updatedTextSubsampleOffset = false; private boolean readSample(ExtractorInput input)...

I wonder if you still see issues with video freezing if you finesse the hack slightly to only trigger on text tracks. Something like: ```java if (!updatedTextSubsampleOffset && track.type ==...

[Scrubbing mode](https://developer.android.com/reference/androidx/media3/exoplayer/ExoPlayer#setScrubbingModeEnabled(boolean)) is available in 1.8.0, please try it out (note that enabling it doesn't change `LoadControl` behaviour, so you should still enable a backbuffer as described above). You can...

As noted in https://github.com/androidx/media/issues/558#issuecomment-3077624869, the file provided here is deemed invalid by `flac -t`: `ERROR, MD5 signature mismatch`. Labelling the issue to match. ----- I think the more general question...

Please email us the result of `adb bugreport` (and update this issue) once you have a local repro and we can take a look.

> Exoplayer pauses for 5 seconds, plays for 10 seconds, pauses for 5 seconds, etc. This happens with a ONN google TV device and an Amazon Fire stick 4K. I...

Thanks for the write-up Kevin. > One way to implement haptic playback would be to add a audio haptic channel type to AudioTrack (eg: left+right+haptic). I think this channel config...

Bit of a drive-by: > displays PGS subtitles from certain Blu-ray disc rips with incorrect aspect ratios This sounds possibly similar to https://github.com/androidx/media/issues/2446 - which I think was resolved by...