Android端基于FMOD/SoundTouch的简单音频变声解决方案。
- FmodSound库提供了基于FMOD的7种变声方案。
- SoundTouch库提供了音调&变速设置的变声方案。
- SoundCoding库提供了
AMR<-->PCM<-->WAV
互转方案。
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
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'
}
Copyright [2022] [DeMon]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.