|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectddf.minim.Controller
ddf.minim.AudioSnippet
public class AudioSnippet
| Field Summary |
|---|
| Fields inherited from class ddf.minim.Controller |
|---|
BALANCE, GAIN, MUTE, PAN, SAMPLE_RATE, VOLUME |
| Constructor Summary | |
|---|---|
AudioSnippet(AudioRecording rec)
Deprecated. |
|
| Method Summary | |
|---|---|
void |
close()
Deprecated. Closes the snippet so that any resources it is using can be released. |
void |
cue(int millis)
Deprecated. Sets the position to millis milliseconds from
the beginning. |
AudioMetaData |
getMetaData()
Deprecated. Returns the meta data for this. |
boolean |
isLooping()
Deprecated. Returns true if this is currently playing and has more than one loop left to play. |
boolean |
isPlaying()
Deprecated. Returns true if this currently playing. |
int |
length()
Deprecated. Returns the length of the sound in milliseconds. |
void |
loop()
Deprecated. Sets looping to continuous. |
void |
loop(int n)
Deprecated. Sets this to loop num times. |
int |
loopCount()
Deprecated. Returns the number of loops left to do. |
void |
pause()
Deprecated. Pauses playback. |
void |
play()
Deprecated. Starts playback from the current position. |
void |
play(int millis)
Deprecated. Starts playback millis from the beginning. |
int |
position()
Deprecated. Returns the current position of the "playhead" (ie how much of the sound has already been played) |
void |
rewind()
Deprecated. Rewinds to the beginning. |
void |
setLoopPoints(int start,
int stop)
Deprecated. Sets the loop points used when looping. |
void |
skip(int millis)
Deprecated. Skips millis from the current position. |
| Methods inherited from class ddf.minim.Controller |
|---|
balance, gain, getBalance, getControl, getControls, getGain, getPan, getVolume, hasControl, isMuted, mute, pan, printControls, setBalance, setGain, setPan, setVolume, shiftBalance, shiftGain, shiftPan, shiftVolume, unmute, volume |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AudioSnippet(AudioRecording rec)
| Method Detail |
|---|
public void play()
Playable
play in interface Playablepublic void play(int millis)
Playablemillis from the beginning. If this was previous set to loop,
looping will be disabled.
play in interface Playablepublic void pause()
Playable
pause in interface Playablepublic void rewind()
Playable
rewind in interface Playablepublic void loop()
Playable
loop in interface Playablepublic void loop(int n)
Playablenum times. If this is already playing,
the position will not be reset to the beginning.
If this is not playing, it will start playing.
loop in interface Playablen - the number of times to looppublic int loopCount()
Playable
loopCount in interface Playablepublic int length()
Playable
length in interface Playablepublic int position()
Playable
position in interface Playablepublic void cue(int millis)
Playablemillis milliseconds from
the beginning. This will not change the playstate. If an error
occurs while trying to cue, the position will not change.
If you try to cue to a negative position or try to a position
that is greater than length(), the amount will be clamped
to zero or length().
cue in interface Playablemillis - the position to place the "playhead"public void skip(int millis)
Playablemillis from the current position. millis
can be negative, which will make this skip backwards. If the skip amount
would result in a negative position or a position that is greater than
length(), the new position will be clamped to zero or
length().
skip in interface Playablemillis - how many milliseconds to skip, sign indicates directionpublic boolean isLooping()
Playable
isLooping in interface Playablepublic boolean isPlaying()
Playable
isPlaying in interface Playablepublic void close()
public AudioMetaData getMetaData()
Playable
getMetaData in interface Playable
public void setLoopPoints(int start,
int stop)
Playable
setLoopPoints in interface Playablestart - the start of the loop in millisecondsstop - the end of the loop in milliseconds
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||