ffmpeg-android-java icon indicating copy to clipboard operation
ffmpeg-android-java copied to clipboard

FFMPEG altering text align property

Open Anmolk22 opened this issue 7 years ago • 1 comments

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
    }

`

Anmolk22 avatar Mar 18 '18 10:03 Anmolk22

I have the same problem. Have you found any solutions? - Commenting out the loadBinary-Part didn't work for me.

WebDirigent avatar Aug 09 '19 04:08 WebDirigent