Log in

View Full Version : My histogram script


Davinator
12th December 2006, 02:00
I thought I should share this with you guys. This is the script that I use for analyzing the luma in videos I process. Currently it has a lot of information showing at one time. If you find it way too cluttered for your taste, it's very easy to remove parts of it. Please let me know what you think, and if you have any suggestions to improve upon this :p

a=avisource("Filename.avi").
\ PointResize(720,480).
\ converttoyv12().
\ histogram("levels").
\ crop(720,0,0,-414).
\ pointresize(1024,264)

b=blankclip(width=1024, height=2, color=$00EBEB).
\ converttoyv12()

c=blankclip(width=1024, height=32).
\ converttoyv12()

d=stackvertical(a,b,c)

e=avisource("Filename.avi").
\ PointResize(320,240).
\ converttoyv12()

f=avisource("Filename.avi").
\ PointResize(720,480).
\ converttoyuy2().
\ TurnRight().
\ histogram().
\ Crop(480,0,0,0).
\ Tweak().
\ converttoyv12().
\ pointresize(256,240)

g=stackhorizontal(e,f)

overlay(d,g, mode="add", opacity=0.5, x=196)


Subtitle(font="ariel bold", "'", x=30, y=265)
Subtitle(font="ariel bold", "8", x=28, y=275)

Subtitle(font="ariel bold", "'", x=62, y=265)
Subtitle(font="ariel bold", "16", x=56, y=275)

Subtitle(font="ariel bold", "'", x=94, y=265)
Subtitle(font="ariel bold", "24", x=88, y=275)

Subtitle(font="ariel bold", "'", x=126, y=265)
Subtitle(font="ariel bold", "32", x=120, y=275)

Subtitle(font="ariel bold", "'", x=158, y=265)
Subtitle(font="ariel bold", "40", x=152, y=275)

Subtitle(font="ariel bold", "'", x=190, y=265)
Subtitle(font="ariel bold", "48", x=184, y=275)

Subtitle(font="ariel bold", "'", x=254, y=265)
Subtitle(font="ariel bold", "64", x=248, y=275)

Subtitle(font="ariel bold", "'", x=382, y=265)
Subtitle(font="ariel bold", "96", x=376, y=275)

Subtitle(font="ariel bold", "'", x=512, y=265)
Subtitle(font="ariel bold", "128", x=501, y=275)

Subtitle(font="ariel bold", "'", x=638, y=265)
Subtitle(font="ariel bold", "160", x=627, y=275)

Subtitle(font="ariel bold", "'", x=702, y=265)
Subtitle(font="ariel bold", "176", x=691, y=275)

Subtitle(font="ariel bold", "'", x=766, y=265)
Subtitle(font="ariel bold", "192", x=755, y=275)

Subtitle(font="ariel bold", "'", x=798, y=265)
Subtitle(font="ariel bold", "200", x=788, y=275)

Subtitle(font="ariel bold", "'", x=830, y=265)
Subtitle(font="ariel bold", "208", x=820, y=275)

Subtitle(font="ariel bold", "'", x=862, y=265)
Subtitle(font="ariel bold", "216", x=852, y=275)

Subtitle(font="ariel bold", "'", x=894, y=265)
Subtitle(font="ariel bold", "224", x=884, y=275)

Subtitle(font="ariel bold", "'", x=940, y=265)
Subtitle(font="ariel bold", "235", x=930, y=275)

Subtitle(font="ariel bold", "'", x=978, y=265)
Subtitle(font="ariel bold", "245", x=968, y=275)