Flutter/just_audio: How can I identify the deviceType that is being used to play audio in?

175 Views Asked by At

I am using just_audio with audio_service and just_audio_background to play audio in my app (in-app as well as background audio).

Is it possible for me to identify the type of device that is being used to play the audio? Such as, is the audio being played via the device (iOS/Android phone/tablet) itself, or perhaps via Bluetooth, CarPlay, AndroidAuto etc.


I could not find anything relevant in SO, in just_audio docs and issues. And ChatGPT is hallucinating (it's telling me some methods that don't exist, but if they did - would have been exactly what I wanted) :)

2

There are 2 best solutions below

5
Becca On

You can use the Platform class that comes with Flutter.

 if(Platform.isAndroid){
   //Write Android code here
 }else if(Platform.isIOS){
  //Write ios code here
 }

Check out the Platform class you have access to other device types as well. I hope this solves your issues :)

1
Volodymyr Buberenko On

There are a few packages that should allow you to achieve what you want: