Download and play .mp3 file from firebase storage to memory

后端 未结 3 1537
借酒劲吻你
借酒劲吻你 2021-02-10 21:29

I need to download an mp3 file from my firebase storage gs://fir-b9532.appspot.com/songs/song1.mp3 and play it into my android application. I want to store the mp3 file temporar

3条回答
  •  无人及你
    2021-02-10 22:07

    you can stream like this

    ref.getDownloadUrl().addOnSuccessListener{
                try {
                    mediaPlayer.setDataSource(uri);
             } catch (IOException e) {}
    }
    

    to download it locally follow Doug's response and this Play Byte array in MediaPlayer - Android

提交回复
热议问题