I am muting a section of the audio file as below. How can I add some other audio to the muted section of the audio using ffmpeg?
FFmpeg ffmpeg = new FFmpeg("ffmpeg");
FFprobe ffprobe = new FFprobe("ffprobe");
FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
FFmpegProbeResult in = ffprobe.probe("Input.wav");
FFmpegBuilder builder = new **FFmpegBuilder().setInput(in).addOutput("Output.wav").setAudioFilter("volume=enable='between(t,94,123)':volume=0").done();**
executor.createJob(builder).run();
The convenient way to do this is to trim the source and concat with the new audio.