Compare commits

..

No commits in common. "main" and "v1.0.8" have entirely different histories.
main ... v1.0.8

View File

@ -126,9 +126,9 @@ namespace VideoConcat.ViewModels
string extension = Path.GetExtension(currentVideo); string extension = Path.GetExtension(currentVideo);
// 生成唯一的文件名:原始名称+方案号+生成日期+序号 // 生成唯一的文件名:原始名称+方案号+生成日期+序号
string modeSuffix = ExtractWindowModel.ExtractFrameMode == Models.ExtractFrameMode.DeleteFrame ? "1" : "2"; string modeSuffix = ExtractWindowModel.ExtractFrameMode == Models.ExtractFrameMode.DeleteFrame ? "方案1" : "方案2";
string dateStr = DateTime.Now.ToString("MMdd"); string dateStr = DateTime.Now.ToString("yyyyMMdd");
string _tmpFileName = $"{originalFileName}_{dateStr}{modeSuffix}{currentIndex:D4}{extension}"; string _tmpFileName = $"{originalFileName}_{modeSuffix}_{dateStr}_{currentIndex:D4}{extension}";
string outPath = Path.Combine(_tmpPath, "out"); string outPath = Path.Combine(_tmpPath, "out");
LogUtils.Info($"准备创建输出目录:{outPath}"); LogUtils.Info($"准备创建输出目录:{outPath}");