ryanheise

Results 1670 comments of ryanheise

In theory it sounds like a great idea but a reusable package like this absolutely needs to be very stable. Recently I changed the `artUri` type from `String` to `Uri`...

I have fixed the root cause in just audio which I'll commit when I am able to. Then in terms of the audio service example it will be a matter...

This is now fixed in just_audio. I have updated the just_audio example to show how to listen to errors during playback: ```dart _player.playbackEventStream.listen((event) {}, onError: (Object e, StackTrace stackTrace) {...

I've just had a play around with how to handle a network interruption and it appears you need to call `stop` and `play` to retry the connection, at least on...

The main thing blocking at the moment is #415 , so I would definitely appreciate people's help to get that out the door sooner (testing, debugging, feedback).

This is unblocked. Any takers? Also, it could actually be a good idea to provide a default platform implementation that just enables the audio logic to run on any platform...

The callbacks implementation looks good to me. Like you, I was also thinking we might hard code the defaults into the platform interface. We just need to make sure that...

I would suggest checking out the discussion in #415 regarding the `one-isolate` branch, since it adds more complete support for Android Auto. This new branch is not production ready yet,...

Are you sure it's not flutter_sound that's not releasing the microphone?

I found this S/O answer: https://stackoverflow.com/questions/21893007/how-to-consistently-stop-avaudiosession-after-avspeechutterance It basically says you may get this error if you try to deactivate your audio session too soon before the audio sources have been...