Uses of Interface
ddf.minim.Recordable

Packages that use Recordable
ddf.minim   
 

Uses of Recordable in ddf.minim
 

Subinterfaces of Recordable in ddf.minim
 interface AudioRecording
          An AudioRecording is a Playable AudioStream.
 interface AudioStream
          An AudioStream is a stream of samples that is coming from somewhere.
 interface AudioSynthesizer
          An AudioSythesizer is a Polyphonic AudioStream.
 

Classes in ddf.minim that implement Recordable
 class AudioInput
          An AudioInput provides no extra functionality over what AudioSource does, it exists simply for the sake of having a class named for input from the system.
 class AudioOutput
          An AudioOutput is used to generate audio with AudioSignals.
 class AudioPlayer
          An AudioPlayer is used for playing an AudioRecording.
 class AudioSample
          An AudioSample is a special kind of file playback that allows you to repeatedly trigger an audio file.
 class AudioSource
          An AudioSource is a kind of wrapper around an AudioStream.
 class SignalSplitter
          A SignalSplitter acts exactly like a headphone splitter.
 

Methods in ddf.minim with parameters of type Recordable
static AudioRecorder Minim.createRecorder(Recordable source, java.lang.String fileName, boolean buffered)
          Creates an AudioRecorder that will use source as its record source and that will save to the file name specified.
 void AudioRecorder.setRecordSource(Recordable recordSource)
          Sets the record source for this recorder.
 

Constructors in ddf.minim with parameters of type Recordable
AudioRecorder(Recordable recordSource, java.lang.String fileName, javax.sound.sampled.AudioFileFormat.Type fileType, boolean buffered)
          Constructs an AudioRecorder with the given parameters.
AudioRecorder(Recordable recordSource, SampleRecorder recorder)
          Constructs an AudioRecorder that will use recorder to record recordSource.