Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Video Encoding > MPEG-4 AVC / H.264

Reply
 
Thread Tools Search this Thread Display Modes
Old 5th September 2012, 11:24   #21  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
By the way, here is a paper from Loren Merrit about x264 rate control. I don't know how old it is but I suppose it still applies to the current implementation.

Edit:
Just checked, apparently it's from 2006.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 5th September 2012, 11:41   #22  |  Link
Makaveli84
Registered User
 
Join Date: Jun 2012
Posts: 71
Quote:
Originally Posted by Groucho2004 View Post
By the way, here is a paper from Loren Merrit about x264 rate control. I don't know how old it is but I suppose it still applies to the current implementation.

Edit:
Just checked, apparently it's from 2006.
Well, that document shows that the 2nd pass of a 2-pass encode is not in fact a simple CRF single pass..
Makaveli84 is offline   Reply With Quote
Old 5th September 2012, 14:30   #23  |  Link
detmek
Registered User
 
Join Date: Aug 2009
Posts: 463
CRF and 2pass mod do not produce bit-identical result. But the visual quality is the same when you watch video on your TV or monitor. If you do frame-by-frame comparisson you will notice the difference. One of the reasons for the difference is that, even in 2pass mod, x264 will not hit the exact bitrate. So, if your CRF 20 produces file with 3423kbs average bitrate and you use that bitrate in 2pass mod, you will not get video with average bitrate of 3423kbs but deviation will be less then 1%.
Direct auto is another option that makes a difference as it works a little bit different i 2pass mod.
But overall, difference in quality between CRF and coresponding 2pass mod will be less then 2%. And in my two tests 2pass gives 0-2% worse quality compared to CRF. I used SSIM to measure differences.
detmek is offline   Reply With Quote
Old 5th September 2012, 14:56   #24  |  Link
SassBot
Guest
 
Posts: n/a
Once again I will go back to Dark Shikari this time from another thread:

Quote:
Originally Posted by Chengbin View Post
If I want the highest quality encodes without time limit, is CRF better or 2 pass? Suppose I encode a video using CRF x, and it output a video that is 800MB, now I use 2 pass, and specify the size to 800, which way of encoding would provide higher quality?
Quote:
Originally Posted by Dark Shikari View Post
Neither.
Quote:
Originally Posted by Chengbin View Post
Oops, let me change that to which way of encoding between the 2 would create a better encode?
Quote:
Originally Posted by Dark Shikari View Post
Neither.
Quote:
Originally Posted by Chengbin View Post
So they're the same? 2 pass is only to hit a specific file size? I thought the first pass is to analyze the video file to see where to distribute the bits or something like that.
Quote:
Originally Posted by Dark Shikari View Post
CRF, 1pass, and 2pass all use the same bit distribution algorithm. 2-pass tries to approximate CRF by using the information from the first pass to decide on a constant quality factor. 1-pass tries to approximate CRF by guessing a quality factor over time and varying it to reach the target bitrate.
So if you don't want to believe Dark Shikari and waste your time doing 2-pass encodes with needless slow first passes for pretty much no gain in quality go ahead, but don't continue to spread misleading statements that then constantly have to be corrected. 2-pass is purely for wanting to hit specific sizes for your encodes as 1-pass CRF is for when you do not care about final size. 2-pass does not give you magical better quality. As detmek says the streams will not be bit-identical, which I didn't say they would be, but you will not see any perceptible quality difference between them assuming you have the exact same settings and they are equivalent size. If you are seeing noticeable differences even under those constraints then you need to report it as it is most likely a bug.

Last edited by SassBot; 5th September 2012 at 15:04.
  Reply With Quote
Old 5th September 2012, 15:15   #25  |  Link
SassBot
Guest
 
Posts: n/a
To drive this home more:

Quote:
Originally Posted by Dark Shikari View Post
CRF and 2-pass use the exact same bit distribution algorithm. If you do a CRF encode and a 2-pass encode at the same bitrate, the results will be nearly identical.

Hypothetically, there could be a bug in the 2-pass code that didn't show up in CRF, but outside of a hypothetical bug workaround, this is probably not a good suggestion.
Edit to add: Oops, that first post was about Xvid. Removed it.

Last edited by SassBot; 5th September 2012 at 15:21.
  Reply With Quote
Old 5th September 2012, 16:06   #26  |  Link
detmek
Registered User
 
Join Date: Aug 2009
Posts: 463
Quote:
Originally Posted by Dark Shikari View Post
CRF and 2-pass use the exact same bit distribution algorithm. If you do a CRF encode and a 2-pass encode at the same bitrate, the results will be nearly identical.

Hypothetically, there could be a bug in the 2-pass code that didn't show up in CRF, but outside of a hypothetical bug workaround, this is probably not a good suggestion.
Nearly identical. Main difference comes from the fact that you can not hit exact CRF with 2-pass mod.
So, in theory CRF and 2-pass are the same. In practice, there is a small difference in obtaind video. It it visible? If you compare frame-by-frame both files, yes.
Just try this:
Encode 1:
x264.exe --crf xx --preset xxxxx --tune ssim --ssim
Encode 2:
x264.exe --bitrate (from CRF encode) --pass 1 --tune ssim --ssim
x264.exe --bitrate (form CRF encode) --pass 2 --tune ssim --ssim
Compare bitrates, SSIM and images.
detmek is offline   Reply With Quote
Old 5th September 2012, 18:02   #27  |  Link
SassBot
Guest
 
Posts: n/a
Yes, "nearly identical" meaning there are differences that are so minor that no one will notice them. You are attempting to imply that Dark Shikari is stating more than he really did. Especially since I even posted him saying that neither 2-pass or CRF give better quality than the other repeatedly.

Quote:
Originally Posted by detmek View Post
It it visible?
To most people who don't obsessively frame-by-frame and zoom in the video to spot microscopic differences? No. If I use Avisynth to subtract the frames, then enhance and zoom to try to spot differences? Maybe.

Quote:
Originally Posted by detmek View Post
If you compare frame-by-frame both files, yes.
Which is a ridiculous standard to use and I'd even question that. Last night did a number of CRF vs 2-pass encodes to test and even single-framing there were almost no visible differences and they only really stood out when I zoomed in and over-enhanced the video to make any artifacts stand out. This also ignores the fact that Makaveli84 was stating it was visible during playback not when single framing which is highly unlikely outside of bugs.

Last edited by SassBot; 5th September 2012 at 18:08.
  Reply With Quote
Old 5th September 2012, 18:24   #28  |  Link
akupenguin
x264 developer
 
akupenguin's Avatar
 
Join Date: Sep 2004
Posts: 2,392
Quote:
Originally Posted by Makaveli84 View Post
if all the 1st pass is doing is determining the CRF argument to be used in the 2nd pass, why does it create such large (relatively speaking) .stats and .mbtreestats files, and why does it use them in the 2nd pass??
So that it doesn't have to recompute the frame type and mbtree decisions. 2nd pass would make exactly the same decisions, so there's no point in wasting cpu-time doing them all over again when you can just record the outcomes from the 1st pass. Also, you need data about the complexity of each frame in order to do VBV if that's enabled.

And the prediction of what CRF value would result in what filesize is imperfect, so 2pass adjusts the CRF slightly after observing any such misprediction. This again requires knowledge of what the bitrate distribution should have been on a per-frame level, not just the complexity of the movie as a whole. Incidentally, any such adjustment is a (very slight) detriment to the quality-per-bitrate of 2pass, but it's necessary in order to meet the target filesize.

Quote:
What's the precision of CRF's argument (n.xxxx)?
Floating-point, so you'll get non-identical results out to 7 significant digits. That said, some of the other computations that involve QP are performed in fixed-point, so you might consider the meaningful precision to be .001
akupenguin is offline   Reply With Quote
Old 5th September 2012, 18:50   #29  |  Link
Makaveli84
Registered User
 
Join Date: Jun 2012
Posts: 71
Sass, what about applying sharpness filters, slowing down effects, etc?? Does that not enhance the artifacts? What if I'd be making a sports video edit that requires slowing down a certain sequence and/or freezing a certain frame for effect or whatever.. I mean sometimes, one would care about even the smallest artifacts that are not visible at regular playback.
For example, the initial difference I was talking about was initially spotted with a moderate sharpness filter applied in MPC-HC playback on both encodes. With filtering off, I was able to spot the difference in freeze-frame. From then on, I was able to tell the difference at regular playback in that sequence with sole focus on the "artifacts area". That's because my eye was by then trained to catch that difference. But this is the whole point of blind testing. You can train as much as you want.
Again, this is very minor, and I'm sorry if my initial post implied that the difference was major. I only wanted to make the point that it was noticeable, but maybe I should've explained in more details.
Anyways, CRF is more than suitable most of the time, but in some cases, when editing and applying effects on videos, I'd like to achieve the best possible quality, even for single frames.
But even for that, I am unconvinced that 2-pass always yields better quality. I mean all that was posted here points to the fact that since 2-pass supposedly uses CRF for its 2nd pass, then there should not be even single-frame differences. However, CRF proponents always say that there is a slight difference that is not worth the extra time. Well, that should be subjective and up to the individual if it's worth it or not. But more importantly, detmek and Sass seem to be at odds regarding whether the 1% minimal difference affects single frame by frame comparisons or not. detmek says yes, Sass says no. Which is it? If 2nd pass is merely a single CRF pass that is not bit identical to CRF because of the impossible task of hitting an exact CRF or bitrate, then one would not expect this very minimal difference to be visible in frame by frame comparisons.
Finally, as an additional test, would encoding 2-pass first, then reading the obtained CRF form x264 logs and then encoding in CRF with the obtained value, would such a test produce bit-identical streams or at least a frame-by-frame match?

Last edited by Makaveli84; 5th September 2012 at 18:55.
Makaveli84 is offline   Reply With Quote
Old 5th September 2012, 19:00   #30  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Makaveli84 View Post
Anyways, CRF is more than suitable most of the time, but in some cases, when editing and applying effects on videos, I'd like to achieve the best possible quality, even for single frames.
But even for that, I am unconvinced that 2-pass always yields better quality. I mean all that was posted here points to the fact that since 2-pass supposedly uses CRF for its 2nd pass, then there should not be even single-frame differences. However, CRF proponents always say that there is a slight difference that is not worth the extra time. Well, that should be subjective and up to the individual if it's worth it or not. But more importantly, detmek and Sass seem to be at odds regarding whether the 1% minimal difference affects single frame by frame comparisons or not. detmek says yes, Sass says no. Which is it? If 2nd pass is merely a single CRF pass that is not bit identical to CRF because of the impossible task of hitting an exact CRF or bitrate, then one would not expect this very minimal difference to be visible in frame by frame comparisons.
Finally, as an additional test, would encoding 2-pass first, then reading the obtained CRF form x264 logs and then encoding in CRF with the obtained value, would such a test produce bit-identical streams or at least a frame-by-frame match?
You should just read akupenguin's post. I think it makes the difference between CRF and 2-pass very clear.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 5th September 2012, 19:04   #31  |  Link
Makaveli84
Registered User
 
Join Date: Jun 2012
Posts: 71
Quote:
Originally Posted by akupenguin View Post
So that it doesn't have to recompute the frame type and mbtree decisions. 2nd pass would make exactly the same decisions, so there's no point in wasting cpu-time doing them all over again when you can just record the outcomes from the 1st pass. Also, you need data about the complexity of each frame in order to do VBV if that's enabled.

And the prediction of what CRF value would result in what filesize is imperfect, so 2pass adjusts the CRF slightly after observing any such misprediction. This again requires knowledge of what the bitrate distribution should have been on a per-frame level, not just the complexity of the movie as a whole. Incidentally, any such adjustment is a (very slight) detriment to the quality-per-bitrate of 2pass, but it's necessary in order to meet the target filesize.


Floating-point, so you'll get non-identical results out to 7 significant digits. That said, some of the other computations that involve QP are performed in fixed-point, so you might consider the meaningful precision to be .001
First, thanks for your insights. I mean explaining in a way that an average user can understand instead of simply saying "take my word for it" always goes a long way in convincing such user.
Interestingly enough, your post not only implies that there is a very slight difference between 2-pass and CRF, but also that this difference is in CRF's favor. Am I correct?
Makaveli84 is offline   Reply With Quote
Old 5th September 2012, 19:08   #32  |  Link
Makaveli84
Registered User
 
Join Date: Jun 2012
Posts: 71
Quote:
Originally Posted by Groucho2004 View Post
You should just read akupenguin's post. I think it makes the difference between CRF and 2-pass very clear.
I just did.. But you personally said initially that you run a compressibility test before encoding in 2-pass mode. I'm a bit puzzled since you seem to be convinced that there is no need for that, yet you do it anyways?
Makaveli84 is offline   Reply With Quote
Old 5th September 2012, 19:52   #33  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Makaveli84 View Post
I just did.. But you personally said initially that you run a compressibility test before encoding in 2-pass mode. I'm a bit puzzled since you seem to be convinced that there is no need for that, yet you do it anyways?
I like to backup 2-3 movies to one BD-R. I run the compressibility test in order to get a rough idea of the required bitrate for each movie. Once I know that, I can combine the movies so they fit nicely on the medium.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 5th September 2012, 20:10   #34  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
Quote:
Originally Posted by Makaveli84 View Post
Sass, what about applying sharpness filters, slowing down effects, etc?? Does that not enhance the artifacts? What if I'd be making a sports video edit that requires slowing down a certain sequence and/or freezing a certain frame for effect or whatever.. I mean sometimes, one would care about even the smallest artifacts that are not visible at regular playback.
For example, the initial difference I was talking about was initially spotted with a moderate sharpness filter applied in MPC-HC playback on both encodes. With filtering off, I was able to spot the difference in freeze-frame. From then on, I was able to tell the difference at regular playback in that sequence with sole focus on the "artifacts area". That's because my eye was by then trained to catch that difference. But this is the whole point of blind testing. You can train as much as you want.
Again, this is very minor, and I'm sorry if my initial post implied that the difference was major. I only wanted to make the point that it was noticeable, but maybe I should've explained in more details.
Anyways, CRF is more than suitable most of the time, but in some cases, when editing and applying effects on videos, I'd like to achieve the best possible quality, even for single frames.
But even for that, I am unconvinced that 2-pass always yields better quality. I mean all that was posted here points to the fact that since 2-pass supposedly uses CRF for its 2nd pass, then there should not be even single-frame differences. However, CRF proponents always say that there is a slight difference that is not worth the extra time. Well, that should be subjective and up to the individual if it's worth it or not.
Not so fast. No one said that 2pass looks better than CRF, only that they are not bit-identical. The devs seem to suggest that CRF actually has a slight advantage, so 2pass "not being worth the extra time" is kind of an understatement.
Also: the time that goes into a second pass could be spend in better encoding or filtering, further increasing CRF's advantage.
sneaker_ger is offline   Reply With Quote
Old 5th September 2012, 22:22   #35  |  Link
Makaveli84
Registered User
 
Join Date: Jun 2012
Posts: 71
Quote:
Originally Posted by sneaker_ger View Post
Not so fast. No one said that 2pass looks better than CRF, only that they are not bit-identical. The devs seem to suggest that CRF actually has a slight advantage, so 2pass "not being worth the extra time" is kind of an understatement.
Also: the time that goes into a second pass could be spend in better encoding or filtering, further increasing CRF's advantage.
Not so fast. I know. That's why I said:
"But even for that, I am unconvinced that 2-pass always yields better quality. I mean all that was posted here points to the fact that since 2-pass supposedly uses CRF for its 2nd pass, then there should not be even single-frame differences."

Which is clearly stating that, although I still have some unanswered questions, I am doubting my initial hypothesis. I misspoke and said "always", when I meant to say "constantly", as in during a single encode. I still stand by the difference I saw, but maybe that was the exception in that video. Maybe that sequence or bunch of frames were the exception, and if I frame-by-frame compare both encodes, I'd find that the CRF encode is as good or better than the 2-pass one. But that would be almost impossible for a 2 hours long movie, so I might just accept and believe what seems to be the majority of posters that CRF is indeed enough.
As for the unsatisfactory CRF encoding I occasionally run into (that I thought can be bettered by 2-pass encoding at same bitrate), I think I have 2 options:

a) Increasing CRF rate, which was always a pain in the ass for me since Avidemux only allows integer increments, and that usually meant a 100 MB/movie hike on average. But now that I know I can specify more precise arguments for CRF, switching to another GUI or even CL will probably fix that.

b) Slower and better CRF encoding as sneaker_ger suggested, and I would welcome any suggestions on what settings to tweak. I am already using:

cabac=1 / ref=5 / me=umh / subme=9 / me_range=32 / psy_rd=1:0 / trellis=2 / bframes=3 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / open_gop=0 / scenecut=40 / intra_refresh=0 / rc_lookahead=60 / mbtree=1

Which are settings that already tend to favor quality over encoding time and file size. So any additional suggestions??
Makaveli84 is offline   Reply With Quote
Old 6th September 2012, 00:09   #36  |  Link
Audionut
Registered User
 
Join Date: Nov 2003
Posts: 1,281
Quote:
Originally Posted by Makaveli84 View Post
so I might just accept and believe what seems to be the majority of posters that CRF is indeed enough.
I tend not to believe anyone until I see results myself. But when the devs say "this is how it works", well, it's time to listen.
It's been said a million times, but I'll say it again, use CRF unless you need to hit a specific size.

Quote:
Originally Posted by Makaveli84 View Post
Which are settings that already tend to favor quality over encoding time and file size. So any additional suggestions??
--preset veryslow --merange 32
__________________
http://www.7-zip.org/

Last edited by Audionut; 6th September 2012 at 00:12.
Audionut is offline   Reply With Quote
Old 7th September 2012, 15:43   #37  |  Link
SassBot
Guest
 
Posts: n/a
Quote:
Originally Posted by Makaveli84 View Post
I just did.. But you personally said initially that you run a compressibility test before encoding in 2-pass mode. I'm a bit puzzled since you seem to be convinced that there is no need for that, yet you do it anyways?
As has been said before and I repeated, 2-pass is for hitting a deserved file size and nothing more. It will not give better quality. If you actually see noticeably worse quality between a 2-pass or CRF encode you are seeing a bug that should be reported.

Quote:
Originally Posted by Audionut View Post
I tend not to believe anyone until I see results myself. But when the devs say "this is how it works", well, it's time to listen.
It's been said a million times, but I'll say it again, use CRF unless you need to hit a specific size.
The main issue is the fact that it's been stated over and over and over many times that 2-pass and CRF do not either give you more quality. This is why people such as myself get frustrated since this questioned has repeatedly been answered. Also, even though he doesn't mean to intentionally, when he makes claims that 2-pass gives better quality than CRF when this is not possible outside of bugs it does nothing but further this misunderstanding. People will google 2-pass vs CRF come into the thread and see that statement and if it is not corrected they will then become misinformed.

Makaveli, I will apologize if I came across as rude and flippant in my posts. Misinformation like this continues to spread and confuse newbies so many people tend to get frustrated when people continue to state misleading facts even though I know you weren't meaning to mislead anyone by your statement. It's like when people come here asking about how to make their command string better and it's some weird string of redundant and sometimes contradictory commands that they've cobbled together by trying to turn ever knob or because they saw someone else using something similar. People misunderstand x264 enough as it is without long since debunked myths continuing to live on.

Last edited by SassBot; 7th September 2012 at 15:53.
  Reply With Quote
Old 15th September 2012, 23:57   #38  |  Link
hello_hello
Registered User
 
Join Date: Mar 2011
Posts: 4,823
My 2 cents worth......

I was involved in a similar 2 pass vs CRF discussion in another forum recently. I ran a couple CRF encodes and used the resulting bitrate for 2 passes. The first time I managed to get it wrong and specify the wrong bitrate but they were still only 30kbps different over a 2 and a half hour movie and 2 pass achieved the exact bitrate I requested. The second time I didn't mess up (started with a different CRF value the second time) and the bitrates were identical.

I ran the encodes side by side and under normal "playing" conditions, and even sitting close to the TV, CRF and 2 pass are identical. I also tried, at the suggestion of another poster, using ffdshow's on screen display to show the input bitrates as the videos progressed. Someone mentioned earlier in this thread that 2 pass makes slight adjustments as it progresses in order to achieve the requested bitrate and if the input bitrate being displayed by ffdshow is anything to go by, that's exactly what happens. I watched a large section of the video and for the first few minutes the bitrate being displayed by the 2 pass encode sat very constantly at around 30Kbps more than CRF. Then it got to a more complex section of the video where the bitrates climbed and fairly quickly the difference lessened until the bitrates were the same, then CRF took the lead by a small margin for a while.
I did notice that right at the end of the video (last minute or so of credits) the bitrate for the 2 pass encode climbed quite high compared to CRF. I guess it was playing catch-up trying to hit the requested bitrate before the video ended.

Comparing CRF and 2 pass frame by frame and looking for differences, there was no doubt in my mind no two frames were ever compressed the same way. Most of the time the differences were very small and if I added the source to the mix and compared all three it seemed to me any differences between 2 pass and CRF were just that... differences. There's no way I would say 2 pass or CRF compressed the frame "better" or even more accurately. Just different. I could at times say "well for this section of the frame 2 pass was more faithful to the source, over there CRF wins" etc, but that's frame by frame comparing sitting close to the TV and in terms of quality they're still the same.

Well there were a couple of exceptions.... in a scene or two with slight camera motion and lots of detail throughout the entire frame. For example on one occasion I stopped on a quite detailed scene and noticed a distinctive "halo" around an object in the CRF encoded version which just wasn't there in the 2 pass version, but moving both encodes on by a single frame the effect was reversed, and playing the two at normal speed they looked the same.

When it came to comparing 2 pass and CRF at lower qualities the difference in the way individual frames are compressed becomes more obvious but I still didn't see any quality differences as such. As the bitrate/quality drops they both achieve an equal flavour of "average", or "bad" and I'd guess as the differences become more apparent it might be easier to compare frames and say 2 pass was way better here, CRF was way better there, but combine frames at normal playing speed and even at low quality 2 pass and CRF don't seem to have actual "quality" differences to me.

My tentative conclusion, given 2 pass and CRF don't seem to always be using the same bitrate at any given time (according to ffdshow), it's the reason for minor differences in compression frame by frame, but given 2 pass is (for want of a better way to put it) constantly playing catchup compared to CRF then if anything, in theory it'd be the method with the less "consistent" quality.

I guess I should qualify all the above my saying one comparison was done using a DVD source and anamorphic encoding without resizing (just cropping the black bars etc). The second using a HD source resized to a SD lossless AVI which I then re-encoded. I ran the encodes full screen on a 51" Plasma to look for differences frame by frame (MPC-HC using the same resizing method each time). One day I might do the same again while encoding at a higher definition, but I can't imagine anything changing.

Last edited by hello_hello; 16th September 2012 at 02:51.
hello_hello is offline   Reply With Quote
Old 15th September 2012, 23:58   #39  |  Link
hello_hello
Registered User
 
Join Date: Mar 2011
Posts: 4,823
One question as I've not found the answer to it anywhere....

I've been told several times x264 doesn't report the CRF value used for a 2 pass encode so there's no way to know, but MeGUI's log file reports a "final ratefactor" after a 2 pass encode which seems suspiciously like a CRF value to me. For example when I ran the CRF 18 encode and used the resulting bitrate for 2 passes (it's the one where I got the bitrate slightly wrong) the final ratefactor reported after 2 passes was 17.68, and when the bitrates matched exactly after comparing 2 pass to CRF 20 the final ratefactor reported was 19.79. Anyone know what "final ratefactor" is exactly and if it can be taking as a pretty good guide to the CRF value used for 2 passes as it appears?

Last edited by hello_hello; 16th September 2012 at 00:02.
hello_hello is offline   Reply With Quote
Old 16th September 2012, 00:15   #40  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by hello_hello View Post
One question as I've not found the answer to it anywhere....

I've been told several times x264 doesn't report the CRF value used for a 2 pass encode so there's no way to know, but MeGUI's log file reports a "final ratefactor" after a 2 pass encode which seems suspiciously like a CRF value to me. For example when I ran the CRF 18 encode and used the resulting bitrate for 2 passes (it's the one where I got the bitrate slightly wrong) the final ratefactor reported after 2 passes was 17.68, and when the bitrates matched exactly after comparing 2 pass to CRF 20 the final ratefactor reported was 19.79. Anyone know what "final ratefactor" is exactly and if it can be taking as a pretty good guide to the CRF value used for 2 passes as it appears?
30 seconds of googling brought up this.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 14:23.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.