[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: Pipes: is this possible?



On Fri, Apr 30, 1999 at 02:20:38PM -0400, George Lenzer wrote:
> I have a situation where I would like to record audio into my computer using
> something like 'yarec' at a shell.  I would like to simultaneously pipe the
> output to an MP3 encoder like 'encoder' or 'bladeenc'.  Is this possible?
> 
> Here is what I though the command would look like:
> 
> 'yarec > temp.wav < bladeenc'

The redirect pipes '<', '>' are for files.  If you want to pipe
stdin/stdout through a program, use this pipe '|'

yarec < temp.wav | bladeenc

-- 
Steve Borho <sborho ststech com>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]