I'm trying to concat two audiofiles using ffmpeg-python. I've got the proper result with the direct use of ffmpeg in the CLI. The following command gave the proper result
.\ffmpeg -f concat -safe 0 -i input.txt -codec copy output.mp4
But now I'm trying to investigate whether the Python wrapper can provide the solution without running ffmpeg directly from python script using subprocess. It's possible to trim audiofiles, change volumes and make many other things with the use of ffmpeg-python. But for the concatenating audiofiles I've failed to found a solution.