Hello, I am trying to convert a bluray a series for episodes using MeGUI program and have a little knowledge about it, but I'm having problems with the generated image, I see something like a shadow or poorly done edges, and sometimes the video is kinda slow, follows the print to see:
I'm converting direct format (.m2ts 32GB) to mkv already with the cuts due in duration.
My script:I've tried to deinterlace the video with all available filters that know and the result is basically the same. I think this is a bluray dvd upscale a 480i.Code:DirectShowSource("D:\STREAM\00003.m2ts", fps=29.970, audio=false, convertfps=true).AssumeFPS(30000,1001) LoadPlugin("C:\Users\Administrator\Downloads\MeGUI_2624_x86 (1)\tools\avisynth_plugin\TIVTC.dll") TDecimate(cycleR=1) #crop Spline36Resize(1280,720) # Spline36 (Neutral) #denoise
I appreciate all the help possible.
[EDIT]
exemple.mkv
+ Reply to Thread
Results 1 to 14 of 14
-
Last edited by bebetoalves; 27th Apr 2016 at 22:26. Reason: Add sample of video.
-
And again we have a Groundhog Day ... Your use of DirectShowSource probably messed up the video in a way that it might insert or remove single frames which would confuse a decimate filter. And who knows if there is any DirectShow filter in the filter chain which blends fields before you can work with them?
Many people with a lot of experience always recommend not to use DirectShowSource when you can avoid it. You should instead prefer L-SMASH Works (LwLibavVideoSource) or FFMS2 indexing (FFVideoSource) or one of Donald Graft's hardware decoder source filters (DGDecode...), using the "File Indexer" tool in MeGUI. They would certainly deliver the decoded frames as they are, in optimal quality, without any possibly surprising and unexpected post-processing.
I would not even be sure that you have telecined video in a HD resolution. Are you really sure that it has a 3:2 Pulldown pattern? -
It looks like upscaled standard definition video in those pictures. But there's no way of saying for sure since we don't know exactly how you prepared the images.
If you really have interlaced video you need to deinterlace before downscaling. And decimating doesn't make sense unless it's film based. If it's film based it should be field matched before decimating.
For true interlaced video:
Code:DirectShowSource("D:\STREAM\00003.m2ts", fps=29.970, audio=false, convertfps=true).AssumeFPS(30000,1001) Yadif(mode=1, order=1) # or order=0, whichever is appropriate Spline36Resize(1280,720)
Code:DirectShowSource("D:\STREAM\00003.m2ts", fps=29.970, audio=false, convertfps=true).AssumeFPS(30000,1001) TFM() # field match TDecimate() # remove duplicate frames (1 in 5) Spline36Resize(1280,720)
There are many other possibilities. You should post a sample of the original video (not reencoded).
And Spline36Resize() is not a neutral resizer. It sharpens and will exacerbate the oversharpening halos already in your video. -
-
Last edited by bebetoalves; 27th Apr 2016 at 18:25.
-
-
It's pure interlace. You couldn't figure that out for yourself? As jagabo suggested earlier, bob it to 59.94fps for best results. And the best bobber is QTGMC, although it's very slow.
-
With a not too slow preset, QTGMC can achieve a reasonable speed. TDeint or Yadif may be "less perfect", but probably faster. Remember to use their bobbing mode, 720p supports "double framerate" compatible to Blu-ray and related players.
-
If you want to try reducing the oversharpening halos:
Code:LWLibavVideoSource("exemple.mkv") SetMtMode(2) QTGMC(preset="fast") # or as slow as you can stand Dehalo_alpha(rx=4, ry=5) Spline36Resize(1280,720) Sharpen(0.3)
-
what final script did u use for it all?
'Do I look absolutely divine and regal, and yet at the same time very pretty and rather accessible?' - Queenie
Similar Threads
-
Rip 1080i to 720p
By vivabarca in forum Blu-ray RippingReplies: 7Last Post: 17th May 2015, 10:25 -
Capturing 720p or 1080i->720p?
By alexvsc in forum Capturing and VCRReplies: 1Last Post: 5th Jul 2014, 14:42 -
How to convert 1080i to 720p with Avisynth?
By VideoFanatic in forum RestorationReplies: 27Last Post: 23rd Jan 2014, 15:10 -
Hauppauge HD PVR: 1080i or 720p?
By Tom Saurus in forum Capturing and VCRReplies: 21Last Post: 6th Nov 2013, 16:16 -
a simpleton's question about 720p vs 1080i
By maca in forum DVB / IPTVReplies: 3Last Post: 2nd Mar 2013, 17:31