play(playObj)
play(playObj, start)
play(playObj, [start end])
| Paramètre | Description |
|---|---|
| playObj | un objet audioplayer. |
| start | une valeur entière : premier échantillon à lire. |
| end | une valeur entière : dernier échantillon à lire. |
play lit un objet audioplayer.
signal = rand(2, 44100) - 0.5;
playObj = audioplayer(signal, 44100, 16)
play(playObj)
sleep(2)
delete(playObj)
playObj
| Version | Description |
|---|---|
| 1.0.0 | version initiale |