charisk
charisk

Reputation: 3190

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 like to avoid this as I'm trying to implement a DRM system that will not expose unencrypted media files.

Upvotes: 1

Views: 926

Answers (1)

inazaruk
inazaruk

Reputation: 74790

You can use AudioTrack. But it supports raw LPCM data only.

Upvotes: 1

Related Questions