I am getting this error when creating a MediaConvert job
/outputGroups/0/outputs/0/containerSettings: Should have at most 2 properties
This is my ContainerSettings:
ContainerSettings mp4ContainerSettings = new ContainerSettings()
{
Container = ContainerType.MP4,
Mp4Settings = new Mp4Settings()
{
CslgAtom = Mp4CslgAtom.INCLUDE,
FreeSpaceBox = Mp4FreeSpaceBox.EXCLUDE,
MoovPlacement = Mp4MoovPlacement.PROGRESSIVE_DOWNLOAD
}
};
Any ideas?
I also tested and got same results with
ContainerSettings thumbnailsContainerSettings = new ContainerSettings()
{
Container = ContainerType.RAW
};
I tested with container type M3U8 and it executed successfully.