Exporting a Matroska file using MKVExporter we set the properties FileName, Path, CameraList, and AudioList.
In the resultant file we find there are two video streams.
Video stream index 0 - codec_id = AV_CODEC_ID_H264, pic_fmt = AV_PIX_FMT_YUVJ420P
Video stream index 1 - codec_id = AV_CODEC_ID_MJPEG, pic_fmt = AV_PIX_FMT_NONE
If we use stream index 0 the video plays normally, however, it appears that the second stream may not be fully formed and we cannot display anything from it.
The documentation suggests that there should only be one video stream per exported Matroska file. Since we are seeing two is there a configuration/setting/property that is required to be set to restrict the video streams to one?