The FFmpeg instruction inserts multiple MP3 into the specified file

Multi-segment MP3 is synthesized into a fixed background sound

I need to insert N pieces of MP3 files into a fixed background MP3. Small pieces of MP3 are recorded according to video subtitles, so the number is uncertain. Now I need to reinsert all recorded MP3 files into a fixed MP3 file with only background sound but no voice. Because the subtitles are spaced, I also need to insert these recorded short MP3 delays at the corresponding time. Does anyone know how to write this instruction? What if it is a for loop to execute?

related codes

-I E:/QQ/Images/383670418/FileRecv/MobileFile/back.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/01.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/02.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/01.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/02.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/01.mp3
-I Epura / QQ/Images/383670418/FileRecv/MobileFile/02.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/01.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/02.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/01.mp3
-I E:/QQ/Images/383670418/FileRecv/MobileFile/02.mp3

-filter_complex
"[1] adelay=4000 | 4000 [del1],
[2] adelay=6000 | 6000 [del2],
[3] adelay=8000 | 8000 [del3],
[4] adelay=10000 | 10000 [del4],
[5] adelay=12000 | 12000 [del5],
[6] adelay=14000 | 14000 [del6],
[7] adelay=16000 | 16000 [del7],
[8] adelay=18000 | 18000 [del8],
[9] adelay=20000 | 20000

-f mp3 remix.mp3

above is my own instruction code, which explains and simulates 10 MP3 to insert and synthesize, but performs the error report.

Apr.09,2021
Menu