RxFFmpeg
RxFFmpeg copied to clipboard
请问如何去掉视频的背景音乐?
请问如何去掉视频的背景音乐? 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); 这是我使用的参数,但是程序崩溃?