just_audio
just_audio copied to clipboard
Audio Player
**Is your feature request related to a problem? Please describe.** rxdart 0.28 dev is released. Once stable is released, just_audio should support it while maintaining backwards compatibility with older versions...
**Is your feature request related to a problem? Please describe.** Currently the web implementation needs to encode the asset into a base64 URL which takes processing time on the main...
**Is your feature request related to a problem? Please describe.** When I am trying to load in StreamAudioSource in Flutter Web, it either hangs (when loading in entire streams) or...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] Not related to a...
**Which API doesn't behave as documented, and how does it misbehave?** ... **Minimal reproduction project** ... **To Reproduce (i.e. user steps, not code)** Steps to reproduce the behavior: 1. play...
**Which API doesn't behave as documented, and how does it misbehave?** https://github.com/ryanheise/just_audio/issues/814#issue-1373717611 **Minimal reproduction project** Provide a link here using one of two options: 1. clone https://github.com/zhushenwudi/just_audio_demo 2. click play...
Steps to reproduce:- ```dart final player = AudioPlayer(); final audioSource = LockCachingAudioSource(Uri.parse("stream_link")); await player.setAudioSource(audioSource); await player.play() // After some time await player.stop() await audioSource.clearCache() // or player.processingStateStream.listen((processingState) { if processingState...
**Which API doesn't behave as documented, and how does it misbehave?** The SetSpeed API in this library doesn't work as expected for me in iOS. I've implemented this feature both...
**Is your feature request related to a problem? Please describe.** loop: true does not work in windows When an audio asset is passed to Player, like - await player.setLoopMode(LoopMode.all); The...
**To which pages does your suggestion apply?** - ~~https://pub.dev/packages/audio_session#ios-setup~~ - https://pub.dev/packages/just_audio **Quote the sentences(s) from the documentation to be improved (if any)** > To do so, edit your ios/Podfile as...