From fd175df6015e0e57d098f7f60740b9fdef661ba7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 7 Aug 2020 23:41:15 +0200 Subject: [PATCH] Try to enable all streams in MOV exports. This is a speculative fix which I haven't tested. --- src/lib/ffmpeg_file_encoder.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ffmpeg_file_encoder.cc b/src/lib/ffmpeg_file_encoder.cc index 05b6b7fe5..9a3c434d4 100644 --- a/src/lib/ffmpeg_file_encoder.cc +++ b/src/lib/ffmpeg_file_encoder.cc @@ -80,6 +80,7 @@ public: } _stream->id = stream_index; + _stream->disposition |= AV_DISPOSITION_DEFAULT; DCPOMATIC_DISABLE_WARNINGS _stream->codec = _codec_context; DCPOMATIC_ENABLE_WARNINGS -- 2.30.2