请问如何去掉视频的背景音乐?
Mrqjj opened this issue · 0 comments
Mrqjj commented
请问如何去掉视频的背景音乐?
cmdlist = new RxFFmpegCommandList();
cmdlist.append("-i");
cmdlist.append(context.getDataDir() + "/source.mp4");
cmdlist.append("-vcodec");
cmdlist.append("copy");
cmdlist.append("-an");
cmdlist.append(context.getDataDir() + "/1_frag_v");
RxFFmpegInvoke.getInstance().runCommand(cmdlist.build(), null);
这是我使用的参数,但是程序崩溃?