You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to set the preset as AVAssetExportPresetPassthrough to get the exact same resolution of input video but it is not adding watermark into the video.
Following does not add watermark to the video. let exportSession = AVAssetExportSession(asset: mixComposition, presetName: AVAssetExportPresetPassthrough)
But with following preset it is working. let exportSession = AVAssetExportSession(asset: mixComposition, presetName: AVAssetExportPresetHighestQuality)
even if I set AVAssetExportPresetMediumQuality, it is adding watermark but only it is not working with AVAssetExportPresetPassthrough
The text was updated successfully, but these errors were encountered:
I am trying to set the preset as
AVAssetExportPresetPassthrough
to get the exact same resolution of input video but it is not adding watermark into the video.Following does not add watermark to the video.
let exportSession = AVAssetExportSession(asset: mixComposition, presetName: AVAssetExportPresetPassthrough)
But with following preset it is working.
let exportSession = AVAssetExportSession(asset: mixComposition, presetName: AVAssetExportPresetHighestQuality)
even if I set
AVAssetExportPresetMediumQuality
, it is adding watermark but only it is not working withAVAssetExportPresetPassthrough
The text was updated successfully, but these errors were encountered: