Shaikh
Shaikh

Reputation: 21

Android java sound equivalent

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

Answers (2)

nehippi
nehippi

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

jnpdx
jnpdx

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

Related Questions