[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: Pipes: is this possible?
- From: Steve Borho <sborho ststech com>
- To: redhat-list redhat com
- Subject: Re: Pipes: is this possible?
- Date: Fri, 30 Apr 1999 14:16:55 -0500
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]