#1 Process the beep to make it 5 seconds long:
ffmpeg -i beep.mp3 -af apad -t 5 beep.wav
#2 Mix with the other audio
ffmpeg -i main.mp3 -filter_complex "amovie=beep.wav:loop=0,asetpts=N/SR/TB[beep];
[0][beep]amix=duration=shortest,volume=2" out.mp3
loop=0
makes the input loop indefinitely. The asetpts is to make the timestamps of the loop continuous.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…