[FFmpeg-devel] [PATCH v2 2/2] ibavformat/mov: Add support for exporting poster time.

2022-10-05 Thread Bryce Chester Newman
From: Bryce Chester Newman Change demuxer option name from poster_time_location to export_poster_time_location. Export the poster_time_location if available. The poster_time_location is calculated using the poster_time / time_scale = X seconds. The value of poster_time_location indicates where

[FFmpeg-devel] [PATCH v2 1/2] libavformat/mov: Add support for exporting poster time.

2022-10-05 Thread Bryce Chester Newman
From: Bryce Chester Newman Export the poster_time_location if available. The poster_time_location is calculated using the poster_time / time_scale = X seconds. The value of poster_time_location indicates where in the video the poster frame is. Addresses feedback from https://www.mail

[FFmpeg-devel] [PATCH] libavformat/mov: Add support for exporting poster time.

2022-10-03 Thread Bryce Chester Newman
From: Bryce Chester Newman Export the poster_time_location if available. The poster_time_location is calculated using the poster_time / time_scale = X seconds. The value of poster_time_location indicates where in the video the poster frame is. Addresses feedback from https://www.mail

[FFmpeg-devel] [PATCH] [PATCH] libavformat/mov: Expose Quicktime poster_time value as metadata TAG.

2022-02-02 Thread Bryce Chester Newman
From: Bryce Chester Newman I need the ability to derive the poster time found in the mvhd, so I can use that value to create a thumbnail from ffmpeg. More details can be found here https://www.mail-archive.com/ffmpeg-user@ffmpeg.org/msg30003.html Signed-off-by: Bryce Chester Newman