namespace dy.net.model.dto { public class MediaMergeRequest { /// 网络图片地址数组(必填) public List ImageUrls { get; set; } /// 网络MP3地址数组(必填) public List AudioUrls { get; set; } /// 每张图片显示时长(秒,默认3秒) public int ImageDurationPerSecond { get; set; } = 3; /// 视频分辨率(格式:1920x1080,默认1920x1080) public int VideoWidth { get; set; } = 1080; public int VideoHeight { get; set; } = 1920; /// 输出视频格式(默认mp4) public string OutputFormat { get; set; } = "mp4"; /// 视频帧率(默认25) public int VideoFps { get; set; } = 25; } }