com.tuneology.avm.recorder
Interface AudioRecorder

All Superinterfaces:
MediaRecorder
All Known Implementing Classes:
EsdRecorder, NativeRecorder, ALSARecorder

public interface AudioRecorder
extends MediaRecorder

This class represents a digital audio recorder.

Version:
$Id: AudioRecorder.java,v 1.2 2003/02/24 01:41:38 xnarf Exp $
Author:
Fran Taylor

Method Summary
 int getChannels()
           
 int getDataFormat()
           
 int getRate()
           
 int getStreamFormat()
           
 void setChannels(int c)
           
 void setDataFormat(int fmt)
           
 void setRate(int r)
           
 void setStreamFormat(int fmt)
           
 
Methods inherited from interface com.tuneology.avm.recorder.MediaRecorder
close, getName, record, stop
 

Method Detail

setDataFormat

public void setDataFormat(int fmt)
                   throws java.io.IOException

getDataFormat

public int getDataFormat()

setStreamFormat

public void setStreamFormat(int fmt)
                     throws java.io.IOException

getStreamFormat

public int getStreamFormat()

setRate

public void setRate(int r)
             throws java.io.IOException

getRate

public int getRate()

setChannels

public void setChannels(int c)
                 throws java.io.IOException

getChannels

public int getChannels()