just_audio
just_audio copied to clipboard
Audio Player
**Which API doesn't behave as documented, and how does it misbehave?** Using just_audio_background package and in Android platform only, control Buttons previous / play / pause / next that generally...
**Which API doesn't behave as documented, and how does it misbehave?** setUrl() appears to be causing two MissingPluginExceptions to be raised when I run my test via > flutter test...
**Which API doesn't behave as documented, and how does it misbehave?** await player.setAudioSource(HlsAudioSource(Uri.parse( 'http://103.210.73.190:4002/assets/audio/SME/en/SME_en.m3u8'))); just_audio: ^0.9.37 **Minimal reproduction project** final player = AudioPlayer(); // await player.setUrl( // 'http://103.210.73.190:4002/assets/audio/SME/en/SME_en.m3u8'); await player.setAudioSource(HlsAudioSource(Uri.parse(...
**Is your feature request related to a problem? Please describe.** It would allow for access on more options on my library [just_audio_media_kit](https://github.com/Pato05/just_audio_media_kit), and I'm guessing on other plugins as well....
When calling `insert()` or `removeAt()` on a `ConcatenatingAudioSource`, a new `shuffleOrder` is passed with the request but it is not updated in just_audio_background's corresponding `ConcatenatingAudioSourceMessage`. This results in the shuffle...
Hey, I did apply the fixed by @rwrz from #812 on the latest version of just_audio. In my testing, the -1004 issue is finally gone. No Side effects found so...
**Which API doesn't behave as documented, and how does it misbehave?** GC failed to remove instance of StreamAudioSource following the execution of audio play. This is confirmed using flutter dev...
**Which API doesn't behave as documented, and how does it misbehave?** functional unit test case **Minimal reproduction project** just_audio_background/example **To Reproduce (i.e. user steps, not code)** ``` cd just_audio_background/example flutter...
**Which API doesn't behave as documented, and how does it misbehave?** Startup on Linux shows track is playing, but no sound. Toggling play/pause will bring sound back. **Minimal reproduction project**...
**Which API doesn't behave as documented, and how does it misbehave?** I tried to create my own StreamAudioSource, and injected it as the audio source for my streaming audio. It...