ryanheise

Results 1670 comments of ryanheise

Running the same analysis on @joo6077 's file doesn't mention Dash: ``` $ ffmpeg -i wake_up.mp3 -f null - ffmpeg version 4.4.1 Copyright (c) 2000-2021 the FFmpeg developers built with...

Hi @smkhalsa unfortunately I will need you to fill in the sections as instructed. In the section called "User steps, not code", you actually copied and pasted code. This should...

This issue affects both iOS and macOS. I have a reproduction case on #206 which has helped me to reproduce this issue. The solution is to rewrite the `enqueueFrom` method...

That's correct. The solution involves improving the `enqueueFrom` so that it can enqueue just a few items ahead instead of the whole list, when the `useLazyPreparation` option is set to...

`ConcatenatingAudioSource.useLazyPreparation` is already implemented on Android, it just needs to be implemented on iOS/macOS.

This issue is about iOS/macOS. If you have found an Android bug or have an Android feature request, it will be appreciated to open a separate issue for that.

The current AVQueuePlayer will work fine, but the enqueue logic should be rewritten to enqueue a configurable number of items, and at the same time, the gapless looping approach should...

Also I'll quote my earlier comment from above which I think may do a better job of explaining how you could achieve your use case: > 2. Forego just_audio's playlist...

For those subscribed to this issue, there is a related issue that can cause the same symptom of blocking the UI thread, but has a simpler solution. Basically, if you...

This will always be problematic to some degree because of Dart's single threaded model. Fortunately there are ways to deal with this which I have already mentioned (in my edit...