And if you can't find a good combination of settings that works on everything, then another option is to use a manual override file
+ Reply to Thread
Results 91 to 120 of 390
-
-
could you show me how it's done? Do i need to note down the combed frames in a notepad?
Last edited by x264; 22nd Apr 2013 at 13:08.
-
-
Or forget the override file and add in Vinverse after the IVTC to clean up any leftover stray interlacing. It usually does a pretty good job of it.
-
No.
nnedi is an intra-field only deinterlacer. It takes in a frame, throws away one field, and then interpolates the missing pixels using only information from the kept field. It has same rate and double rate modes, and works with YUY2 and YV12 input. nnedi can also be used to enlarge images by powers of 2.
-> doesn't make any sense trying to use it for downsizing,...
for the fun of it look at:
Code:big = ImageSource("Testkiste_gesamt_400.jpg", end=250).convertToYuY2() b1 = big.BicubicResize(1280,854).meInfo("Bicubic") b1 = big.BilinearResize(1280,854).meInfo("Bilinear") b3 = big.BlackmanResize(1280,854).meInfo("BlackmanResize") b4 = big.GaussResize(1280,854).meInfo("GaussResize") b5 = big.LanczosResize(1280,854).meInfo("LanczosResize") b6 = big.Lanczos4Resize(1280,854).meInfo("Lanczos4Resize") b7 = big.PointResize(1280,854).meInfo("PointResize") b8 = big.SincResize(1280,854).meInfo("SincResize") b9 = big.Spline16Resize(1280,854).meInfo("Spline16Resize") b10 = big.Spline16Resize(1280,854).meInfo("Spline36Resize") b11 = big.Spline64Resize(1280,854).meInfo("Spline64Resize") b12 = big.GaussResize(1280,854,p=75).meInfo("GaussResize") return Interleave(b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12) function meInfo(clip a, string b){ return a.AddBorders(8,8,8,8,color=$FFFFFF).Subtitle(b,align=8,font="kroeger 08_53",size=12,text_color=$000000,halo_color=$FFFFFF) }
Last edited by Selur; 24th Apr 2013 at 08:11.
-
from the documentation of nnedi3:
field -
Controls the mode of operation (double vs same rate) and which field is kept.
Possible settings:
-2 = double rate (alternates each frame), uses avisynth's internal parity value to start
-1 = same rate, uses avisynth's internal parity value
0 = same rate, keep bottom field
1 = same rate, keep top field
2 = double rate (alternates each frame), starts with bottom
3 = double rate (alternates each frame), starts with top
If field is set to -1, then nnedi3 calls child->GetParity(0) during initialization.
If it returns true, then field is set to 1. If it returns false, then field is set to 0.
If field is set to -2, then the same thing happens, but instead of setting field to 1
or 0 it is set to 3 or 2.
Default: -1 (int) -
-
suppose i make two deinterlaced clips, for one of them i throw away the odd fields and for the other i throw away the even fields. Will there be any visual difference between the two?
-
Will there be any visual difference between the two?
-
-
also the benefit of using B-Frames shrinks with their number increasing, especially since more than 6 B-frames are rarely used.
-
do i need to set the --colormatrix option in x264 or will it automatically set it for me?
-
When i preview a DVD in DGIndexNV the calorimetry is BT 601. should i set --colormatrix as bt601 in x264?
-
a. unless you change the color matrix through Avisynths ColorMatrix-function you should set the "--colormatrix"
b. there's no '--colormatrix bt601', x264 only offers:
Code:--colorprim <string> Specify color primaries ["undef"] - undef, bt709, bt470m, bt470bg smpte170m, smpte240m, film --transfer <string> Specify transfer characteristics ["undef"] - undef, bt709, bt470m, bt470bg, linear, log100, log316, smpte170m, smpte240m --colormatrix <string> Specify color matrix setting ["???"] - undef, bt709, fcc, bt470bg smpte170m, smpte240m, GBR, YCgCo
colormatrix related options -> you might want to read the documentation of Avisynths ColorMatrix and http://forum.doom9.org/archive/index.php/t-157299.html to get a better understanding on what to set when. -
It will give you more compression (smaller files) but lower quality. Because b-frames are encoded with higher quantizers. Going over 3 or 4 b-frames gets only a tiny bit more compression with most material, tenths of a percent. Blu-ray players cannot handle more than 4.
Last edited by jagabo; 25th Apr 2013 at 05:48.
-
Is it necessary to resize after cropping of the black bars of an NTSC 720x480 DVD?
-
-
-
Sure with enough denoising, you will end up with a lot of color gradients which will cause banding unless a dithering is or a higher precision than 8bit is used.
---
poisondeathray was faster and the funny thing is we are both right -
color gradient = interpolation steps / transition between one color and another, simply google for color gradient and look at the picture results and you should see some results with smooth transition and some with visible steps (banding)
-
Examples of smooth gradients and banding - Lagom LCD test patches: http://www.lagom.nl/lcd-test/gradient.php
Last edited by sanlyn; 21st Mar 2014 at 13:54.
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