This is going to be a strange description, but here goes...
I have a video where there is a bright area, too bright to see clearly so it shows up as almost pure white. But if I darken the whole video to see that area, the dark areas become way too dark. There is no level of brightness that can satisfy both parts of the video.
One idea is if there is a tool or technique to brighten just the dark areas of the video, or darken just the bright areas. Photoshop does this with some sort of mask.
Another idea is to mix the two versions (the bright and dark) and use a mask like a green screen where a certain color or a certain area would come from one video, and the rest would come from the other video.
Has anyone had to deal with a problem such as this? Any recommendations?
EDIT: I think the Overlay command from avisynth is what I'm looking for. It's a little confusing since there are so many options. I can use the "overblown white" color for a mask, or the Lighten/Darken options to copy the light information from the dark film version to the light film version.
Any suggestions on how to use the Overlay command for my purposes?
+ Reply to Thread
Results 1 to 6 of 6
-
-
If you are seeing this on your TV but not your monitor, it may be that the luminescence range of your video is 0 to 255. TVs expect a luminescence range of 16 to 235. When the value is outside this range, it doesn't distinguish between them. You can adjust this in some editors but some do a better job than others.
-
Show a clip of the video, please....
-
You're saying that some of the video is too contrasted and other parts are OK, aren't you, and not that the problem is within different parts of each frame?
If so, you can filter a range of frames and not filter others - or filters others differently - by using the Trim filter:
http://avisynth.org/mediawiki/Trim
So, to filter frames 0-999 differently from 1000-1999 differently from 2000-2999 (which doesn't get filtered at all in this example):
A=Trim(0,999).Levels(x,x,x,x,x)#in which you can adjust the gamma, following jagabo's suggestion
B=Trim(1000,1999).Tweak(Cont=x.xx,Bright=xx,Coring =False)#adjust contrast and brightness
C=Trim(2000,2999)#nothing happens
A+B+C
Doing it this way, you don't need the Overlay command, but I could easily be misunderstanding you. -
Any suggestions on how to use the Overlay command for my purposes?Read my blog here.
Similar Threads
-
Would a TBC fix this type of issue?
By cfelicio in forum Capturing and VCRReplies: 11Last Post: 7th Sep 2011, 16:53 -
= bright and dark
By beetlespin in forum EditingReplies: 6Last Post: 16th Aug 2010, 18:38 -
Why Is My Screen Too Bright But Movies etc Play Too Dark
By Aaron1927 in forum ComputerReplies: 5Last Post: 30th Dec 2008, 10:42 -
Have an avi, but dark. Can I make it bright?
By ssalim in forum EditingReplies: 2Last Post: 15th Feb 2008, 11:51 -
Screen & Movies To Dark
By DJboutit in forum Newbie / General discussionsReplies: 2Last Post: 26th Dec 2007, 17:19