Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: piping sox to oggenc (Read 8919 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

piping sox to oggenc

Hi everybody,

mixing file1 with file2 into file3 works good with the following

Code: [Select]
sox file1.wav file2.wav -m file3.wav


but cannot pipe directly to oggeng

Code: [Select]
sox file1.wav file2.wav -m -t wav - | oggenc - file3.ogg


any help will be appreciated

piping sox to oggenc

Reply #1
Hi everybody,

mixing file1 with file2 into file3 works good with the following

Code: [Select]
sox file1.wav file2.wav -m file3.wav


but cannot pipe directly to oggeng

Code: [Select]
sox file1.wav file2.wav -m -t wav - | oggenc - file3.ogg


any help will be appreciated


SOLVED:

Code: [Select]
sox -m file1.wav file2.wav -t .wav - | oggenc - -o file3.ogg