I have created video using image array and audio file with the help of AVAsset. I followed below link for help: Make movie file with picture Array and song file, using AVAsset
but In new video ,image is not in center. how to put my image in center?
I have created video using image array and audio file with the help of AVAsset. I followed below link for help: Make movie file with picture Array and song file, using AVAsset
but In new video ,image is not in center. how to put my image in center?
This can be because of video size you passed inside video settings are not in ratio...
NSDictionary *videoSettings = [NSDictionary dictionaryWithObjectsAndKeys:
AVVideoCodecH264, AVVideoCodecKey,
[NSNumber numberWithInt:standardWidth], AVVideoWidthKey,
[NSNumber numberWithInt:standardHeight], AVVideoHeightKey,
nil];
You can check one near to ur required resolutions standard video resolutions