Hi,
I was thinking about introducing support for meta() function in the
expression evaluation language. As the ffmpeg filters gradually add
support for metadata, it would be convenient to do something like this:
> ffmpeg -i input.webm -vf
> cropdetect,crop=x=meta('lavfi.cropdetect.x'):y=meta('la
the libavfilter/vf_blackframe.c filter now not only logs detected
values, but also sets frame metadata. Currently, only `pblack` value is set
but `SET_META` macro has been introduced to ease development in the future.
Signed-off-by: Stepan Bujnak
---
Updated version that removes redundant
On 11.07.2014 22:25, wm4 wrote:
On Fri, 11 Jul 2014 22:13:54 +0200
Stepan Bujnak wrote:
the libavfilter/vf_blackframe.c filter now not only logs detected
values, but also sets frame metadata. The metadata have prefix
'lavfi.blackframe.*'.
Signed-off-by: Stepan Bujnak
---
l
the libavfilter/vf_blackframe.c filter now not only logs detected
values, but also sets frame metadata. The metadata have prefix
'lavfi.blackframe.*'.
Signed-off-by: Stepan Bujnak
---
libavfilter/vf_blackframe.c | 29 +
1 file changed, 25 insertions(+), 4