please update to FFmpeg JavaCV 4.0 with arm64 & x86_64 support
Closed this issue · 2 comments
anonym24 commented
please update to FFmpeg JavaCV 4.0 with arm64 & x86_64 support
anonym24 commented
CrazyOrr commented
Hi, @anonym24
64-bit support has been provided by JavaCV, you can configure dependencies as follows:
dependencies {
...
def javacvVersion = '1.4.2'
def ffmpegVersion = '4.0.1'
compile(group: 'org.bytedeco', name: 'javacv-platform', version: javacvVersion) {
exclude group: 'org.bytedeco.javacpp-presets'
}
compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: "${ffmpegVersion}-${javacvVersion}"
compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: "${ffmpegVersion}-${javacvVersion}", classifier: 'android-arm' // for 'armeabi-v7a'
compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: "${ffmpegVersion}-${javacvVersion}", classifier: 'android-arm64' // for 'arm64-v8a'
}