-
-
Notifications
You must be signed in to change notification settings - Fork 3
Blur Extension
Blurs Video
Blurs Video, using a variety of FFMpeg filters.
- https://ffmpeg.org/ffmpeg-filters.html#avgblur
- https://ffmpeg.org/ffmpeg-filters.html#boxblur
- https://ffmpeg.org/ffmpeg-filters.html#dblur
- https://ffmpeg.org/ffmpeg-filters.html#gblur
- https://ffmpeg.org/ffmpeg-filters.html#smartblur-1
- https://ffmpeg.org/ffmpeg-filters.html#yaepblur
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[Switch] |
true | named | true (ByPropertyName) |
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 1 | true (ByPropertyName) |
The radius of the blur.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 2 | false |
Set vertical radius size, if zero it will be same as sizeX. Default is 0. With avgblur, this will be the sizeX parameter With gblur, this will be the sigmaV parameter.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 3 | false |
The angle of the blur. Used in dblur.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 4 | false |
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 5 | false |
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 6 | false |
Set the luma threshold used as a coefficient to determine whether a pixel should be blurred or not. The option value must be an integer in the range [-30,30]. A value of 0 will filter all the image, a value included in [0,30] will filter flat areas and a value included in [-30,0] will filter edges. Default value is 0.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[Int32] |
false | 7 | false |
Set the chroma threshold used as a coefficient to determine whether a pixel should be blurred or not. The option value must be an integer in the range [-30,30]. A value of 0 will filter all the image, a value included in [0,30] will filter flat areas and a value included in [-30,0] will filter edges. Default value is 0.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[Int32] |
false | 8 | false |
Set which planes to filter. By default all planes are filtered.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | 9 | false |
Extension/Blur.RoughDraft.Extension.ps1 -Blur [[-BlurType] <String>] [[-BlurRadius] <String>] [[-BlurRadiusY] <String>] [[-BlurAngle] <String>] [[-BlurLumaStrength] <String>] [[-BlurChromaStrength] <String>] [[-BlurLumaThreshold] <Int32>] [[-BlurChromaThreshold] <Int32>] [[-BlurPlanes] <String>] [<CommonParameters>]