The qtgmc plugins package contains only the 32 bit filters. Where can i find all the latest 64bit filters?
+ Reply to Thread
Results 331 to 360 of 390
-
-
-
http://www.mediafire.com/download/73tgfn9iac59dwo/VTS_01_1.m2v
Should i use tune - film for this source in x264? -
I got this error when i used QTGMC 3.33d. How do i fix this? -- downloaded the QTGMC avs from this link http://doom10.org/index.php?topic=2202.0
-
You need a different version of MDegrain1() (part of mvtools2), one that supports 32 bit precision (lsb=32). Or switch to an earlier version of QTGMC (I'm using 3.32). Or remove the lsb=32 arguments from the version you're using.
Last edited by jagabo; 27th Jun 2014 at 05:45.
-
True. They come with the dither plugin package. Has dither's own versions of dfttest and mvtools.
You could do that, but I see posts where other problems pop up if you don't have the other dither plugins.
I'd ask the O.P., what's wrong with the "real" QTGMC? If it's speed you want, that modded version will slow you down.- My sister Ann's brother -
Last edited by x264; 27th Jun 2014 at 16:54.
-
https://www.mediafire.com/view/h5hpmym8r6hlplu/P90x.mkv
MPEG2Source("C:\Users\Abhijith Nair\Desktop\VTS_01_1.d2v", cpu=0)
AssumeTFF()
QTGMC(Preset="Placebo", MatchPreset="Placebo", MatchPreset2="Placebo", SourceMatch=3, Lossless=2, TR2=1, Sharpness=0.3)
Crop(6, 0, -10, -2)
#Dither_convert_8_to_16()
#Dither_resize16nr(704,478)
#Dither_quantize(bitdepth=10, reducerange=true)
#Dither_Out()
I encoded an interlaced dvd using the above script. How do i remove the flickering at the start of the video?(from frame 730 - 850) -
Am I alone in thinking it's playing in the wrong aspect ratio? I see nothing 4:3 about it. It's 3:2, I think. I have to set my player (MPC-HC) to play it at 4:3 so everyone's not fat.
-
That section is animated at 30p so it's inherently flickery. The only way you can remove the flicker is to use motion interpolation techniques (probably won't work very well). Or maybe some frame blending.
<edit>
It worked better than I expected. You can see some distortions when examining still frames but they're not very visible at full frame rate playback.
Code:import("C:\Program Files (x86)\AviSynth 2.5\plugins\DoubleFPS2.avs") ffVideoSource("P90x.mkv") p1=Trim(0,639) p2=Trim(640, 849).SelectEven().DoubleFPS2() p3=Trim(850,0) p1+p2+p3
Last edited by jagabo; 27th Jun 2014 at 17:42.
-
Is this the script for doublefps2?
function DoubleFPS2(clip source)
{
super = MSuper(source, pel=2, hpad=0, vpad=0, rfilter=4)
backward_1 = MAnalyse(super, chroma=false, isb=true, blksize=16, searchparam=3, plevel=0, search=3, badrange=(-24))
forward_1 = MAnalyse(super, chroma=false, isb=false, blksize=16, searchparam=3, plevel=0, search=3, badrange=(-24))
backward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, searchparam=1, search=3)
forward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, searchparam=1, search=3)
backward_3 = MRecalculate(super, chroma=false, backward_2, blksize=4, searchparam=0, search=3)
forward_3 = MRecalculate(super, chroma=false, forward_2, blksize=4, searchparam=0, search=3)
MBlockFps(source, super, backward_3, forward_3, num=2*FramerateNumerator(source), den=FramerateDenominator(source), mode=0)
}Last edited by x264; 29th Jun 2014 at 09:23.
-
Yes, that's the DoubleFPS2() filter I used. You have to call it after QTGMC(). Note that the section of the video has 30 different pictures per second, each one duplicated to make 60 fps after QTGMC(). You need to throw out one of those duplicates in order for DoubleFPS2() to work. Hence the SelectEven() in my sample code.
-
How do i join two mkv files encoded using the same settings from the same DVD? The first mkv contains 20,000 frames and the next mkv contains the rest of the frames.
-
--sar calculation
4/3 = 704/476 * x/y
x/y = 4*476/3*704 = 119/432
Is the above calculation correct? -
-
I got this error when i tried to open a 10-bit mkv file in Solveig video splitter. What should i do to fix this?
-
MKV Cutter might work, if you replace the x264 binary which comes with it with a 10bit variant.
(+ I agree with jagabo, cutting before reencoding is normally the preferred way to go and not the other way around.) -
By the say, I don't know for certain that Solveig doesn't support 10 bit h.264, I was just speculating about that. But in general, many tools don't work with 10 bit h.264 and very little outside of a full blown computer can play it. That's a big tradeoff to get slightly better visual quality.
-
That's too general a question to answer. Anime doesn't usually need deinterlacing. IVTCing, maybe. Unblending, maybe. But not deinterlacing, although the end result of both will be the interlacing is gone. If you have a sample you want to post we might be able to give an answer specific to the video.
-
yup, TIVTC, Restore, AnimeIVTC() are probably good points for starting,...
-
D2v file of the DVD - http://www.mediafire.com/view/mfbi8ym7zu87mhd/VTS_01_1.d2v
Samples : Main movie - http://www.mediafire.com/watch/48k44pyb9dmdr8h/VTS_01_1.demuxed.m2v
Closing credits - http://www.mediafire.com/watch/f2oz559q0fajd0x/ED.demuxed.m2v -
The main movie sample is 100 percent film. You can use DgIndex in forced film mode with that and there will be nothing to deinterlace/IVTC. The end credits are 30p. You could simply decimate that down to 24p like the rest of the movie. To be safe, use DgIndex in Honor Pulldown Flags mode, then TFM(d2v=...).TDecimate() the entire thing. Make sure there are no scrolling credits at the end -- they might get screwed up.
-
What will happen to the closing credits when i use TFM().TDecimate() ?
Last edited by x264; 9th Jul 2014 at 12:45.
-
Similar Threads
-
Filtering
By x264 in forum Newbie / General discussionsReplies: 4Last Post: 19th Feb 2013, 02:47 -
Need help filtering Jaggies
By LadyLiete in forum RestorationReplies: 12Last Post: 21st Aug 2012, 06:30 -
Filtering during MPEG capture
By TB Player in forum Capturing and VCRReplies: 9Last Post: 31st Dec 2010, 18:53 -
Questing about filtering with one of your guides
By Oni87 in forum Newbie / General discussionsReplies: 6Last Post: 21st Oct 2008, 17:26 -
Audio Filtering Program
By dawson54 in forum AudioReplies: 6Last Post: 13th May 2008, 08:10