<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
&nbsp;wrote:
<blockquote cite="midfe12de8505031007396072e292@mail.gmail.com"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">What I have to do is grab from the tv capture card to filename.avi, and
while it's still grabbing from the
tv card, run mencoder against filename.avi to also produce an identical
file at a lower bitrate.  My
problem is that the second mencoder runs faster than real time, catches
up with the end of the file,
and then exits while the primary encode is still running.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
What about using pipes and tee, something like this (I cannot test
this as I currently have no Linux available):

# make a named pipe
mkfifo testfilename.avi

# start capturing
captureprog | tee testfilename.avi | mencoder settings-for-high-quality
cat testfilename.avi | mencoder settings-for-low-quality

tee splits the input from the capturing program and writes it to both
stdout and the named pipe. I think something like this should work,
but I am not shure if mencoder supports encoding from stdin :-)

  </pre>
</blockquote>
Interesting..&nbsp; mencoder _is_ the captureprog though...<br>
<br>
J.<br>
<br>

<DIV><STRONG></STRONG>&nbsp;***********************************************************<BR>The 
information in this e-mail is confidential and may be legally privileged.<BR>It 
is intended solely for the addressee. Access to this e-mail by anyone else<BR>is 
unauthorised. If you are not the intended recipient, any disclosure,<BR>copying, 
distribution, or any action taken or omitted to be taken in reliance<BR>on it, 
is prohibited and may be unlawful.<BR>Please note that emails to, from and 
within RTÉ may be subject to the Freedom<BR>of Information Act 1997 and may be 
liable to 
disclosure.<BR>************************************************************<BR></DIV>
</body>
</html>