You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi,
i have added library into gradle and also call load loadFFMpegBinary() function which is correctly loaded , now i am using below code,
`private void execFFmpegBinary(final String[] command) {
try {
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() { @OverRide public void onFailure(String s) {
Log.d(TAG, "FAILED with output : " + s);
Toast.makeText(MainActivity.this, "failed output "+s, Toast.LENGTH_SHORT).show();
} @OverRide
public void onSuccess(String s) {
Log.d(TAG, "SUCCESS with output : " + s); //Perform action on success
Toast.makeText(MainActivity.this, "succcess output "+s, Toast.LENGTH_SHORT).show();
} @OverRide
public void onProgress(String s) {
Log.d(TAG, "progress : " + s);
hi,
i have added library into gradle and also call load loadFFMpegBinary() function which is correctly loaded , now i am using below code,
`private void execFFmpegBinary(final String[] command) {
try {
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
@OverRide public void onFailure(String s) {
Log.d(TAG, "FAILED with output : " + s);
Toast.makeText(MainActivity.this, "failed output "+s, Toast.LENGTH_SHORT).show();
}
@OverRide
public void onSuccess(String s) {
Log.d(TAG, "SUCCESS with output : " + s); //Perform action on success
Toast.makeText(MainActivity.this, "succcess output "+s, Toast.LENGTH_SHORT).show();
}
@OverRide
public void onProgress(String s) {
Log.d(TAG, "progress : " + s);
but in this function what is command for adding Text or Audio to videoview
The text was updated successfully, but these errors were encountered: