位置:首頁 > 軟件操作教程 > UI設(shè)計(jì)軟件 > Adobe Dreamweaver > 問題詳情

嵌入音頻文件的方法有哪些?

提問人:周麗平發(fā)布時(shí)間:2021-05-27

在flash文檔中嵌入音頻文件的兩種方法,使其可以在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();

繼續(xù)查找其他問題的答案?

回復(fù)(0)