-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Video is green color using avutil.AV_PIX_FMT_NV21 format #42
Comments
Confirmed this bug. |
@CrazyOrr Using the above version with other Gradle dependencies give me an Unsatisfied link error Caused by: java.lang.UnsatisfiedLinkError: org.bytedeco.javacpp.avutil |
Try this. |
Try the latest version of JavaCV and ffmpeg, with 64-bit support, has this issue fixed already: 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'
} |
Tried the latest version of JavaCV and ffmpeg, with 64-bit support, But problem remaining. |
setting the pixel format:
build.gradle
Tried the following too, but no luck:
1.
2.
The text was updated successfully, but these errors were encountered: