Hey! can anybody help me get the colors on my dvd to look like the picture I just posted. I'm not really sure how to do it, I keep destroying the lines and over doing the color.
+ Reply to Thread
Results 1 to 21 of 21
-
-
Why do you want your video to look like the image posted? The picture is too red and black levels are too high. It has the same red tint and washed-out lines you complained about in earlier posts. If high black levels and lots of red is what you're looking for, work with Avisynth color adjustment filters (ColorYUV, Tweak, Levels), histograms, vectorscopes, pixel samplers, and RGB controls found in VirtualDub (ColorMill, gradation curves, RGB modifiers, etc.).
Other than giving general advice like the above, no one can help if they don't know what your video looks like.Last edited by sanlyn; 25th Mar 2014 at 12:55.
-
I guess you're right. I'm trying to hard to get perfect results from a source where perfect results will never happen. I just need to give up on this source and go with what I have.
-
The colors in the VOB file are already pretty close to the sample image. What are you using to view the VOB? Maybe that's the source of your color problems. Different programs/hardware can convert the YUV (in the file) to RGB (on the screen) in different ways.
This will get you a little closer: ColorYUV(off_y=-1, off_u=1) but a wider variety of shots to compare to would be helpful. You can also try using the ColourLike() filter.Last edited by jagabo; 23rd Jun 2013 at 22:23.
-
There appears to be a strange weird kind of line along the side of the window in this sample and jpeg. And I can't seem to fix. Is it some kind of dot crawl cause aliasing filters dont work.
-
The jpeg I posted at the top of this thread doesn't have this problem. Is it removable?
-
-
In the first screenshot you can see that the lines look fine where the circled area is, but in the second screenshot where the circled area is there is a weird line kind of grain. Might be aliasing or dot crawl. I can't seem to remove it with antia-aliasing filters.
-
You should post non-resized PNG files to show such fine detail. Resizing and JPG compression both produce artifacts so it's hard to tell what's in the source and what was caused by the processing.
But looking at the MVK file: What you're seeing is a mix of noise, oversharpening halos, and DCT ringing artifacts, all exacerbated by over compression. Don't sharpen as much, use better noise reduction, and higher quality encoding.
Higher quality encoding may not be necessary if you get enough noise reduction. If you don't want noise reduction (ie, you want to retain the grain noise) then you must use much higher bitrates and a higher aq-strength value in x264.Last edited by jagabo; 24th Jun 2013 at 19:01.
-
In the first sample I'm about to post, the lines in the area I circled earlier are cleaned up and dont have this weird moving line problem in that particular area. However in the second sample I'm about to post (my version) I can't seem to get the same results with any aa filter, denoiser, or dot crawl filter. It's almost impossible to remove this problem in my version. Does anybody know how I can fix this problem?
-
The area I'm referring to is the same area I have circled in red on the above jpegs.
-
Try something like:
Code:Mpeg2Source("dvd.d2v", CPU=6, Info=3) TFM(d2v="dvd.d2v") Santiag() McTemporalDenoise(settings="very high")
-
I tried using yadifmod with these settings yadifmod(edeint=nnedi2()) and it kept the sharpness, removed grain, and fixed aliasing. However, it is a little hard on the eyes it like hurts them or looks weird to me for some reason. Can anybody recommend some settings that aren't so hard on the eyes? It could be because yadifmod deinterlaces everything or something.
-
my script looks like this:
# Set DAR in encoder to 4 : 3. The following line is for automatic signalling
global MeGUI_darx = 4
global MeGUI_dary = 3
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TIVTC.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\yadifmod.dll")
DGDecode_mpeg2source("clip")
AssumeTFF()
TFM()
TDecimate(mode=2, rate=23.976)
yadifmod(edeint=nnedi2())
crop(4, 0, -2, 0)
spline36resize(720,540) -
Because it fixed a lot of the problems with the lines, grain, and aliasing. I'm only using it for clean up, not for deinterlacing.
-
Hey guys! I have a question about the ColourLike() filter that jagabo mentioned before. Does it affect the colors of my whole video, or just the frame/scene I choose?
-
In general, yes - bad idea.
It's not a "clean up" filter, it's a deinterlacer (and not a great one, it leaves artifacts behind, "marching ants")
Use the right tool for the job
Hey guys! I have a question about the ColourLike() filter that jagabo mentioned before. Does it affect the colors of my whole video, or just the frame/scene I choose?
Or several other ways like ApplyRange, or ReplaceFramesSimple or similar filters
Similar Threads
-
Color correction help
By mammo1789 in forum RestorationReplies: 13Last Post: 14th Sep 2012, 10:52 -
mpg2 color correction?
By Mike99 in forum RestorationReplies: 74Last Post: 25th Oct 2011, 22:31 -
General Color Correction
By elmuz in forum Newbie / General discussionsReplies: 1Last Post: 18th Jul 2011, 15:51 -
Increasing color depth and sampling for color correction
By poisondeathray in forum Newbie / General discussionsReplies: 17Last Post: 17th Oct 2009, 09:06 -
Color Correction for DV
By bsuska in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 16Last Post: 23rd Oct 2008, 17:24