excute probe cmd with synchronization

excute probe cmd with synchronization
pull/166/head
xufulong 4 years ago
parent 98142a2fd3
commit 3cbaff4adf
  1. 9
      app/src/main/java/com/frank/ffmpeg/FFmpegCmd.java

@ -107,6 +107,15 @@ public class FFmpegCmd {
}).start();
}
/**
* execute probe cmd with synchronization
*
* @param commands commands
*/
public static String executeProbeSynchronize(final String[] commands) {
return handleProbe(commands);
}
private native static int handle(String[] commands);
private native static int fastStart(String inputFile, String outputFile);

Loading…
Cancel
Save