Reputation: 21
Is there an equivalent for Java sound in android? I am trying port a java app to android, where I need to use the java sound sample and data line.
Upvotes: 2
Views: 928
Reputation: 21
May be you can use it https://github.com/google/ringdroid There is a SoundFile class with all features that you need.
Upvotes: 0
Reputation: 52312
Looks like you may be interested in AudioTrack. You can stream data to it, as you can with a Java DataLine
Upvotes: 2