Uses of Interface
ddf.minim.Recordable

Packages that use Recordable
ddf.minim   
ddf.minim.javasound   
ddf.minim.spi   
 

Uses of Recordable in ddf.minim
 

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
 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, SampleRecorder recorder)
          Constructs an AudioRecorder that will use recorder to record recordSource.
 

Uses of Recordable in ddf.minim.javasound
 

Methods in ddf.minim.javasound with parameters of type Recordable
 SampleRecorder JSMinim.getSampleRecorder(Recordable source, java.lang.String fileName, boolean buffered)
           
 

Uses of Recordable in ddf.minim.spi
 

Methods in ddf.minim.spi with parameters of type Recordable
 SampleRecorder MinimServiceProvider.getSampleRecorder(Recordable source, java.lang.String saveTo, boolean buffered)
          Should return a SampleRecorder that can record the source in a buffered (in-memory) or non-buffered (streamed) manner, to the file specified by saveTo