Is there a way to load sound samples from memory using the SoundPool.load method?
Unfortunately, all methods provided in SoundPool use arguments for real files. The problem is that I want to upload sounds from a zip file to an SDcard, and extracting a zip (as in this solution) is not an option.
In addition, there is a solution for downloading from uncompressed zip files, but my files will change (and will be with a password).
So, is there a way to have a java.io.FileDescriptor that represents a virtual file, so I can implement some abstract class that hosts my own streams?
Sincerely.
java android memory zip soundpool
desertkun
source share