diff options
author | Alexandre Heitor Schmidt <alexandre.schmidt@gmail.com> | 2020-01-01 16:57:02 +0000 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-01-10 23:08:18 +0100 |
commit | ae436cc5e4d75c1a7deefb2b30820486e2f3d8af (patch) | |
tree | 7af074782f4590de4a57f960a3ca993ac517a610 /libavformat/img2.h | |
parent | ad1b0a12f34d57ed5bfb952ce67bce8f48b3ec0e (diff) | |
download | ffmpeg-ae436cc5e4d75c1a7deefb2b30820486e2f3d8af.tar.gz |
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>
Diffstat (limited to 'libavformat/img2.h')
-rw-r--r-- | libavformat/img2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/img2.h b/libavformat/img2.h index 0e5b374a6b..5fd8ff77fc 100644 --- a/libavformat/img2.h +++ b/libavformat/img2.h @@ -61,6 +61,7 @@ typedef struct VideoDemuxData { int start_number_range; int frame_size; int ts_from_file; + int export_path_metadata; /**< enabled when set to 1. */ } VideoDemuxData; typedef struct IdStrMap { |