Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/DASAR-zz/Minim-Android
/ functions
Functions
1,060 in github.com/DASAR-zz/Minim-Android
⨍
Functions
1,060
◇
Types & classes
152
↓ 1 callers
Method
setBandWidth
Sets the band width of the filter. Doing this will cause the coefficients to be recalculated. @param bandWidth the band width (in Hz)
src/ddf/minim/effects/BandPass.java:56
↓ 1 callers
Method
setChannel
Sets all of the values in a particular channel using the values of the provided float array. The array should be at least as long as the current buffe
src/ddf/minim/MultiChannelBuffer.java:177
↓ 1 callers
Method
setChannelCount
Set the number of channels this input should generate. This will be called by the owning UGen if this input is an AUDIO input. @param numberOfChannel
src/ddf/minim/UGen.java:139
↓ 1 callers
Method
setDampTimeFromDuration
Set the attack time and damp time parameters based on a duration. If the current attack time is positive, and less than the total duration, then the d
src/ddf/minim/ugens/Damp.java:208
↓ 1 callers
Method
setKernal
Sets the kernal to <code>k</code>. The values in <code>k</code> are copied so it is not possible to alter the kernal after it has been set except by s
src/ddf/minim/effects/Convolver.java:74
↓ 1 callers
Method
setPan
Set the pan of the Oscillator, range is [-1, 1]. @param p - the new pan value, it will be constrained to [-1, 1]
src/ddf/minim/signals/Oscillator.java:177
↓ 1 callers
Method
setSample
Sets the sample data used by this Sampler by <em>copying</em> the contents of the provided MultiChannelBuffer into the internal buffer. @param newSam
src/ddf/minim/ugens/Sampler.java:195
↓ 1 callers
Method
setValue
Set the value of the control as indicated. @param value the new value
src/ddf/minim/javax/sound/sampled/BooleanControl.java:140
↓ 1 callers
Method
setValue
Set the new value of this control. @param value the new value @throws IllegalArgumentException if the new value is greater tha
src/ddf/minim/javax/sound/sampled/FloatControl.java:240
↓ 1 callers
Method
skip
Skips <code>millis</code> from the current position. <code>millis</code> can be negative, which will make this skip backwards. If the skip amount woul
src/ddf/minim/Playable.java:121
↓ 1 callers
Method
specSize
Returns the size of the spectrum created by this transform. In other words, the number of frequency bands produced by this transform. This is typicall
src/ddf/minim/analysis/FourierTransform.java:468
↓ 1 callers
Method
stepPan
()
src/ddf/minim/signals/Oscillator.java:391
↓ 1 callers
Method
stereoStep
()
src/ddf/minim/signals/Oscillator.java:355
↓ 1 callers
Method
stop
Stops Minim and releases all audio resources. <p> If using Minim outside of Processing, you must call this to release all of the audio resources that
src/ddf/minim/Minim.java:205
↓ 1 callers
Method
uGenerate
Implement this method when you extend UGen. It will be called when your UGen needs to generate one sample frame of audio. It is expected that you will
src/ddf/minim/UGen.java:533
↓ 1 callers
Method
updateStepSize
()
src/ddf/minim/ugens/Flanger.java:181
↓ 1 callers
Method
validFreq
Returns true if the frequency is valid for this filter. Subclasses can override this method if they want to limit center frequencies to certain ranges
src/ddf/minim/effects/IIRFilter.java:179
↓ 1 callers
Method
value
Returns the value of the waveform at <code>step</code>. To take advantage of all of the work that <code>Oscillator</code> does, you can create your ow
src/ddf/minim/signals/Oscillator.java:436
↓ 1 callers
Method
value
Sample the Wavetable using a value in the range [0,1]. For instance, if the Wavetable has 1024 values in its float array, then calling value(0.5) will
src/ddf/minim/ugens/Wavetable.java:129
↓ 1 callers
Method
write
Write audio data to this line. The data must be an integral number of frames, as determined by the audio format. @param buf a byte array o
src/ddf/minim/javax/sound/sampled/SourceDataLine.java:84
Method
ADSR
Constructor for an ADSR envelope. Maximum amplitude is set to 1.0. Attack and decay times are set to 1 sec. Sustain level is set to 0.0. Release time
src/ddf/minim/ugens/ADSR.java:65
Method
Abs
()
src/ddf/minim/ugens/Abs.java:22
Method
AudioFileFormat
Create a new AudioFileFormat given the type, the format, and the frame length. The new object will have an unspecified byte length, and an empty prope
src/ddf/minim/javax/sound/sampled/AudioFileFormat.java:136
Method
AudioFileReader
The default constructor. Note that this class is abstract and thus not directly instantiable.
src/ddf/minim/javax/sound/sampled/spi/AudioFileReader.java:62
Method
AudioFileWriter
Creat a new audio file writer.
src/ddf/minim/javax/sound/sampled/spi/AudioFileWriter.java:57
Method
AudioFormat
Create a new audio format, given various attributes of it. The properties map for this format will be empty. @param encoding the encoding
src/ddf/minim/javax/sound/sampled/AudioFormat.java:153
Method
AudioInput
@invisible Constructs an <code>AudioInput</code> that subscribes to <code>stream</code> and can control the <code>DataLine</code> that <code>stream</
src/ddf/minim/AudioInput.java:73
Method
AudioInputStream
Create a new AudioInputStream given an underlying InputStream, the audio format, and the length of the data in frames. The frame size is taken from th
src/ddf/minim/javax/sound/sampled/AudioInputStream.java:81
Method
AudioOutput
Constructs an <code>AudioOutput</code> that will use <code>out</code> to generate sound. @param out the <code>AudioOut</code> that does mo
src/ddf/minim/AudioOutput.java:124
Method
AudioPlayer
Constructs an <code>AudioPlayer</code> that plays <code>recording</code>. It is expected that <code>recording</code> will have a <code>DataLine</code>
src/ddf/minim/AudioPlayer.java:58
Method
AudioRecorder
@invisible Constructs an <code>AudioRecorder</code> that will use <code>recorder</code> to record <code>recordSource</code>. You might use this if yo
src/ddf/minim/AudioRecorder.java:55
Method
AudioSample
(AudioOut output)
src/ddf/minim/AudioSample.java:67
Method
AudioSnippet
(AudioRecording rec)
src/ddf/minim/AudioSnippet.java:45
Method
AudioSource
Constructs an <code>AudioSource</code> that will subscribe to the samples in <code>stream</code>. It is expected that the stream is using a <code>Data
src/ddf/minim/AudioSource.java:78
Method
AudioSystem
()
src/ddf/minim/javax/sound/sampled/AudioSystem.java:57
Method
Balance
Construct a Balance with a value of 0 (no change).
src/ddf/minim/ugens/Balance.java:45
Method
BandPass
Constructs a band pass filter with the requested center frequency, bandwidth and sample rate. @param freq the center frequency of the band t
src/ddf/minim/effects/BandPass.java:43
Method
BartlettHannWindow
Constructs a Bartlett-Hann window.
src/ddf/minim/analysis/BartlettHannWindow.java:33
Method
BartlettWindow
Constructs a Bartlett window.
src/ddf/minim/analysis/BartlettWindow.java:33
Method
BasicMetaData
(String filename, long length, long sampleLength)
src/ddf/minim/javasound/BasicMetaData.java:29
Method
BeatDetect
Create a BeatDetect object that is in SOUND_ENERGY mode. <code>timeSize</code> and <code>sampleRate</code> will be set to 1024 and 44100, respectively
src/ddf/minim/analysis/BeatDetect.java:120
Method
BitCrush
Construct a BitCrush with a bit resolution of 1 and a bit rate of 44100.
src/ddf/minim/ugens/BitCrush.java:68
Method
BlackmanWindow
Constructs a Blackman window.
src/ddf/minim/analysis/BlackmanWindow.java:35
Method
BooleanControl
Create a new boolean control, with the indicated Type and initial value. The description strings will default to "true" and "false". @param type
src/ddf/minim/javax/sound/sampled/BooleanControl.java:88
Method
Bypass
Construct a Bypass UGen that wraps a UGen of type T. @param ugen
src/ddf/minim/ugens/Bypass.java:55
Method
ChebFilter
Constructs a Chebyshev filter with a cutoff of the given frequency, of the given type, with the give amount of ripple in the pass band, and with the g
src/ddf/minim/effects/ChebFilter.java:79
Method
Constant
Empty constructor for Constant. Sets value to 1.0.
src/ddf/minim/ugens/Constant.java:24
Method
Control
Create a new Control given its Type. @param type the type
src/ddf/minim/javax/sound/sampled/Control.java:89
Method
Controller
Constructs a <code>Controller</code> for the given <code>Line</code>. @param cntrls an array of Controls that this Controller will manipul
src/ddf/minim/Controller.java:106
Method
Convolver
Constructs a Convolver with the kernal <code>k</code> that expects buffer of length <code>sigLength</code>. @param k the kernal of the filte
src/ddf/minim/effects/Convolver.java:60
Method
CosineWindow
Constructs a Cosine window.
src/ddf/minim/analysis/CosineWindow.java:33
Method
DFT
Constructs a DFT that expects audio buffers of length <code>timeSize</code> that have been recorded with a sample rate of <code>sampleRate</code>. Wil
src/ddf/minim/analysis/DFT.java:51
Method
Damp
Constructor for Damp envelope. attackTime, rise time of the damp envelope, defaults to 0. dampTime, decay time of the damp envelope, defaults to 1. ma
src/ddf/minim/ugens/Damp.java:66
Method
DefaultInstrument
Construct a default instrument that will play a note at the given frequency on the given output. @param frequency float: the frequency of the note
src/ddf/minim/ugens/DefaultInstrument.java:39
Method
Delay
Constructs a Delay. Maximum delay time will be 0.25 seconds, amplitude will be 0.5, and feedback will be off.
src/ddf/minim/ugens/Delay.java:68
Method
EffectsChain
Constructs an empty <code>EffectsChain</code>.
src/ddf/minim/EffectsChain.java:52
Method
Encoding
Create a new encoding descriptor, given its name. @param name the name
src/ddf/minim/javax/sound/sampled/AudioFormat.java:77
Method
EnvelopeFollower
Construct an EnvelopeFollower. @param attackInSeconds float: how many seconds the follower should take to ramp up to a higher value @param release
src/ddf/minim/ugens/EnvelopeFollower.java:61
Method
FFT
Constructs an FFT that will accept sample buffers that are <code>timeSize</code> long and have been recorded with a sample rate of <code>sampleRate</c
src/ddf/minim/analysis/FFT.java:164
Method
FilePlayer
Construct a FilePlayer that will read from iFileStream. @param iFileStream AudioRecordingStream: the stream this should read from @example Synthe
src/ddf/minim/ugens/FilePlayer.java:39
Method
Flanger
Construct a Flanger by specifying all initial values. @param delayLength float: the minimum delay applied to incoming samples (in millisec
src/ddf/minim/ugens/Flanger.java:141
Method
FloatControl
Create a new FloatControl given its type and various parameters. The minimum, maximum, and midpoint labels will all be the empty string. @param type
src/ddf/minim/javax/sound/sampled/FloatControl.java:115
Method
FloatSampleBuffer
Create an instance with initially no channels.
src/ddf/minim/javasound/FloatSampleBuffer.java:195
Method
FloatSampleTools
prevent instanciation
src/ddf/minim/javasound/FloatSampleTools.java:89
Method
FormatConversionProvider
Create a new format conversion provider.
src/ddf/minim/javax/sound/sampled/spi/FormatConversionProvider.java:54
Method
FourierTransform
Construct a FourierTransform that will analyze sample buffers that are <code>ts</code> samples long and contain samples with a <code>sr</code> sample
src/ddf/minim/analysis/FourierTransform.java:283
Method
Frequency
( float hz )
src/ddf/minim/ugens/Frequency.java:93
Method
Gain
Construct a Gain UGen with a value of 0 dB, which means it will not change the volume of something patched to it.
src/ddf/minim/ugens/Gain.java:45
Method
GaussWindow
Constructs a Gauss window function.
src/ddf/minim/analysis/GaussWindow.java:37
Method
GranulateRandom
Constructor for GranulateRandom. grainLengthMin, minimum grain length of each grain, defaults to 10 msec. spaceLengthMin, minimum space between each g
src/ddf/minim/ugens/GranulateRandom.java:104
Method
GranulateSteady
Constructor for GranulateSteady. grainLength, length of each grain, defaults to 10 msec. spaceLength, space between each grain, defaults to 20 msec. f
src/ddf/minim/ugens/GranulateSteady.java:72
Method
HammingWindow
Constructs a Hamming window.
src/ddf/minim/analysis/HammingWindow.java:34
Method
HannWindow
Constructs a Hann window.
src/ddf/minim/analysis/HannWindow.java:33
Method
HighPassSP
Constructs a high pass filter with a cutoff frequency of <code>freq</code> that will be used to filter audio recorded at <code>sampleRate</code>. @pa
src/ddf/minim/effects/HighPassSP.java:37
Method
IIRFilter
Constructs an IIRFilter with the given cutoff frequency that will be used to filter audio recorded at <code>sampleRate</code>. @param freq t
src/ddf/minim/effects/IIRFilter.java:63
Method
Info
Create a new mixer description. @param name the name of the mixer @param vendor the vendor @param desc a descriptive
src/ddf/minim/javax/sound/sampled/Mixer.java:69
Method
Info
Create a new Info object. The argument is the class of the line, for instance TargetDataLine.class. @param klass the class of the line
src/ddf/minim/javax/sound/sampled/Line.java:61
Method
Info
Create a new Info given the line's class and a supported audio format. The buffer sizes default to AudioSystem.NOT_SPECIFIED. @param klass
src/ddf/minim/javax/sound/sampled/DataLine.java:68
Method
JSAudioInput
(TargetDataLine tdl, int bufferSize)
src/ddf/minim/javasound/JSAudioInput.java:45
Method
JSAudioOutput
(SourceDataLine sdl, int bufferSize)
src/ddf/minim/javasound/JSAudioOutput.java:47
Method
JSAudioRecordingClip
(Clip clip, AudioMetaData mdata)
src/ddf/minim/javasound/JSAudioRecordingClip.java:38
Method
JSAudioSample
(AudioMetaData mdata, SampleSignal ssig, AudioOut out)
src/ddf/minim/javasound/JSAudioSample.java:30
Method
LanczosWindow
Constructs a Lanczos window.
src/ddf/minim/analysis/LanczosWindow.java:33
Method
Line
Constructs a Line that starts at 1 and transitions to 0 over 1 second.
src/ddf/minim/ugens/Line.java:37
Method
LineEvent
Create a new LineEvent with the indicated line, type, and frame position. @param line the line @param type the type of the even
src/ddf/minim/javax/sound/sampled/LineEvent.java:119
Method
LineUnavailableException
Create a new LineUnavailableException.
src/ddf/minim/javax/sound/sampled/LineUnavailableException.java:47
Method
LiveInput
Constructs a LiveInput that will read from inputStream. @param inputStream AudioStream: the audio stream this LiveInput will read from
src/ddf/minim/ugens/LiveInput.java:29
Method
LowPassFS
Constructs a low pass filter with a cutoff frequency of <code>freq</code> that will be used to filter audio recorded at <code>sampleRate</code>. @par
src/ddf/minim/effects/LowPassFS.java:42
Method
LowPassSP
Constructs a low pass filter with a cutoff frequency of <code>freq</code> that will be used to filter audio recorded at <code>sampleRate</code>. @par
src/ddf/minim/effects/LowPassSP.java:39
Method
MAudioBuffer
Constructs and MAudioBuffer that is <code>bufferSize</code> samples long. @param bufferSize the size of the buffer
src/ddf/minim/MAudioBuffer.java:43
Method
MP3MetaData
(String filename, long length, Map<String, Object> tags)
src/ddf/minim/javasound/MP3MetaData.java:27
Method
Midi2Hz
Construct a Midi2Hz that generates a fixed value from MIDI note 0.
src/ddf/minim/ugens/Midi2Hz.java:33
Method
Minim
@invisible Creates an instance of Minim that will use the provided implementation for audio. @param implementation
src/ddf/minim/Minim.java:117
Method
MixerProvider
Create a new mixer provider.
src/ddf/minim/javax/sound/sampled/spi/MixerProvider.java:52
Method
MoogFilter
Creates a low pass filter. @param frequencyInHz float: the cutoff frequency for the filter @param normalizedResonance float: the resonance of the
src/ddf/minim/ugens/MoogFilter.java:123
Method
MultiChannelBuffer
Construct a MultiChannelBuffer, providing a size and number of channels. @param bufferSize int: The length of the buffer in sample frames. @param
src/ddf/minim/MultiChannelBuffer.java:37
Method
Multiplier
Construct a Multiplier with a fixed value of 1, which will mean incoming audio is not changed.
src/ddf/minim/ugens/Multiplier.java:41
Method
Noise
Constructor for white noise. By default, the amplitude will be 1 and the tint will be WHITE.
src/ddf/minim/ugens/Noise.java:58
Method
NotchFilter
Constructs a notch filter with the requested center frequency, bandwidth and sample rate. @param freq the center frequency of the band to remove (in
src/ddf/minim/effects/NotchFilter.java:40
Method
NoteManager
( float sampleRate )
src/ddf/minim/NoteManager.java:71
← previous
next →
301–400 of 1,060, ranked by callers