2

我对此很陌生。刚做了一个两页的音板。它工作得很好。问题是我想提供将声音保存为铃声/通知的能力。没有关于如何在 as3 中执行此操作的示例。请帮忙!

4

1 回答 1

1
  • 使用以下方法录制声音:http ://www.bytearray.org/?p=1858

  • 编码为 mp3 使用:https ://github.com/kikko/Shine-MP3-Encoder-on-AS3-Alchemy

  • 将 mp3 数据保存到文件中:

     private function saveFile()
        {       
        // WRITE ID3 TAGS
    
        var sba:ByteArray = mp3Encoder.mp3Data;
        sba.position =  sba.length - 128
        sba.writeMultiByte("TAG", "iso-8859-1");
        sba.writeMultiByte("Microphone Test 1-2, 1-2      "+String.fromCharCode(0), "iso-8859-1");  // Title
        sba.writeMultiByte("jordansthings                 "+String.fromCharCode(0), "iso-8859-1");  // Artist           
        sba.writeMultiByte("Jordans Thingz Bop Volume 1  "+String.fromCharCode(0), "iso-8859-1");   // Album        
        sba.writeMultiByte("2010" + String.fromCharCode(0), "iso-8859-1");                          // Year
        sba.writeMultiByte("www.jordansthings.com         " + String.fromCharCode(0), "iso-8859-1");// comments
    
    
        sba.writeByte(57);                                                                      
        filePath = (File.applicationStorageDirectory.resolvePath("sound3.mp3")).url;
    
        // get the native path 
        var wr:File = new File(filePath);
        // create filestream 
        var stream:FileStream = new FileStream();
        //  open/create the file, set the filemode to write in order to save.
        stream.open( wr , FileMode.WRITE);
        // write your byteArray into the file. 
        stream.writeBytes ( sba, 0, sba.length );
        // close the file. 
        stream.close();
    
    }
    
于 2011-10-02T07:52:14.730 回答