Hi guys
I am looking for a way to apply a vectorscope to some mts files I have so that I can do colour correction. I have no money for new programs so is there any free programs available. Running windows 64 bit
Thanks
+ Reply to Thread
Results 1 to 9 of 9
-
-
VirtualDub+ColorTools plugin, AviSynth Histogram(mode="color") or Histogram(mode="color2") or VideoScope("both", true, "U", "V", "UV").
-
To read MTS files you'll need the ffmpeg source plugin for VirtualDub if you use that program. For AviSynth you'll need the LSMASH source plugin.
-
Use ffmpeg:
More on https://trac.ffmpeg.org/wiki/Vectorscope or
Bellow script provided as reference for functionality comparable to TEK WFM601.
Code:@setlocal @set /a cput=(%NUMBER_OF_PROCESSORS%*3)/2 @set FFMPG=D:\Media\FF @set PTH=%PATH% @set PATH=%FFMPG%;%PTH% @set FC_CONFIG_DIR=%FFMPG%\conf @set FONTCONFIG_FILE=%FFMPG%\conf\fonts.conf @set FONTCONFIG_PATH=%FFMPG%\conf @echo %1% @ffplay -hide_banner -threads %cput% -loglevel 24 -stats -color_range 2 -loop 0 -i "%1" -an -sn -color_range 2 -vf "scale=-2:256:sws_flags=bilinear:sws_dither=0:in_range=1:out_range=1,format=pix_fmts=yuv420p,split=2[a0][b0];[a0]waveform=filter=lowpass:scale=digital:graticule=green:flags=numbers+dots:components=7:display=stack:envelope=peak+instant[a0o];[a0o][b0]vstack[out]" @endlocal @pause
-
Here's a simple AviSynth script, no plugins needed:
[Attachment 39610 - Click to enlarge]Code:################################## ### show waveform + vectorscope ## ## @ squeeze - if true (default), output size = input size; ## if false, width & height increase by 256 pixels. ## @ labels - if true (default), show small axis labels on vectorscope. ## function VideoScopes(clip C, bool "squeeze", bool "labels") { Assert(C.IsYUV, \ "VideoScopes: source must be YUV") squeeze = Default(squeeze, true) labels = Default(labels, true) C TurnRight.Histogram.TurnLeft ## Histogram requires planar (C.IsYUY2) ? ConvertToYV24 : Last Histogram("color2") (C.IsYUY2) ? ConvertToYUY2 : Last x = Width-256 (labels) \ ? Subtitle("U+", x=x+220, y=120, text_color=$80cccccc, size=16) \ .Subtitle("V+", x=x+117, y=230, text_color=$80cccccc, size=16) \ .Subtitle("U-", x=x+15, y=120, text_color=$89cccccc, size=16) \ .Subtitle("V-", x=x+115, y=10, text_color=$80cccccc, size=16) \ : Last return (squeeze) \ ? BicubicResize(C.Width, C.Height) \ : Last }
-
The histogram filter feels like a toy to me without targets. Here is a real vectorscope:
Similar Threads
-
MPC HC: 32-bit or 64-bit on Windows 7 64-bit
By flashandpan007 in forum Software PlayingReplies: 20Last Post: 22nd Jul 2016, 09:22 -
why in windows 64 bit I don't see 64 bit codec with DSFmgr?
By marcorocchini in forum Newbie / General discussionsReplies: 2Last Post: 8th Sep 2015, 09:01 -
The free upgrade from Windows 8 to Windows 8.1 might pose some problems
By usually_quiet in forum ComputerReplies: 41Last Post: 18th Jan 2014, 18:15 -
Windows 8 64 bit
By spectra7045 in forum SVCD2DVD & VOB2MPGReplies: 2Last Post: 6th Dec 2012, 08:08 -
Windows 7 - 64 bit compatiblity
By yeoldmetalhead228 in forum Newbie / General discussionsReplies: 9Last Post: 25th Sep 2012, 20:13