Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 3.54 KB

findie-changelog.md

File metadata and controls

87 lines (64 loc) · 3.54 KB

Findie Changelog

Full list

https://github.com/findie/FFmpeg/commits/findie?author=legraphista

2018 07 18

  • vf_framechange

2018 03 01

  • vf_drawbox
    • 6b6097a added color expressions
      • color_alpha_expr: manipulate the color's alpha channel
      • color_red_expr : manipulate the color's red channel
      • color_green_expr: manipulate the color's green channel
      • color_blue_expr : manipulate the color's blue channel
      • color_y_expr : manipulate the color's Y channel
      • color_u_expr : manipulate the color's U channel
      • color_v_expr : manipulate the color's V channel

2018 02 27

  • vf_zoom
    • 09e61dc added filter
      • zoom/z: [1] expression to set the zooming of the frame
      • fillcolor: [black@0] set the background color (used when zoom < 1 or frame has transparency)
      • interpolation: [fast_bilinear] interpolation algorithm
        • fast_bilinear
        • bilinear
        • bicubic
        • x
        • point
        • area
        • bicublin
        • gauss
        • sinc
        • lanczos
        • spline

2018 02 15

  • vf_framechange
    • a480486 added filter
      • threshold: [10] the minimum amount of pixel change before a change is registered
      • mode: [absolute] the mode in which the pixels get counted
        • absolute: a changed pixel counts as 1
        • percentage: a changed pixel counts as the absolute difference between the sources, divided by 255
      • show: [0] render video frames with changes

2018 02 13

  • vf_drawbox
    • a8cd882 breaking change: t will stand for time in expressions, thickness for thickness

2018 01 26

  • vf_drawtext
    • 4b728a1 update clip_* to be expressions and to be accessed from other expressions

2018 01 18

  • vf_drawtext
    • e7f31da add clip_enable flag to disabled clipping of text

2018 01 17

  • vf_drawtext
    • c28495c add clip_(top|left|right|bottom) to clip text
    • fd38d34 add offset(x|y) to offset text

2018 01 16

  • vf_drawtext
    • 9f921d7 add word_spacing that overrides \s and \t

2018 01 13

  • vf_drawbox
    • 1a534fa fix x/y position being behind by one frame

2018 01 12

  • vf_drawbox
    • a85563f add time as a variable in expressions
    • a85563f enabled expression parsing every frame