<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
It doesn't look like there's any difference. As an experiment, I tried
changing it to always set the level to 4, but that still didn't work.
Apparently, the problem lies somewhere else or I missed something.<br>
<br>
I should also note that this is the line I'm using to transcode a video:<br>
<br>
#transcode{vcodec=mp2v,vb=8192,width=1920,height=1080,canvas-width=1920,canvas-height=1080,canvas-aspect=16:9}:gather:standard{mux=ts,access=udp,dst=239.255.1.1}<br>
<br>
This doesn't work under the Qt4 interface either. For some reason, it
says it's streaming, but it doesn't.<br>
<br>
-Brian<br>
<br>
Christophe Massiot wrote:
<blockquote cite="mid:20071115154236.GA534@via.ecp.fr" type="cite">
<pre wrap="">On Wed, Nov 14, 2007, Brian C. Wiles wrote:
</pre>
<blockquote type="cite">
<pre wrap="">I finally figured out the source of my video streaming problem. For
some reason, it works under vlc-0.8.6c, but not under 0.9.0-svn.
In modules/codec/ffmpeg/encoder.c, starting at line 384, there is this
chunk of code:
p_context->width = p_enc->fmt_in.video.i_width;
p_context->height = p_enc->fmt_in.video.i_height;
if( p_enc->fmt_out.i_codec == VLC_FOURCC('m', 'p', '2', 'v')
&& (p_context->width > 720 || p_context->height > 576) )
p_context->level = 4; /* High level */
</pre>
</blockquote>
<pre wrap=""><!---->
What's the difference between 0.8.6c and 0.9.0-svn in those lines ?
</pre>
</blockquote>
</body>
</html>