diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-28 17:09:36 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-28 17:09:36 +0200 |
commit | e377208d43d95d024cf1af3110036366ed4379c9 (patch) | |
tree | 3659692582f54a64db1638699cc6f85ffa666e45 | |
parent | 782763ed2bad79be254abcd8d3fc2bde7f14c2f5 (diff) | |
download | ffmpeg-e377208d43d95d024cf1af3110036366ed4379c9.tar.gz |
ffmpeg: dont copy creation_time as the destination file is not created at that time
Fixes Ticket1439
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | ffmpeg.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5242,6 +5242,7 @@ loop_end: AV_DICT_DONT_OVERWRITE); if(o->recording_time != INT64_MAX) av_dict_set(&oc->metadata, "duration", NULL, 0); + av_dict_set(&oc->metadata, "creation_time", NULL, 0); } if (!o->metadata_streams_manual) for (i = output_files[nb_output_files - 1]->ost_index; i < nb_output_streams; i++) { |