Hello everybody,
I'm using AVStoDVD, and making ISO's with ImgBurn. On my latest project, I noticed the following error message during the 2nd pass of HCenc:
info- WARNING, small source mismatch found in pass 2, count: 8266 frames
I found another post on the forum that touches on this Warning, but this:
https://forum.videohelp.com/threads/279590-HCenc-encoding-problem-(2nd-pass)
is waaaayy over my head.
Talk to me like someone who doesn't know video. Sorry, I'm slowly learning bits and pieces, but I'm still a relative noob.
Can anyone shed some light on what this error mismatch means, and why it should occur? Would it be the video file itself, or the fact that in AVStoDVD the video appears to take up more space than a DVD5 disc, but can still be forced to fit onto DVD5?
+ Reply to Thread
Results 1 to 14 of 14
-
-
HCenc at: http://hank315.nl
-
Thanks, hank315. So do I need to worry about this "small source mismatch" at all? In practical terms, does it mean I will have problems burning the image files, or video errors during playback?
-
I once corrected this problem by creating a new user profile on my XP box.
I never got to the bottom of it, all I know is that by using my regular profile, this problem was reproducible,
but once I tried the exact same operation logging onto the new profile, the problem vanished. -
You should post your .AVS script so that we can see if there are any errors in it. This might be a problem with cropping and resizing. I have had problems like this before with certain syntaxes in my scripts - depended on the Avisynth version.
As for converting, you don't have to if you don't plan on keeping the original after you convert it to DVD.ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
I *think* this is what you're asking for, so correct me if I'm wrong. I just leave AviSynth script in my projects as "Auto" setup, but here's what it looks like:
LoadPlugin("C:\Program Files\AVStoDVD\VobSub\VSFilter.dll")
Import("C:\Program Files\AVStoDVD\Lib\A2DSource.avsi")
Video = A2DVideoSource("C:\Documents and Settings\DJ Haz-Mat\My Documents\My Videos\POAK\POAK 1.avi", CacheFolder = "C:\DOCUME~1\DJHAZ-~1\LOCALS~1\Temp")
Audio = A2DAudioSource("C:\Documents and Settings\DJ Haz-Mat\My Documents\My Videos\POAK\POAK 1.avi", CacheFolder = "C:\DOCUME~1\DJHAZ-~1\LOCALS~1\Temp")
Video = Video.ConvertToYV12
Video = Video.AddBorders(0,6,0,6)
Video = Video.Lanczos4Resize(720,480)
Video = Video.TextSub("C:\Documents and Settings\DJ Haz-Mat\My Documents\My Videos\POAK\POAK 1.srt")
Audio = Audio.Normalize()
Audio = Audio.SSRC(48000)
AudioDub(Video, Audio) -
I believe A2DVideoSource() uses DirectShowSource(). DirectShow isn't always frame accurate. You should do what I recommended earlier: Run the video through a single pass encode to a HuffYUV intermediate. Then run a 2-pass encode of that file through HcEnc. That will eliminate the possiblity that HcEnc will get different frames during the two passes.
-
-
I get this error too but since it's not causing any problem, I'm going to ignore it.
Similar Threads
-
HCenc 2nd pass, what to do about: "*** INFO, adjusting average bitrate..."?
By jclampy in forum Newbie / General discussionsReplies: 14Last Post: 5th Jan 2012, 14:30 -
HCEnc framerate mismatch...
By michcio in forum Authoring (DVD)Replies: 8Last Post: 28th Sep 2008, 08:26 -
Virtualdub, 2pass - 1st pass statsfile not found
By kidcash in forum Newbie / General discussionsReplies: 1Last Post: 27th Dec 2007, 03:05 -
Lead contamination warning found on new laptop PS
By ahhaa in forum ComputerReplies: 10Last Post: 15th Dec 2007, 12:41 -
HCenc encoding problem (2nd pass)?
By ecc in forum Video ConversionReplies: 49Last Post: 29th Nov 2007, 01:22