所以你需要一个回调函数,一旦切割完成就会被调用。这样您就可以启动共享意图。
要实现这种行为,您可以考虑使用这样的界面。
public interface CuttingCompleted {
void onCuttingCompleted(String[] vidUris);
}
现在使用AsyncTask 在后台线程中进行切割,当它完成时将结果传递给回调函数以进一步执行您的代码流。
public class CuttingVideoAsyncTask extends AsyncTask<Void, Void, String[]> {
private final Context mContext;
public CuttingCompleted mCuttingCompleted;
CuttingVideoAsyncTask(Context context, CuttingCompleted listener) {
// Pass extra parameters as you need for cutting the video
this.mContext = context;
this.mCuttingCompleted = listener;
}
@Override
protected String[] doInBackground(Void... params) {
// This is just an example showing here to run the process of cutting.
String[] complexCommand = {"-i", yourRealPath, "-ss", "" + startMs, "-t", ""+leng , dest.getAbsolutePath()};
execFFmpegBinary(complexCommand);
return complexCommand;
}
@Override
protected void onPostExecute(String[] vidUris) {
// Pass the result to the calling Activity
mCuttingCompleted.onCuttingCompleted(vidUris);
}
@Override
protected void onCancelled() {
mCuttingCompleted.onCuttingCompleted(null);
}
}
现在,您需要从您的Activity 实现接口,以便在切割过程完全完成时开始您的共享意图。
public class YourActivity extends Activity implements CuttingCompleted {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ... Other code
new CuttingVideoAsyncTask(this, this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
@Override
public void onCuttingCompleted(String[] vidUris) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, vidUris);
shareIntent.setType("video/*");
startActivity(shareIntent);
}
}