On Sun, 5 Jan 2003, Gregoire Favre wrote:

> On Sun, Jan 05, 2003 at 12:49:12PM +0100, Andrew Stevens wrote:
> 
> > Sounds like your using an older version.  There was a bug where the size for 
> > -f 8 was effectively hard-wired to 2GB.  
> > 
> > This is certainly fixed in the development version and I think I also merged 
> > in the (1 line) fix into the 1.6.1 stable release.
> 
> Well, no, mplex gives me:
> 
> mjpegtools mplex version 1.6.1
> Usage: mplex [params] -o <output filename pattern> <input file>...
> 
> Prior to that, I was using version 1.6.0 with same result.
> 
> Thank you for your answer ;-)
> 
> Please keep CC to me as I am not on this ml!!!
> 
>       Grégoire

Here is what I did to mplex/multplex.cc to get -S working..
(this patch is for 1.6.0, but its is essentially a 1 line
change easily applied by hand on other versions if needed..)

--- multplex.cc.old     Mon Apr 29 12:30:56 2002
+++ multplex.cc Sun Nov 24 13:35:59 2002
@@ -271,7 +271,9 @@
         timestamp_iframe_only = true;
         video_buffers_iframe_only = true;
                vbr = true;
-        opt_max_segment_size = 2000*1024*1024;
+        // opt_max_segment_size = 2000*1024*1024;
+        // changed to activate the -S option 
+        if(opt_max_segment_size <= 0) opt_max_segment_size = 2000*1024*1024;
         opt_multifile_segment = true;
         break;
                         
Selva



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mjpeg-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to