View Single Post
Old 27th September 2017, 03:50   #1  |  Link
pcroland
Registered User
 
Join Date: Mar 2014
Location: Hungary
Posts: 115
Plugin for cutting out a cross from the center

Hi!

I don't know if there is a request thread for plugins. What I would like is a plugin that cuts out a cross from the center of the footage so I can inspect the corners and edges whether they need crop and/or border fix without having to scroll the FullHD image. The current method that I use is this:

Code:
a=FFMS2("D:\btn\something.mkv").Crop(0,0,-990,-710)
b=FFMS2("D:\btn\something.mkv").Crop(990,0,-0,-710)
c=FFMS2("D:\btn\something.mkv").Crop(0,710,-990,-0)
d=FFMS2("D:\btn\something.mkv").Crop(990,710,-0,-0)
e=StackHorizontal(a,b)
f=StackHorizontal(c,d)
StackVertical(e,f)
Picture of this script working

I think it would be easy to make such plugin but I do not understand programming. It might be helpful for others also.

Last edited by pcroland; 27th September 2017 at 20:31.
pcroland is offline   Reply With Quote