Хелп, а хелп, что такое startPosition в sound.extract?

startPosition:Number (default = -1) — The sample at which extraction begins. If you don't specify a value, the first call to Sound.extract() starts at the beginning of the sound; subsequent calls without a value for startPosition progress sequentially through the file. – был ответ.

По мне так нифига не понятно.
И лишь метод научного тыка рассказал мне как с этим работать:

var EXTRACT : Number = 1024;
var snd:Sound = new Sound(new URLRequest("1.mp3"));
var ch:SoundChannel = snd.play();
var bytes : ByteArray = new ByteArray();
snd.extract(bytes, EXTRACT,(ch.position)*44.1);

This entry was posted in text. Bookmark the permalink.

3 Responses to Хелп, а хелп, что такое startPosition в sound.extract?

Leave a Reply

Your email address will not be published. Required fields are marked *