org.videolan.jvlc
Interface AudioIntf

All Known Subinterfaces:
JLibVLC
All Known Implementing Classes:
Audio

public interface AudioIntf


Method Summary
 boolean getMute()
           
 int getVolume()
           
 void setMute(boolean value)
           
 void setVolume(int volume)
           
 void toggleMute()
          Toggles mute
 

Method Detail

getMute

boolean getMute()
                throws VLCException
Returns:
True if input is currently muted.
Throws:
VLCException

setMute

void setMute(boolean value)
             throws VLCException
Parameters:
value - If true, then the input is muted.
Throws:
VLCException

toggleMute

void toggleMute()
                throws VLCException
Toggles mute

Throws:
VLCException

getVolume

int getVolume()
              throws VLCException
Returns:
The volume level
Throws:
VLCException

setVolume

void setVolume(int volume)
               throws VLCException
Parameters:
volume - The volume level (0-200) to set.
Throws:
VLCException