I am creating an input stream for buffering and an mp3 stream from the cloud.
URL url = new URL("http://xxxx.yyy.com/Demo.mp3");
InputStream inputStream = url.openStream();
Now, how can I play mp3 from a media player without using a temporary file to save and read from it? I am developing for Android Lollipop
source
share