我在AVAsset的帮助下使用图像阵列和音频文件创建了视频。 我按照以下链接寻求帮助: Make movie file with picture Array and song file, using AVAsset
但在新视频中,图片不在中心位置。如何将我的图像放在中心?
答案 0 :(得分:1)
这可能是因为您在视频设置中传递的视频大小不是比例...
NSDictionary *videoSettings = [NSDictionary dictionaryWithObjectsAndKeys:
AVVideoCodecH264, AVVideoCodecKey,
[NSNumber numberWithInt:standardWidth], AVVideoWidthKey,
[NSNumber numberWithInt:standardHeight], AVVideoHeightKey,
nil];
您可以在您所需的分辨率附近查看一个 standard video resolutions