octave: Recording

 
 33.4.1 Recording
 ----------------
 
 The following methods control the recording process.
 
  -- : record (RECORDER)
  -- : record (RECORDER, LENGTH)
      Record audio without blocking using the audiorecorder object
      RECORDER until stopped or paused by the STOP or PAUSE method.
 
      Given the optional argument LENGTH, record for LENGTH seconds.
 
  -- : recordblocking (RECORDER, LENGTH)
      Record audio with blocking (synchronous I/O).
 
      The length of the recording in seconds (LENGTH) must be specified.
 
  -- : pause (RECORDER)
      Pause recording with audiorecorder object RECORDER.
 
  -- : resume (RECORDER)
      Resume recording with the paused audiorecorder object RECORDER.
 
  -- : stop (RECORDER)
      Stop the audiorecorder object RECORDER and clean up any audio
      streams.
 
  -- : isrecording (RECORDER)
      Return true if the audiorecorder object RECORDER is currently
      recording audio and false otherwise.