the color changes in the video randomly.
once it the color scheme is reddish and a little greenish in the very next frame.
eg. screen
frame #16984
frame #16985
this change hasn't maintained any numerical series...its completely random. is there any way to fix this any how?
i've cut the video and giving a sample clip here...
http://www.mediafire.com/?x6nxz6u6fkf65gy
now please answer these stupid questions, if u can (i nothing but a newbie...
1. this video is highly deinterlaced, i've tried QTGMC(Preset="Very Slow", SourceMatch=2, Lossless=2, EZKeepGrain=0.5, Sharpness=0.1, Sbb=0)
, and has got decent result but it is taking very long time to rip.....is there any better way to deinterlace it?
and what are the other problems of this video i should worry about? and the suitable options to tweak it......
thanx in advance
+ Reply to Thread
Results 1 to 30 of 33
-
-
Like every other Angel DVD I've seen (mostly Uttam Kumar and Suchitra Sen movies), it's field-blended from a poor PAL to NTSC conversion. Therefore just deinterlacing it isn't enough. It has to be unblended. And for faster results try Yadif in bob mode, something like this:
Yadif(Mode=1)
Srestore()
And I don't know how to fix those random green blotches every several frames.
and what are the other problems of this video i should worry about? and the suitable options to tweak it...... -
thanx a lot for ur help....
what about color correction? should i play with some such filters, or better to leave as it is?
and what about little sharpening....
i have a lot of time, i just want a (almost) perfect result,... please suggest some filters to play with -
-
Because undoing the field-blending leaves behind a soft-looking picture, I usually sharpen it up, yes. I use LimitedSharpenFaster, but there are many AviSynth sharpeners. Because, for some reason, the field-blended ones are also slightly dull-looking and desaturated, I also increase the saturation using the Tweak filter.
Suchitra Sen was a great, great actress. And she didn't look bad, either, during her prime years. -
cant load yadif......even it can't load the the plugin.....what could be the problem? i can see the yadif.dll in the plugins folder with the others
-
And telecined, as well.
Last edited by sanlyn; 23rd Mar 2014 at 06:46.
-
LoadCPlugin
Not much color correction needed, except that the darks (and blacks) look very green. Best done in RGB with VirtualDub filters like gradation curves or ColorMill.
A little sharpening. Not much, unless fixing the blended fields softens too much.Last edited by sanlyn; 23rd Mar 2014 at 06:46.
-
As for the colors, you can try something like:
MergeChroma(last, McTemporalDenoise(settings="high"))
That reduces the flicker quite a bit. Maybe couple that with a deflicker filter. -
It could use some sharpening, deblocking, deshaking, etc. But here's a start with frame rate restoration, flicker reduction, chroma noise reduction, and spot removal:
Code:LoadVirtualDubPlugin("g:\Program files\VirtualDub\plugins\deflick.vdf","DeFlick") function RemoveSpots(clip input, bool "_grey", int "repmode") { _grey=default(_grey, false) repmode=default(repmode, 16) clmode=17 clensed=Clense(input, grey=_grey, cache=4) sbegin = ForwardClense(input, grey=_grey, cache=-1) send = BackwardClense(input, grey=_grey, cache=-1) alt=Repair(SCSelect(input, sbegin, send, clensed, debug=true), input, mode=repmode, modeU = _grey ? -1 : repmode ) restore=Repair(clensed, input, mode=repmode, modeU = _grey ? -1 : repmode) corrected=RestoreMotionBlocks(clensed, restore, neighbour=input, alternative=alt, gmthreshold=70, dist=1, dmode=2, debug=false, noise=10, noisy=12, grey=_grey) return corrected } Mpeg2Source("VTS_01_1.d2v") Yadif(mode=1) SRestore() ConvertToRGB() DeFlick(8, 10, 0, 7, 0) # window size, softening, interlaced, scene change threshold, show scene change ConvertToYV12() MergeChroma(last, McTemporalDenoise(settings="high")) RemoveSpots()
-
Good ol' RemoveSpots(). It'll do more than just remove spots, BTW, as I recently discovered elsewhere (would you believe it can help steady slightly fluttery small objects?). I also used DeVCR on those rips; cleared about half of them. Most of the remaining blips can be handled by "borrowing" small patches from clean frames and overlaying them on the remaining bad guys. Pain the neck, though.
Last edited by sanlyn; 23rd Mar 2014 at 06:47.
-
-
-
Yes, McTemporalDenoise() is very slow. You can try substituting another temporal denoiser like TTempSmooth(), CNR2(), etc. You'll have to use high settings to get the color flicker down. And you'll risk getting too much ghosting.
Last edited by jagabo; 19th Jul 2012 at 07:16.
-
-
-
I was just joking giving you a hard time
Personally I think you should be using QTGMC instead of yadif - but this is even slower (even on the faster preset settings) but the quality is much better
Yadif tends leaves aliasing artifacts and jaggy dot artifacts, it messes up fine detail and picture isn't as clear (but part of the reason is QTGMC countersharpens as well)
You decide where you want to make tradeoffs in quality vs. speed -
-
earlier i've used qtgmc and the result was satisfactory too, but it takes very long
is there no option to speed it up? it took more than three days
i used virtualdub 2 pass..... was i right? -
If you have a multicore CPU you use a multithreaded build AviSynth.
Use VirtualDub in single pass mode for the AviSynth filtering. Output to a lossless intermediate. Then use that for your final compression. That will cut your filtering time in half. -
-
My opinion is if you want an "almost perfect result" as you claim, you should invest the time fixing it up properly . Personally I would never use yadif for any restoration or fix. It's not good enough and destroys quality, introduces aliasing artifacts. QTGMC on one of the faster settings is enough to prevent this (you don't need to use the super slow settings you used earlier , but even on "faster" settings it's many times slower than yadif)
You think it's a "pain" now , but if it was important to me, I would even take the extra steps to manually fix the other problems like scratches & other film defects that some of the filters miss. e.g. long scratches and persistent defects (lasting over 1 frame) will be missed. All scene changes will be missed - spot/dirt removal filters compare between frames, so at the end of a scene and a beginning of the next scene will remain "dirty" because there is no adjacent frame to compare to.
Better quality usually means taking longer . So it depends on how good of a job you want to do, and how much time you are willing to invest, and the tradeoffs you're willing to make
Also, a laptop typically isn't a good computer for any video processing. Cooling is insufficent, and they are usually too slow (unless you have a monster DTR that cost more than desktops) . If you have access to multiple computers, you can split up the processing e.g. do different episodes on different computers -
Since the AviSynth filtering is going to take a long time you want to perform it only once. So you open your AVS script with VirtualDub, set it up to output to a lossless video codec like Lagarith, and save the filtered results to a file. Then you open that filtered video with VirtualDub and perform your two pass compression to Xvid, or Divx, or whatever you are using.
So if the AviSynth filtering takes 48 hours your two step encode will take 48 hours for the filtering, plus an hour for the 2 pass encode -- 49 hours. Where as if you performed a two pass encode on the AVS script you would be filtering your video twice, 96 hours, plus an hour for the encoding -- 97 hours. -
-
@manono, @sanlyn, @jagabo, @poisondeathray
i've created a sample with the great help of all of you but i'm not totally satisfied with the output..........
i think there there are lots of room left to be improvised. but i'm confused
please check the sample and please suggest where can i modify.... it'll be a great help
http://www.sendspace.com/file/zfutyg
thanx in advance to all of you -
To begin with, the audio is out of synch and it plays with the wrong aspect ratio.
You made this thing? If so, people need to see the source, not your reencoding of it. Also, what script did you use to make this?
This is from the same movie from before? Those Angel DVDs will never look good. They field-blend everything and (as far as I know) use VHS tapes as their source. They're all utter garbage and there's only so much you can do to improve them.Last edited by manono; 29th Jul 2012 at 03:24.
Similar Threads
-
possible to fix vertical color stripe?
By spiritgumm in forum Video ConversionReplies: 6Last Post: 25th Apr 2012, 08:35 -
color changes in old tape...way to fix?
By snafubaby in forum Newbie / General discussionsReplies: 4Last Post: 15th Mar 2010, 03:07 -
Estimates of labor and parts to fix color of Sony HDTV
By edong in forum Newbie / General discussionsReplies: 11Last Post: 28th Nov 2008, 22:41 -
Change from a color to another in a video
By Nokiamania in forum EditingReplies: 4Last Post: 7th Jul 2008, 01:51 -
ConvertXtoDVD - Can't change subtitles color
By Phil240 in forum Authoring (DVD)Replies: 5Last Post: 8th Dec 2007, 03:03