Quantcast KVCD: Need Video to be Brighter! - digitalFAQ.com Forums [Archives]
  #1  
01-06-2004, 02:22 PM
CheronAph CheronAph is offline
Free Member
 
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to CheronAph
If I want my movie to be a little brighter, is it wise to use TMPGEnc´s simple color correction?
__________________
¨¨°º©©º°¨¨°º©CHERONAPH©º°¨¨°º©©º°¨¨
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
01-06-2004, 03:16 PM
Jellygoose Jellygoose is offline
Free Member
 
Join Date: Jun 2002
Location: Germany
Posts: 1,288
Thanks: 0
Thanked 0 Times in 0 Posts
No definetely not. Use something like this:

Levels(0,1.2,255,0,255)

And play with the value (1.2). Values above 1 make the movie brighter, values below make it darker.
__________________
j3llyG0053
Reply With Quote
  #3  
01-06-2004, 03:31 PM
CheronAph CheronAph is offline
Free Member
 
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to CheronAph
Thanks, does it matter where I put that in the script?
__________________
¨¨°º©©º°¨¨°º©CHERONAPH©º°¨¨°º©©º°¨¨
Reply With Quote
  #4  
01-06-2004, 04:30 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by CheronAph
Thanks, does it matter where I put that in the script?
If you want to raise the brtight, put them after all the filters. If you want to darkin, put it just after the load of the source. All that because the value Jelly told you to adapt is the gama factor. And it affects everything including noise. Darkeking a noise reduce it, but brightinh it turns the noise worst; So it's clever to darken before denoising and lighten adter denoising.
Reply With Quote
  #5  
01-06-2004, 05:00 PM
CheronAph CheronAph is offline
Free Member
 
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to CheronAph
Are there other good ways to brighten the film, Tweak(...) maybe?
__________________
¨¨°º©©º°¨¨°º©CHERONAPH©º°¨¨°º©©º°¨¨
Reply With Quote
  #6  
01-06-2004, 06:00 PM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
The better way is as Jell showed!

Just do open your orig source using Vdub and choose its internal Vdubfilter "Levels" .... go and pick a "sample" (tab in the filter) in a scene ....
a) .... where its very very dark and move the left cursor that right until it touches the left end of the histogram.
b) .... where its very shining bright (like an explosion) and move the right cursor to the left until it touches the right end of the histogram.

Values should be like this

5_______1.000________245

0____________________255

First cursor bar is the full proporional modification range of the RGB/Luma

Second bar is the range which will be delivered of that resulting Luma in total of the stream.

So maybe you want to correct all your luma up to its peaks, ok, it looks nice BUT legal TV values do not allow that range between 0 and 255 and thats why you "can" correct" this afterwards as a whole. BUT we don't do that in VDub here!

So just not the values in order of appearance.
5,1.0,245,0,255

Then enter your AVS Script and put the Levels() Command

Levels(5,1.0,245,0,255)

Thats it!
And you don't need here to modify the last (0,255) values as Levels() now got the safe option "Coring" integratet which preserves a full TV legal luma range of 16-235

But caution! The image on aPC screen generally does appear more dark than in comparison to your Tv afterwards ..... that's why I would NOT change the gamma (1.0) value in levels. just a hint!
Reply With Quote
  #7  
01-06-2004, 06:17 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by incredible
Just do open your orig source using Vdub and choose its internal Vdubfilter "Levels"
Or use the "Levels" tab of ffdshow that allows to see the effect while you are watchign the movie :P
Reply With Quote
  #8  
01-06-2004, 06:20 PM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
Or that way ... :P *lol*

DialHot, ... just gimme everything you want me to treat ... even hybrid NTSC streams to handle for 25PAL FPS but .... I think that ffdshow doesn't like me personally I can do what I want
Reply With Quote
  #9  
01-07-2004, 05:14 AM
CheronAph CheronAph is offline
Free Member
 
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to CheronAph
Vdub is great for avi sources but what about d2v?
__________________
¨¨°º©©º°¨¨°º©CHERONAPH©º°¨¨°º©©º°¨¨
Reply With Quote
  #10  
01-07-2004, 05:23 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by CheronAph
Vdub is great for avi sources but what about d2v?
Just do an avs script with "mpeg2source("yourfile.d2v")" and open it in virtualdub.
Reply With Quote
  #11  
01-07-2004, 05:30 AM
CheronAph CheronAph is offline
Free Member
 
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to CheronAph
Hey, that works, thanks!
__________________
¨¨°º©©º°¨¨°º©CHERONAPH©º°¨¨°º©©º°¨¨
Reply With Quote
  #12  
01-07-2004, 05:48 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
BTW: Change to VirtualDubMOD as it supports full Avisynth editing (incl.Syntax/Spelling scanning) + direct previewing and so on! If you got problems using the FFdshow way from Dialhot, this is almost the same WYSIWYG way.

Both modes (FFdshow or VirtualDubMod) and their real preview you will love when testing filters and scrpit syntax)
Reply With Quote
  #13  
01-07-2004, 06:00 AM
CheronAph CheronAph is offline
Free Member
 
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to CheronAph
Wow, that editor is great, thanks for the tip!
__________________
¨¨°º©©º°¨¨°º©CHERONAPH©º°¨¨°º©©º°¨¨
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Recording Video: DVCII cannot detect any video signal dongxu Video Capturing / Recording 0 08-12-2004 10:13 PM
Recording Video: Best budget-priced video capture card? digitalvideo Video Capturing / Recording 2 04-17-2003 09:31 AM
KVCD: Clone Wars type digital video makes kvcd easier? digitalize Video Encoding and Conversion 6 02-26-2003 04:10 PM
Recording Video: Huffyuv and Noisy Video sources? TKS Video Capturing / Recording 1 11-23-2002 11:28 AM
Recording Video in Huffyuv with Ulead video studio SE? mpierce Video Capturing / Recording 0 09-06-2002 12:34 PM

Thread Tools



 
All times are GMT -5. The time now is 10:07 PM  —  vBulletin © Jelsoft Enterprises Ltd