Play Music From Memory In Android
Is there a way to play a song that exists as an array of bytes in memory and not as a file on disk? I know I could save it in a file temporarily and play it form there but I'd lik
Solution 1:
You can use AudioTrack
. But it supports raw LPCM data only.
Post a Comment for "Play Music From Memory In Android"