Re: QAAC: discussion, questions, feature requests, etc.
Is it possible to use 2 pipes with QAAC and FFMPEG?
I was trying to do something like this:
ffmpeg.exe -i test.mkv -f wav - | qaac.exe - -o - | ffmpeg.exe -i test.mkv -i - -map 0:v -map 0:s -map 1:a -c:v copy -c:s copy -c:a copy test_aac.mkv
But it's not working.
The obvious workaround is to write the AAC to a temp file and mux it in a second step with the MKV.
But I was wondering if I could avoid the use of the temp file.