默认使用libwebp_anim编码器

This commit is contained in:
ww-rm
2025-04-09 15:24:48 +08:00
parent b404d8e79a
commit 86c383f2cf
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ namespace SpineViewer.Exporter
/// <summary> /// <summary>
/// 编码器 /// 编码器
/// </summary> /// </summary>
public string Codec { get; set; } = "libwebp"; public string Codec { get; set; } = "libwebp_anim";
/// <summary> /// <summary>
/// 是否无损 /// 是否无损

View File

@@ -16,7 +16,7 @@ namespace SpineViewer.PropertyGridWrappers.Exporter
/// <summary> /// <summary>
/// 编码器 /// 编码器
/// </summary> /// </summary>
[StringEnumConverter.StandardValues("libwebp", Customizable = true)] [StringEnumConverter.StandardValues("libwebp_anim", "libwebp", Customizable = true)]
[TypeConverter(typeof(StringEnumConverter))] [TypeConverter(typeof(StringEnumConverter))]
[Category("[3] "), DisplayName(""), Description("-c:v, 使")] [Category("[3] "), DisplayName(""), Description("-c:v, 使")]
public string Codec { get => Exporter.Codec; set => Exporter.Codec = value; } public string Codec { get => Exporter.Codec; set => Exporter.Codec = value; }