Last active
December 21, 2018 03:07
-
-
Save Ravikharatmal/569895c6d822ed54ed461cb300869e30 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.itsallbinary.audio; | |
import static com.itsallbinary.audio.MusicNote.C; | |
import static com.itsallbinary.audio.MusicNote.D; | |
import static com.itsallbinary.audio.MusicNote.E; | |
import static com.itsallbinary.audio.MusicNote.F; | |
import static com.itsallbinary.audio.MusicNote.G; | |
import static com.itsallbinary.audio.MusicNote.PAUSE; | |
import javax.sound.sampled.AudioFormat; | |
import javax.sound.sampled.AudioSystem; | |
import javax.sound.sampled.LineUnavailableException; | |
import javax.sound.sampled.SourceDataLine; | |
/** | |
* Refer this for details & explanation | |
* http://itsallbinary.com/2018/12/20/jingle-bell-music-using-pure-java-javax-sound-sampled/ | |
* | |
* @author itsallbinary.com | |
* | |
*/ | |
public class JingleBell { | |
/** | |
* Samples per seconds | |
*/ | |
private static float SAMPLE_RATE = 44100; | |
private static int OCTAVE = 5; | |
private static int MILLSECONDS = 500; | |
private static int VOLUME = 20; | |
private static SourceDataLine sdl; | |
public static void main(String[] args) throws Exception { | |
AudioFormat af = new AudioFormat(SAMPLE_RATE, 8, 1, true, false); | |
sdl = AudioSystem.getSourceDataLine(af); | |
sdl.open(af); | |
sdl.start(); | |
generateMusicalNotes(E, E, E, PAUSE, E, E, E, PAUSE, E, G, C, D, E, PAUSE); | |
generateMusicalNotes(F, F, F, F, F, E, E, E, E, D, D, E, D, G); | |
generateMusicalNotes(E, E, E, PAUSE, E, E, E, PAUSE, E, G, C, D, E, PAUSE); | |
generateMusicalNotes(F, F, F, F, F, E, E, E, E, D, D, E, D, G); | |
generateMusicalNotes(G, G, F, D, C); | |
sdl.stop(); | |
sdl.close(); | |
} | |
public static void generateMusicalNotes(MusicNote... notes) throws Exception { | |
for (MusicNote note : notes) { | |
if (PAUSE.equals(note)) { | |
Thread.sleep(500); | |
} else { | |
generateMusicalNote(note.analogFrequency(OCTAVE)); | |
} | |
} | |
} | |
public static void generateMusicalNote(int analogFrequency) throws LineUnavailableException { | |
byte[] buf = new byte[1]; | |
double normalizedFrequency = (analogFrequency / SAMPLE_RATE) * 2.0 * Math.PI; | |
/* | |
* samples per second / 1000 = samples per milliseconds | |
* | |
* numberOfSamples = sample per milliseconds * milliseconds | |
*/ | |
float numberOfSamples = (SAMPLE_RATE / 1000) * MILLSECONDS; | |
for (int i = 0; i < numberOfSamples; i++) { | |
double angleForThisSample = i * normalizedFrequency; | |
buf[0] = (byte) (Math.sin(angleForThisSample) * VOLUME); | |
sdl.write(buf, 0, 1); | |
} | |
sdl.drain(); | |
} | |
} | |
enum MusicNote { | |
C(new int[] { 16, 32, 65, 130, 261, 523, 1046, 2093, 4186, 8372 }), | |
D(new int[] { 18, 36, 73, 146, 293, 587, 1174, 2349, 4698, 9397 }), | |
E(new int[] { 20, 41, 82, 164, 329, 659, 1318, 2637, 5274, 10548 }), | |
F(new int[] { 21, 43, 87, 174, 349, 698, 1396, 2793, 5587, 11175 }), | |
G(new int[] { 24, 48, 97, 195, 391, 783, 1567, 3135, 6271, 12543 }), | |
A(new int[] { 27, 55, 110, 220, 440, 880, 1760, 3520, 7040, 14080 }), | |
B(new int[] { 30, 61, 123, 246, 493, 987, 1975, 3951, 7902, 15804 }), PAUSE(new int[] {}); | |
private int[] analogFrequencies; | |
private MusicNote(int[] frequencies) { | |
this.analogFrequencies = frequencies; | |
} | |
public int analogFrequency(int octave) { | |
return analogFrequencies[octave]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment