登录

去注册 忘记密码?

登录

注册

去登录

  • 扫码关注公众号
  • 发送“我爱安卓
  • 即可获取验证码

注册

解锁回答区域

  • 扫码关注公众号
  • 发送“我爱安卓

若你登陆,将永久解锁;
若未登录,仅本机解锁。

解锁回答区域

获取注册验证码

  • 扫码关注公众号
  • 发送“我爱安卓
  • 即可获取验证码

Android端FMOD&SoundTouch音频变声解决方案

iDeMonnnnnn   2021-07-05 22:03   收藏

DeMon_Sound

Android端基于FMOD/SoundTouch的简单音频变声解决方案。

  1. FmodSound库提供了基于FMOD的7种变声方案。
  2. SoundTouch库提供了音调&变速设置的变声方案。
  3. SoundCoding库提供了AMR<-->PCM<-->WAV互转方案。

开始使用

使用文档

WIKI

添加依赖
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

latest_version

dependencies {
//使用FMOD变声,请添加此库
implementation 'com.github.iDeMonnnnnn.DeMon_Sound:FmodSound:$latest_version'
//使用SoundTouch变声,请添加此库
implementation 'com.github.iDeMonnnnnn.DeMon_Sound:SoundTouch:$latest_version'
//使用视频转码功能,请添加此库
implementation 'com.github.iDeMonnnnnn.DeMon_Sound:SoundCoding:$latest_version'
}
示例代码

App示例代码

Apk体验

截图



MIT License

Copyright (c) 2021 DeMon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

项目地址:https://github.com/iDeMonnnnnn/DeMon_Sound