2

How to apply echo effect on a video (sound) using ffmpeg. Please advice me ffmpeg command for the same.

2

1 Answer 1

6

ffmpeg does have an echo filter

Usage is

ffmpeg -i input.mp4 -map 0 -c:v copy -af aecho=0.6:0.3:1000:0.5 output.mp4

The four parameters specified, separated by colons, are

in_gain

Set input gain of reflected signal. Default is 0.6.

out_gain

Set output gain of reflected signal. Default is 0.3.

delays

Set list of time intervals in milliseconds between original signal and reflections separated by ’|’. Allowed range for each delay is (0 - 90000.0]. Default is 1000.

decays

Set list of loudnesses of reflected signals separated by ’|’. Allowed range for each decay is (0 - 1.0]. Default is 0.5.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .