Couleur
6th May 2022, 16:45
Hey, I'm using mv.Flowblur (thanks poisondeathray) to replicate RSMB and it does a lot of smearing on my gameplay footage's GUI (e.g health bar).
That made me think; why not make some sort of make which replaces parts of the video by it's original one, via the use of a mask
Example for Apex Legends:
Mask (made it in literally 3 minutes, just to show what i mean):
https://i.imgur.com/uOaEoad.png
GUI looks like this:
https://i.imgur.com/jj0WG3P.png
process I could imagine it going through:
clip = ffms2.Source("video.mp4")
mask = getimage("apexlegends.png")
original = clip
clip = blur (clip)
clip = merge(clip, mask, original)
clip .set_output()
Any knowledgeable fellas know plugins or scripts that would be capable to do this sort of masking/overlay?
That made me think; why not make some sort of make which replaces parts of the video by it's original one, via the use of a mask
Example for Apex Legends:
Mask (made it in literally 3 minutes, just to show what i mean):
https://i.imgur.com/uOaEoad.png
GUI looks like this:
https://i.imgur.com/jj0WG3P.png
process I could imagine it going through:
clip = ffms2.Source("video.mp4")
mask = getimage("apexlegends.png")
original = clip
clip = blur (clip)
clip = merge(clip, mask, original)
clip .set_output()
Any knowledgeable fellas know plugins or scripts that would be capable to do this sort of masking/overlay?