1

I have a bunch of audio streams, i want to overlay them all on each other and make one final stream audio stream. This is how it would look visually

So in the final stream, it would be like all of the previous audio streams are playing together. How may i accomplish this?

domaxon
  • 11
  • 1
  • ffmpeg is great for audio/video processing stuff. – Marc May 09 '22 at 20:25
  • would it work for live audio streams? – domaxon May 10 '22 at 07:25
  • 1
    Works afaik only with files on the fs or with one input stream over stdin. But feel free to search for "multimedia frameworks" There are more than enough solutions to work with multimedia data. One of them can handle multiple input streams (mux/demux as keywords) Another solution could be to work with fifo/named pipes as input files and write the stream data there. `ffmepg -i ./pipe1 -i ./pipe2 -i ./pipeN` etc. pp. Quick search: https://localcoder.org/multiple-named-pipes-in-ffmpeg perhaps there is something useful for you in it. – Marc May 10 '22 at 07:46
  • Found some strange attempt with multiple input pipes: https://stackoverflow.com/q/72176714/5781499 Perhaps you can do the same – Marc May 10 '22 at 08:04

0 Answers0