MCPcopy Create free account

hub / github.com/DASAR-zz/Minim-Android / functions

Functions1,060 in github.com/DASAR-zz/Minim-Android

↓ 1 callersMethodsetBandWidth
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 callersMethodsetChannel
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 callersMethodsetChannelCount
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 callersMethodsetDampTimeFromDuration
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 callersMethodsetKernal
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 callersMethodsetPan
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 callersMethodsetSample
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 callersMethodsetValue
Set the value of the control as indicated. @param value the new value
src/ddf/minim/javax/sound/sampled/BooleanControl.java:140
↓ 1 callersMethodsetValue
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 callersMethodskip
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 callersMethodspecSize
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 callersMethodstepPan
()
src/ddf/minim/signals/Oscillator.java:391
↓ 1 callersMethodstereoStep
()
src/ddf/minim/signals/Oscillator.java:355
↓ 1 callersMethodstop
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 callersMethoduGenerate
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 callersMethodupdateStepSize
()
src/ddf/minim/ugens/Flanger.java:181
↓ 1 callersMethodvalidFreq
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 callersMethodvalue
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 callersMethodvalue
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 callersMethodwrite
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
MethodADSR
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
MethodAbs
()
src/ddf/minim/ugens/Abs.java:22
MethodAudioFileFormat
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
MethodAudioFileReader
The default constructor. Note that this class is abstract and thus not directly instantiable.
src/ddf/minim/javax/sound/sampled/spi/AudioFileReader.java:62
MethodAudioFileWriter
Creat a new audio file writer.
src/ddf/minim/javax/sound/sampled/spi/AudioFileWriter.java:57
MethodAudioFormat
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
MethodAudioInput
@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
MethodAudioInputStream
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
MethodAudioOutput
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
MethodAudioPlayer
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
MethodAudioRecorder
@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
MethodAudioSample
(AudioOut output)
src/ddf/minim/AudioSample.java:67
MethodAudioSnippet
(AudioRecording rec)
src/ddf/minim/AudioSnippet.java:45
MethodAudioSource
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
MethodAudioSystem
()
src/ddf/minim/javax/sound/sampled/AudioSystem.java:57
MethodBalance
Construct a Balance with a value of 0 (no change).
src/ddf/minim/ugens/Balance.java:45
MethodBandPass
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
MethodBartlettHannWindow
Constructs a Bartlett-Hann window.
src/ddf/minim/analysis/BartlettHannWindow.java:33
MethodBartlettWindow
Constructs a Bartlett window.
src/ddf/minim/analysis/BartlettWindow.java:33
MethodBasicMetaData
(String filename, long length, long sampleLength)
src/ddf/minim/javasound/BasicMetaData.java:29
MethodBeatDetect
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
MethodBitCrush
Construct a BitCrush with a bit resolution of 1 and a bit rate of 44100.
src/ddf/minim/ugens/BitCrush.java:68
MethodBlackmanWindow
Constructs a Blackman window.
src/ddf/minim/analysis/BlackmanWindow.java:35
MethodBooleanControl
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
MethodBypass
Construct a Bypass UGen that wraps a UGen of type T. @param ugen
src/ddf/minim/ugens/Bypass.java:55
MethodChebFilter
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
MethodConstant
Empty constructor for Constant. Sets value to 1.0.
src/ddf/minim/ugens/Constant.java:24
MethodControl
Create a new Control given its Type. @param type the type
src/ddf/minim/javax/sound/sampled/Control.java:89
MethodController
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
MethodConvolver
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
MethodCosineWindow
Constructs a Cosine window.
src/ddf/minim/analysis/CosineWindow.java:33
MethodDFT
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
MethodDamp
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
MethodDefaultInstrument
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
MethodDelay
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
MethodEffectsChain
Constructs an empty <code>EffectsChain</code>.
src/ddf/minim/EffectsChain.java:52
MethodEncoding
Create a new encoding descriptor, given its name. @param name the name
src/ddf/minim/javax/sound/sampled/AudioFormat.java:77
MethodEnvelopeFollower
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
MethodFFT
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
MethodFilePlayer
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
MethodFlanger
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
MethodFloatControl
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
MethodFloatSampleBuffer
Create an instance with initially no channels.
src/ddf/minim/javasound/FloatSampleBuffer.java:195
MethodFloatSampleTools
prevent instanciation
src/ddf/minim/javasound/FloatSampleTools.java:89
MethodFormatConversionProvider
Create a new format conversion provider.
src/ddf/minim/javax/sound/sampled/spi/FormatConversionProvider.java:54
MethodFourierTransform
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
MethodFrequency
( float hz )
src/ddf/minim/ugens/Frequency.java:93
MethodGain
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
MethodGaussWindow
Constructs a Gauss window function.
src/ddf/minim/analysis/GaussWindow.java:37
MethodGranulateRandom
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
MethodGranulateSteady
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
MethodHammingWindow
Constructs a Hamming window.
src/ddf/minim/analysis/HammingWindow.java:34
MethodHannWindow
Constructs a Hann window.
src/ddf/minim/analysis/HannWindow.java:33
MethodHighPassSP
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
MethodIIRFilter
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
MethodInfo
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
MethodInfo
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
MethodInfo
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
MethodJSAudioInput
(TargetDataLine tdl, int bufferSize)
src/ddf/minim/javasound/JSAudioInput.java:45
MethodJSAudioOutput
(SourceDataLine sdl, int bufferSize)
src/ddf/minim/javasound/JSAudioOutput.java:47
MethodJSAudioRecordingClip
(Clip clip, AudioMetaData mdata)
src/ddf/minim/javasound/JSAudioRecordingClip.java:38
MethodJSAudioSample
(AudioMetaData mdata, SampleSignal ssig, AudioOut out)
src/ddf/minim/javasound/JSAudioSample.java:30
MethodLanczosWindow
Constructs a Lanczos window.
src/ddf/minim/analysis/LanczosWindow.java:33
MethodLine
Constructs a Line that starts at 1 and transitions to 0 over 1 second.
src/ddf/minim/ugens/Line.java:37
MethodLineEvent
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
MethodLineUnavailableException
Create a new LineUnavailableException.
src/ddf/minim/javax/sound/sampled/LineUnavailableException.java:47
MethodLiveInput
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
MethodLowPassFS
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
MethodLowPassSP
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
MethodMAudioBuffer
Constructs and MAudioBuffer that is <code>bufferSize</code> samples long. @param bufferSize the size of the buffer
src/ddf/minim/MAudioBuffer.java:43
MethodMP3MetaData
(String filename, long length, Map<String, Object> tags)
src/ddf/minim/javasound/MP3MetaData.java:27
MethodMidi2Hz
Construct a Midi2Hz that generates a fixed value from MIDI note 0.
src/ddf/minim/ugens/Midi2Hz.java:33
MethodMinim
@invisible Creates an instance of Minim that will use the provided implementation for audio. @param implementation
src/ddf/minim/Minim.java:117
MethodMixerProvider
Create a new mixer provider.
src/ddf/minim/javax/sound/sampled/spi/MixerProvider.java:52
MethodMoogFilter
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
MethodMultiChannelBuffer
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
MethodMultiplier
Construct a Multiplier with a fixed value of 1, which will mean incoming audio is not changed.
src/ddf/minim/ugens/Multiplier.java:41
MethodNoise
Constructor for white noise. By default, the amplitude will be 1 and the tint will be WHITE.
src/ddf/minim/ugens/Noise.java:58
MethodNotchFilter
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
MethodNoteManager
( float sampleRate )
src/ddf/minim/NoteManager.java:71
← previousnext →301–400 of 1,060, ranked by callers