<!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">
Ok the encoding works, but I am encountering difficulties under Windows.<br>
It's vital for me that these files work with Direct Show as they are
going to be transcoded using<br>
Windows Media Encoder and Helix Producer.<br>
<br>
I have the XviD codec installed under windows, but the files will not
render, Windows reports<br>
that the codec is not installed.<br>
<br>
I have another XviD file that I downloaded, which seems to have been
created with VirtualDub under<br>
windows, and when I use THAT file as the input into mencoder instead of
mencoder as the capture<br>
program, the resulting XviD AVI from mencoder WILL render under windows
in windows media player.<br>
<br>
Also the GSpot codec identifying program reports _identical_ file
attributes for the virtualdub-&gt;mencoder<br>
file as it does for the mencoder_capture-&gt;mencoder file.<br>
<br>
Thoughts? <br>
<br>
Cheers,<br>
Jonathan.<br>
<br>
<br>
D Richard Felker III wrote:
<blockquote cite="mid20050311050855.GX24659@brightrain.aerifal.cx"
 type="cite">
  <pre wrap="">On Thu, Mar 10, 2005 at 09:24:02PM +0200, Oded Shimon wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">On Thursday 10 March 2005 17:39, Martin Ankerl wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap=""># start capturing
captureprog | tee testfilename.avi | mencoder settings-for-high-quality
cat testfilename.avi | mencoder settings-for-low-quality
      </pre>
    </blockquote>
    <pre wrap="">Whats the cat for?... That's redundant

This is very hackish, but it does work and I don't see a better solution.
You said your capture program is MEncoder, so:

mkfifo input output1
mencoder tv:// -endpos 30:00 -o input -ovc raw -oac pcm &amp;
cat input | tee output1 | mencoder - -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=100000 -oac pcm -o goodquality.avi &amp;
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Do NOT use cat here. All it will do is increase cpu usage. Instead:
tee output1 &lt; input | mencoder - -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=100000 -oac pcm -o goodquality.avi &amp;

  </pre>
  <blockquote type="cite">
    <pre wrap="">Change options as necessary obviously.
Do NOT use mencoder for capturing directly to stdout and then to tee.
MEncoder outputs too much garbage on stdout and on stderr.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Very true.. :)

Rich

_______________________________________________
MEncoder-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:MEncoder-users@mplayerhq.hu">MEncoder-users@mplayerhq.hu</a>
<a class="moz-txt-link-freetext" href="http://mplayerhq.hu/mailman/listinfo/mencoder-users">http://mplayerhq.hu/mailman/listinfo/mencoder-users</a>

  </pre>
</blockquote>
<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>