Log in

View Full Version : MeGUI fps problem


shnoob
25th March 2010, 15:38
Hi guys

I have a problem with my encodes from MeGui namely that the final file only plays back at 19fps instead of 23.

In the settings the fps is set at 23 and I've looked everywhere I can to see if there isn't a hidden setting or something but have found nothing.

I've done 3 encodes, 1 at 1080p and 2 at 720p all 3 at 2 pass and still the same result.

Is this a known problem or am I missing something here?
Encode results are great so would like to continue using MeGUI so any help appriciated.

Thanks

Inspector.Gadget
25th March 2010, 15:45
Your source is a backed up blu-ray disc?

shnoob
25th March 2010, 15:49
Forgot to mention that, source is blu-ray.

Guest
25th March 2010, 16:07
Post your Avisynth script.

fantasmanegro
25th March 2010, 21:24
maybe he/she is usint IVTC or Decomb, in avs file

Guest
25th March 2010, 21:29
That's why I asked for the script!

shnoob
25th March 2010, 22:45
Thx for the replies, here's the avisynth script

DirectShowSource("C:\Blu Ray Rips\PELHAM_123\BDMV\STREAM\00011.m2ts", fps=23.976, audio=false, convertfps=true)
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\TIVTC.dll")
TDecimate(cycleR=1)
crop( 0, 140, 0, -140)

Spline36Resize(1280,528) # Spline36 (Neutral)
mergechroma(blur(1.3)) # Little Noise

Inspector.Gadget
25th March 2010, 23:02
Don't use TDecimate on a 23.976FPS source. There shouldn't be any duplicate frames. Also, don't use DirectShowSource if you can avoid it. Since the disc is H.264, use MeGUI's built-in "File Indexer" (you don't want to use the NV tools if you don't own a license for them) and then load the created index file into the AVS script creator. No field matching or decimation needed.

shnoob
25th March 2010, 23:03
Thanks for the tips, will give it another go :)