MCPcopy Create free account

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

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

MethodisFormatSupported
Return true if the indicated audio format is supported by this Info, false otherwise. @param fmt the audio format @return true if the form
src/ddf/minim/javax/sound/sampled/DataLine.java:144
MethodisHat
In frequency energy mode this returns true if a beat corresponding to the frequency range of a hi hat has been detected. This has been tuned to work w
src/ddf/minim/analysis/BeatDetect.java:393
MethodisInterpolating
Returns whether or not this TickRate currently has interpolation on. @return boolean: is this TickRate interpolating @related TickRate
src/ddf/minim/ugens/TickRate.java:117
MethodisKick
In frequency energy mode this returns true if a beat corresponding to the frequency range of a kick drum has been detected. This has been tuned to wor
src/ddf/minim/analysis/BeatDetect.java:351
MethodisLineSupported
Return true if a Line matching the given description is supported by this Mixer, false otherwise. @param info the description of the line
src/ddf/minim/javax/sound/sampled/Mixer.java:189
MethodisLooping
Returns true if the <code>AudioPlayer</code> is currently playing and has more than one loop left to play. @return true if this is looping, false if
src/ddf/minim/AudioPlayer.java:281
MethodisLooping
Returns true if this is currently playing and has more than one loop left to play. @return true if this is looping
src/ddf/minim/Playable.java:77
MethodisLooping
()
src/ddf/minim/AudioSnippet.java:117
MethodisLooping
Returns true if this is currently playing and has more than one loop left to play. @return boolean: true if this is looping @related loop ( ) @relat
src/ddf/minim/ugens/FilePlayer.java:262
MethodisMixerSupported
Return true if a mixer matching the provided description is supported. @param info description of the mixer to match @return true if it is
src/ddf/minim/javax/sound/sampled/spi/MixerProvider.java:79
MethodisMonitoring
Returns whether or not this AudioInput is monitoring. In other words, whether you will hear in your speakers the audio coming into the input. @return
src/ddf/minim/AudioInput.java:95
MethodisMuted
Returns true if the sound is muted. @return the current mute state @related mute ( ) @related unmute ( )
src/ddf/minim/Controller.java:328
MethodisOpen
Return true if this line is open, false otherwise.
src/ddf/minim/javax/sound/sampled/Line.java:139
MethodisPlaying
Indicates if the <code>AudioPlayer</code> is currently playing. @return true if this is currently playing, false if not @example AudioPlayer/loopNum
src/ddf/minim/AudioPlayer.java:295
MethodisPlaying
()
src/ddf/minim/AudioSnippet.java:122
MethodisPlaying
()
src/ddf/minim/spi/AudioRecordingStream.java:39
MethodisPlaying
Returns true if this currently playing. @return boolean: the current play state @example Synthesis/filePlayerExample @related play ( ) @related pau
src/ddf/minim/ugens/FilePlayer.java:278
MethodisPlaying
()
src/ddf/minim/javasound/JSAudioRecordingClip.java:90
MethodisRecording
Returns the current record state. @return true if this is currently recording @example Advanced/RecordAndPlayback @related AudioRecorder
src/ddf/minim/AudioRecorder.java:99
MethodisRunning
Return true if this line is running, meaning that it has been started. When the line is stopped, this method will return false.
src/ddf/minim/javax/sound/sampled/DataLine.java:253
MethodisSnare
In frequency energy mode this returns true if a beat corresponding to the frequency range of a snare drum has been detected. This has been tuned to wo
src/ddf/minim/analysis/BeatDetect.java:371
MethodisSounding
@deprecated
src/ddf/minim/AudioOutput.java:202
MethodisSounding
Returns true if at least one signal in the chain is enabled. @return true if at least one signal in the signal chain is enabled
src/ddf/minim/Polyphonic.java:52
MethodisSourceEncodingSupported
Return true if an encoding matching the argument is supported as a source encoding by this provider. @param src the source encoding @retur
src/ddf/minim/javax/sound/sampled/spi/FormatConversionProvider.java:167
MethodisSynchronizationSupported
Return true if this Mixer supports synchronization of the given set of lines. @param lines the lines to check @param sync true
src/ddf/minim/javax/sound/sampled/Mixer.java:200
MethodisTargetEncodingSupported
Return true if an encoding matching the argument is supported as a target encoding by this provider. @param targ the target encoding @retu
src/ddf/minim/javax/sound/sampled/spi/FormatConversionProvider.java:184
Methodlength
The length of the recording in milliseconds. @return int: the length in milliseconds @related AudioMetaData
src/ddf/minim/AudioMetaData.java:43
Methodlength
Gets the length in milliseconds of this AudioSample. @return int: the length in milliseconds @related AudioSample
src/ddf/minim/AudioSample.java:110
Methodlength
()
src/ddf/minim/javasound/JSAudioSample.java:52
Methodlength
()
src/ddf/minim/javasound/BasicMetaData.java:36
Methodlevel
Gets the current level of the buffer. It is calculated as the root-mean-square of all the samples in the buffer. @return float: the RMS amplitude of
src/ddf/minim/AudioBuffer.java:70
Methodlevel
()
src/ddf/minim/MAudioBuffer.java:116
MethodlinAverages
Sets the number of averages used when computing the spectrum and spaces the averages in a linear manner. In other words, each average band will be <co
src/ddf/minim/analysis/FourierTransform.java:379
MethodlinearFade
Fade the volume level of this buffer from the given start volume to the end volume. E.g. to implement a fade in, use startVol=0 and endVol=1. @param
src/ddf/minim/javasound/FloatSampleBuffer.java:667
MethodloadFile
Loads the requested file into an AudioPlayer. The default buffer size is 1024 samples and the buffer size determines the size of the left, right, and
src/ddf/minim/Minim.java:398
MethodloadFileStream
Loads the file into an AudioRecordingStream, which allows you to stream audio data from the file yourself. Note that doing this will not result in any
src/ddf/minim/Minim.java:466
MethodloadSample
Loads the requested file into an AudioSample. By default, the buffer size used is 1024. @shortdesc Loads the requested file into an AudioSample. @pa
src/ddf/minim/Minim.java:341
MethodloadSnippet
@invisible Loads the requested file into an {@link AudioSnippet} @param filename the file or URL you want to load @return an <code>AudioSn
src/ddf/minim/Minim.java:370
Methodloop
Set the <code>AudioPlayer</code> to loop some number of times. If it is already playing, the position <i>will not</i> be reset to the beginning. If it
src/ddf/minim/AudioPlayer.java:139
Methodloop
()
src/ddf/minim/AudioSnippet.java:73
Methodloop
Starts looping playback from the current position. Playback will continue to the loop's end point, then loop back to the loop start point count times,
src/ddf/minim/spi/AudioRecordingStream.java:64
Methodloop
Starts looping playback from the current position. Playback will continue to the loop's end point, then loop back to the loop start point count times,
src/ddf/minim/spi/AudioRecording.java:71
Methodloop
Sets looping to continuous. If this is already playing, the position <i>will not</i> be reset to the beginning. If this is not playing, it will start
src/ddf/minim/ugens/FilePlayer.java:128
Methodloop
(int count)
src/ddf/minim/javasound/JSAudioRecordingClip.java:95
MethodloopCount
Returns the number of loops left to do. @return int: the number of loops left @example AudioPlayer/loopNum @related AudioPlayer
src/ddf/minim/AudioPlayer.java:170
MethodloopCount
Returns the number of loops left to do. @return the number of loops left
src/ddf/minim/Playable.java:84
MethodloopCount
()
src/ddf/minim/AudioSnippet.java:83
MethodloopCount
Returns the number of loops left to do. @return int: the number of loops left @related loop ( ) @related FilePlayer
src/ddf/minim/ugens/FilePlayer.java:162
Methodmark
(int limit)
src/ddf/minim/javax/sound/sampled/AudioInputStream.java:140
MethodmarkSupported
Return true if the underlying stream supports mark and reset, false otherwise.
src/ddf/minim/javax/sound/sampled/AudioInputStream.java:149
Methodmatches
Return true if this audio format matches another. @param fmt the format to match against @return true if they match, false otherwise
src/ddf/minim/javax/sound/sampled/AudioFormat.java:307
Methodmix
Mixes <code>source</code> to this buffer by adding all samples. At most, <code>source</code>'s number of samples, number of channels are mixed. None o
src/ddf/minim/javasound/FloatSampleBuffer.java:919
MethodmixDownChannels
Mix down of n channels to one channel.<br> It uses a simple mixdown: all other channels are added to first channel.<br> The volume is NOT lowered ! Be
src/ddf/minim/javasound/FloatSampleBuffer.java:897
Methodmute
Mutes the sound. @related unmute ( ) @related isMuted ( )
src/ddf/minim/Controller.java:306
MethodnoEffects
Disables all effects currently attached to this. If you want to disable only a single effect, use {@link #disableEffect(int)}.
src/ddf/minim/Effectable.java:45
MethodnoEffects
@deprecated
src/ddf/minim/AudioSource.java:184
MethodnoPortamento
Turns off portamento.
src/ddf/minim/signals/Oscillator.java:226
MethodnoSound
@deprecated
src/ddf/minim/AudioOutput.java:215
MethodnoSound
Disables all signals currently attached to this. If you want to disable only a single signal, use {@link #disableSignal(int)}.
src/ddf/minim/Polyphonic.java:45
MethodnoteOff
Specifies that the ADSR envelope should start the release time. @example Synthesis/ADSRExample @related ADSR
src/ddf/minim/ugens/ADSR.java:220
MethodnoteOff
Turn off the default instrument. Typically, you will not call this directly. It will be called at the appropriate time by the AudioOuput you schedule
src/ddf/minim/ugens/DefaultInstrument.java:92
MethodnoteOn
Specifies that the ADSR envelope should begin. @example Synthesis/ADSRExample @related ADSR
src/ddf/minim/ugens/ADSR.java:204
MethodnoteOn
Turn on the default instrument. Typically, you will not call this directly. It will be called at the appropriate time by the AudioOuput you schedule a
src/ddf/minim/ugens/DefaultInstrument.java:71
Methodoffset
Apply a DC offset to this Wavetable. In other words, add <code>amount</code> to every sample. @param amount float: the amount to add to ev
src/ddf/minim/ugens/Wavetable.java:222
Methodopen
Opens the resource to be used.
src/ddf/minim/spi/AudioResource.java:29
Methodopen
Open the line, given the desired audio format. @param fmt the format to use @throws LineUnavailableException if the line is no
src/ddf/minim/javax/sound/sampled/SourceDataLine.java:56
Methodopen
Open a clip, given an audio format and some data. @param fmt the format of the data @param data a byte array containing the aud
src/ddf/minim/javax/sound/sampled/Clip.java:90
Methodopen
Open the line using the indicated audio format. @param fmt the format to use @throws LineUnavailableException if the line is n
src/ddf/minim/javax/sound/sampled/TargetDataLine.java:56
Methodopen
()
src/ddf/minim/javasound/JSAudioRecordingClip.java:141
Methodopen
()
src/ddf/minim/javasound/JSAudioInput.java:99
Methodopen
()
src/ddf/minim/javasound/JSAudioOutput.java:131
Methodorchestra
The orchestra that performed the recording. @return String: the orchestra tag @related AudioMetaData
src/ddf/minim/AudioMetaData.java:203
Methodorchestra
()
src/ddf/minim/javasound/MP3MetaData.java:92
Methodpan
@invisible Gets the pan control for the <code>Line</code>, if it exists. You should check for the availability of a pan control by
src/ddf/minim/Controller.java:295
Methodpan
Returns the current pan value. @return the current pan value
src/ddf/minim/signals/Oscillator.java:200
Methodpause
Pauses playback. @example AudioPlayer/pause @related AudioPlayer
src/ddf/minim/AudioPlayer.java:106
Methodpause
()
src/ddf/minim/NoteManager.java:149
Methodpause
()
src/ddf/minim/AudioSnippet.java:63
Methodpause
Disallows playback/reads of the source. If this is pause, all calls to read will generate arrays full of zeros (silence).
src/ddf/minim/spi/AudioRecordingStream.java:37
Methodpause
Pauses playback. @example Synthesis/filePlayerExample @related FilePlayer
src/ddf/minim/ugens/FilePlayer.java:99
Methodpause
()
src/ddf/minim/javasound/JSAudioRecordingClip.java:120
MethodpauseNotes
An AudioOutput processes its note queue in its own Thread, so if you are going to queue up a lot of notes at once you will want to use the <code>pause
src/ddf/minim/AudioOutput.java:520
Methodperiod
Returns the period of the waveform (the inverse of the frequency). @return the period of the waveform
src/ddf/minim/signals/Oscillator.java:420
Methodplay
Starts playback from the current position. If this was previously set to loop, looping will be disabled. @shortdesc Starts playback from the current
src/ddf/minim/AudioPlayer.java:77
Methodplay
()
src/ddf/minim/AudioSnippet.java:52
Methodplay
Starts playback from the current position. If this was previously set to loop, looping will be disabled. @example Synthesis/filePlayerExample @relat
src/ddf/minim/ugens/FilePlayer.java:72
MethodplayNote
playNote is a method of scheduling a "note" to be played at some time in the future (or immediately), where a "note" is an instance of a class that im
src/ddf/minim/AudioOutput.java:290
Methodportamento
Sets how many milliseconds it should take to transition from one frequency to another when setting a new frequency. @param millis the length
src/ddf/minim/signals/Oscillator.java:212
Methodposition
Returns the current position of the "playhead" (ie how much of the sound has already been played) @return the current position of the "playhead"
src/ddf/minim/Playable.java:135
MethodprintCoeff
Prints the current values of the coefficients to the console.
src/ddf/minim/effects/IIRFilter.java:208
MethodprintControls
@invisible Prints the available controls and their ranges to the console. Not all lines have all of the controls available on t
src/ddf/minim/Controller.java:170
MethodprintInputs
Prints all inputs connected to this UGen (for debugging)
src/ddf/minim/UGen.java:645
Methodprocess
Sends <code>samp</code> to each effect in the chain, in order. @param samp the samples to process
src/ddf/minim/EffectsChain.java:221
Methodprocess
(float[] signal)
src/ddf/minim/effects/Convolver.java:84
Methodprocess
(float[] signal)
src/ddf/minim/effects/IIRFilter.java:126
MethodprocessSampleFrame
( float[] in, float[] out )
src/ddf/minim/ugens/Sink.java:28
Methodproperties
Return a read-only Map holding the properties associated with this format.
src/ddf/minim/javax/sound/sampled/AudioFormat.java:329
Methodproperties
Return the properties associated with this format, as a Map. The returned Map is unmodifiable.
src/ddf/minim/javax/sound/sampled/AudioFileFormat.java:234
Methodpublisher
The publisher of the recording. @return String: the publisher tag @related AudioMetaData
src/ddf/minim/AudioMetaData.java:215
Methodpublisher
()
src/ddf/minim/javasound/MP3MetaData.java:97
← previousnext →701–800 of 1,060, ranked by callers