]> git.sesse.net Git - ffmpeg/commit
avformat/img2dec: add option to provide metadata fields related to input path
authorAlexandre Heitor Schmidt <alexandre.schmidt@gmail.com>
Wed, 1 Jan 2020 16:57:02 +0000 (16:57 +0000)
committerMarton Balint <cus@passwd.hu>
Fri, 10 Jan 2020 22:08:18 +0000 (23:08 +0100)
commitae436cc5e4d75c1a7deefb2b30820486e2f3d8af
tree7af074782f4590de4a57f960a3ca993ac517a610
parentad1b0a12f34d57ed5bfb952ce67bce8f48b3ec0e
avformat/img2dec: add option to provide metadata fields related to input path

libavformat/img2.h: New field export_path_metadata to
VideoDemuxData to only allow the use of the extra metadata
upon explicit user request, for security reasons.

libavformat/img2dec.c: Modify image2 demuxer to make available
two special metadata entries called lavf.image2dec.source_path
and lavf.image2dec.source_basename, which represents, respectively,
the complete path to the source image for the current frame and
the basename i.e. the file name related to the current frame.
These can then be used by filters like drawtext and others. The
metadata fields will only be available when explicitly enabled
with image2 option -export_path_metadata 1.

doc/demuxers.texi: Documented the new metadata fields available
for image2 and how to use them.

doc/filters.texi: Added an example on how to use the new metadata
fields with drawtext filter, in order to plot the input file path
to each output frame.

Usage example:

ffmpeg -f image2 -export_path_metadata 1 -pattern_type glob
 -framerate 18 -i '/path/to/input/files/*.jpg'
 -filter_complex drawtext="fontsize=40:fontcolor=white:
 fontfile=FreeSans.ttf:borderw=2:bordercolor=black:
 text='%{metadata\:lavf.image2dec.source_basename\:NA}':x=5:y=50"
 output.avi

Fixes #2874.

Signed-off-by: Alexandre Heitor Schmidt <alexandre.schmidt@gmail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
doc/demuxers.texi
doc/filters.texi
libavformat/img2.h
libavformat/img2dec.c
libavformat/version.h