TuneIt is an android library that let's you to create awesome PCM (Pulse-Code Modulation 16 bit) tones in your app!
The setup is very easy just follow the following steps:
allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
app/build.gradle
file
dependencies {
compile 'com.github.CuriousNikhil:TuneIt:1.0.1'
}
TuneIt.getInitialised().create(frequency, duration, volume, new StopToneListener() {
@Override
public void onTrackStopped() {
//tack playing stopped !
Toast.makeText(MainActivity.this, "Track stopped!", Toast.LENGTH_SHORT).show();
}
});
Now in version 1.0.1
Added a new utility class Frequency
You can use three octave frequencies of sound
1.LOW
2.MID
3.HIGH
Just put Frequency class constants at frequency argument
If you want MID level put MID and follwoed by underscore + tone frequency
Ex:
Frequency.MID_C
or Frequency.HIGH_C_SHARP
or Frequency.LOW_A_SHARP
You can access all the tones of octave from Frequency class
If you want to play specific note from the specific frequency octave, It's added in Frequency Class.
And you can do it as follows:
/*
You can just set frequency to
Frequency.MID_C and similarly MID_A, MID_B, MID_D, MID_F
*/
TuneIt.getInitialised().create(Frequency.MID_C, duration, volume, new StopToneListener() {
@Override
public void onTrackStopped() {
//tack playing stopped !
//...
//...
}
});
Initialise or assign
frequency
as int
duration
as int
volume
as double (ex: 1.0f for max volume)
Refer to sample app
Yes you are done! Make your own piyano/casio or flute whatever !!
Any forks/suggestions are always welcome! Focusing on integrating this library with AI to generate music on android.
MIT License Copyright (c) 2017 Nikhil Chaudhari Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.