作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是新来的。刚制作了两页音板。它的工作很棒。问题是我想提供将声音另存为铃声/通知的功能。没有可用的as3中的示例。请帮忙!
最佳答案
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();
}
关于actionscript-3 - air应用程序AS3:将声音另存为铃声/通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5770673/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!