Flash Player里播放聲音的方法

作者: toruo  2014-10-22 15:37 [查查吧]:uabf.cn

     如何在Flash Player里播放聲音?

  在Flash Player里播放聲音的兩種方法:

  1、建立 Sound 對象用 load() 方法加載外部的 mp3 來播放;

  2、讓 Sound 對象監(jiān)聽 sampleData 事件,這樣可以播放由程序動態(tài)生成的聲音,例如:

  下面的示例播放簡單的正弦波。

  var mySound:Sound = new Sound();

  function sineWaveGenerator(event:SampleDataEvent):void {

  for ( var c:int=0; c<8192; c++ ) {

  event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);

  event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);

  }

  }

  mySound.addEventListener(Event.SAMPLE_DATA,sineWaveGenerator);

  mySound.play();

       以上就是關(guān)于Flash Player里播放聲音的方法的介紹,希望對您有所幫助!

?
    發(fā)表評論

    醫(yī)療健康