https://github.com/zhs007/amras3
amr codec with as3
https://github.com/zhs007/amras3
Last synced: 22 days ago
JSON representation
amr codec with as3
- Host: GitHub
- URL: https://github.com/zhs007/amras3
- Owner: zhs007
- License: mit
- Created: 2015-09-15T08:06:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-18T08:05:21.000Z (almost 11 years ago)
- Last Synced: 2025-02-22T21:14:18.702Z (over 1 year ago)
- Language: C
- Size: 375 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 基于actionscript的AMR编码解码器
### 功能
让flash能支持AMR文件的编码解码。
使用了3GPP的C核心AMR解码器代码 **[(AMR) Speech Codec - 3GPP][1]** ,通过 **[CrossBridge][2]** 编译成swc做核心解码功能。
关于如何播放AMR,可以参考另外一个项目 **[imspeechas3][3]**
### 适用性
1. 编码器的输入流是纯PCM数据流,也就是不带WAV头的,PCM数据流的采样率只能是8khz的,声道可以是单声道/双声道,bps可以是8位/16位。
2. 解码器的输出流也是纯PCM数据流,始终是8khz、单声道、16位。
[1]: http://www.3gpp.org/DynaReport/26104.htm
[2]: http://crossbridge.io/
[3]: https://github.com/zhs007/imspeechas3