I am joining two video clips with AVMutableComposition and exporting the result using AVAssetExportSession. The problem is that one of the clips ends up having a slightly different color tint than the other, so that the edit is clearly visible. Notes and observations:
- Both source clips are color-matched perfectly.
- Both source clips are encoded using the baseline H264 profile, but they come from a different encoder. One is created by FFmpeg, the other comes from an iPhone (it’s a result of a previous export session).
- The color shift is only visible when the troublesome clip is combined with others. When it’s the only one in the composition the colors are fine.
- The problem only appears on the device, on Simulator the export is fine (no color shift visible).
- The problem disappears when I use the
AVAssetExportPresetPassthroughexport preset. But I can’t use that in the production code.
Do you have any idea what could be going on?