![JAR search and dependency download from the Maven repository](/logo.png)
art.jmusic.1.6.4.1.source-code.SimpleTremoloInst Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmusic Show documentation
Show all versions of jmusic Show documentation
JMusic - Java Music Library
The newest version!
import jm.audio.io.SampleOut;
import jm.audio.synth.Oscillator;
import jm.audio.synth.Value;
import jm.audio.synth.Volume;
/**
* A basic amplitude modulation that causes a warbing trumolo effect
*
* @author Andrew Brown
*/
public final class SimpleTremoloInst extends jm.audio.Instrument {
//----------------------------------------------
// Attributes
//----------------------------------------------
/**
* the sample rate passed to the instrument
*/
private int sampleRate;
/**
* the sample rate passed to the instrument
*/
private int channels;
//----------------------------------------------
// Constructor
//----------------------------------------------
/**
* Basic default constructor to set an initial
* sampling rate.
*
* @param sampleRate
*/
public SimpleTremoloInst(int sampleRate) {
this.sampleRate = sampleRate;
this.channels = 1;
}
//----------------------------------------------
// Methods
//----------------------------------------------
/**
* Initialisation method used to build the objects that
* this instrument will use.
*/
public void createChain() {
Value modFreq = new Value(this, this.sampleRate, this.channels, (float) 5.0);
Oscillator modulator = new Oscillator(modFreq, Oscillator.SINE_WAVE,
Oscillator.FREQUENCY);
Volume amp = new Volume(modulator, (float) 0.4);
Oscillator carrier = new Oscillator(amp, Oscillator.SINE_WAVE, Oscillator.AMPLITUDE);
SampleOut sout = new SampleOut(carrier);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy