ffmpeg-android-java
ffmpeg-android-java copied to clipboard
FFMPEG altering text align property
After calling loadBinary method in the Application class. The text throughout the application gets aligned to the left which overwrites all the existing property in the application. Please suggest after commenting it seems to be working fine. ` FFmpeg ffmpeg = FFmpeg.getInstance(this); try { ffmpeg.loadBinary(new LoadBinaryResponseHandler() {
@Override
public void onStart() {}
@Override
public void onFailure() {}
@Override
public void onSuccess() {}
@Override
public void onFinish() {
Log.d("FFMPEG", "Loaded Successfully");
}
});
} catch (FFmpegNotSupportedException e) {
// Handle if FFmpeg is not supported by device
}
`
I have the same problem. Have you found any solutions? - Commenting out the loadBinary-Part didn't work for me.