Go Back    Forum > Digital Video > Video Project Help > Restore, Filter, Improve Quality

Reply
 
LinkBack Thread Tools
  #1  
01-17-2024, 12:52 PM
aramkolt aramkolt is offline
Free Member
 
Join Date: Jul 2023
Posts: 311
Thanked 36 Times in 35 Posts
Saw this screen cap on an old forum post on videohelp from a user that hasn't been active since 2018.

Question is what application and how do you get to the function shown in the screenshot below?

I believe what it does is allow you to see how certain color levels are being clipped or have luma/chromas in certain ranges that are selectable.

Looks like a useful tool for analysis, so I am curious to try it once I know what it is.


Attached Images
File Type: jpg cOmUzYi.jpg (69.0 KB, 19 downloads)
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Ads / Sponsors
 
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
01-17-2024, 02:19 PM
themaster1 themaster1 is offline
Free Member
 
Join Date: Feb 2011
Location: France
Posts: 517
Thanked 108 Times in 92 Posts
it's avisynth (script based) application, well known for video enthousiasts to enhance a video (noise, colors, deinterlace etc..)

As far as i can see on the picture it uses ColorYUV(analyze=true), filter collecting luma/chroma stats values and Histogram("classic") to display the luma range (brown zones being critical for Rec601 videos, 0-16 / 235-255)

The red/green mode is to easily spot non valid luma or chroma... i think yes, don't know which filter it is though, i've seen it before

more info on histogram:
http://avisynth.nl/index.php/Histogram
More infos on avisynth:
https://forum.doom9.org/forumdisplay.php?f=33

Basically your script would look like this if you want to experiment

Code:
AVISource("MyVideos")
ColorYUV(analyze=true)
Histogram("classic")
Reply With Quote
  #3  
01-26-2024, 07:26 AM
themaster1 themaster1 is offline
Free Member
 
Join Date: Feb 2011
Location: France
Posts: 517
Thanked 108 Times in 92 Posts
I've found something similar in my archives to spot illegal YUV values (requires Videoscope plugin)

Code:
LoadPlugin("C:\Program Files (x86)\AviSynth 2.6\plugins\VScope12\Release\VScope.dll")
AVISource("MyVideo.avi").assumetff()
converttoyuy2(interlaced=true)  # REQUIRED !!
ColorYUV(analyze=true)
ColorYUV(off_y=-35, gain_y=150) # brighten it up to create illegal colors

diff = Subtract(last, ConvertToRGB(last,interlaced=true).ConvertToYUY2(interlaced=true)).Levels(112,1,144,0,255)

return(StackHorizontal(last, diff)).VideoScope("bottom")


Attached Images
File Type: jpg YUV_ILLEGAL_VALUES-Mackenna.jpg (92.0 KB, 5 downloads)
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
VirtualDub program failure, crashes on capture? JoRodd Capture, Record, Transfer 9 02-27-2018 12:19 AM
What is the Best Screen Capture Program? bigk181 Computers 5 10-08-2012 07:04 AM
Capture closed caption (CC) in ATSC program? jmac698 Capture, Record, Transfer 1 02-06-2011 01:09 PM
Best program to make a compilation DVD of video clips? Superstar Author, Make Menus, Slideshows, Burn 1 07-27-2009 03:16 AM
Capture Card Program for Recording Shows JonathanEntertainment Capture, Record, Transfer 3 03-22-2008 03:07 AM




 
All times are GMT -5. The time now is 06:07 AM