1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- apply from: '../../common.gradle'
- android {
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- }
- dependencies {
- //implementation 'com.danikula:videocache:2.7.1'
- //混音
- implementation 'com.github.piasy:AudioMixer:1.0.3'
- //转码
- api 'com.arthenica:mobile-ffmpeg-full:4.4'
- }
|