Git Product home page Git Product logo

tuneit's Introduction

TuneIt



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:

step1

Add the JitPack repository to your build file
 
allprojects {
		repositories {
			...
			maven { url 'https://www.jitpack.io' }
		}
	}
  

step2

Add the following dependency in your app/build.gradle file
 
 	dependencies {
	        compile 'com.github.CuriousNikhil:TuneIt:1.0.1'
	}
 
 
Tadaa!! now you are set to make some noise ,yeah!!

step3

Use the following cod snippet to create your own tone

                    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.

tuneit's People

Contributors

curiousnikhil avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.