View Single Post
Old 20th September 2018, 19:40   #12  |  Link
Revan654
Registered User
 
Revan654's Avatar
 
Join Date: May 2004
Posts: 324
Quote:
Originally Posted by martynuzza View Post
mmmmmmmm what?

hmm...which parameters? i can't understand how xvid_encraw get the parameters of pass1 to create final pass2



For example, bitrate at 1800kbps, is correct the syntax?
It's been ages since I actually used XviD, I'm a bit rusty when using XviD.

It should be something like this

-pass1 src.pass
-pass2 src.pass -avi dst.avi
or with macro
-pass2 src.pass -avi "%encoder_out_file%"

Only the second pass requires the -avi and .avi file location output.

The encoder will pull in the .pass file which contains all the needed information. First pass writes to .pass and second pass reads the .pass.

------

You can also use ffmpeg XviD as well, with does most of the work for you already. It has 2-pass mode built in and will add the proper flags for the passes.

Last edited by Revan654; 20th September 2018 at 19:43.
Revan654 is offline   Reply With Quote