2025-01-27 22:22:47 -05:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace FFMpegCore.Extensions.Downloader.Enums;
|
|
|
|
|
|
|
|
|
|
public enum FFMpegVersions : ushort
|
|
|
|
|
{
|
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/latest")]
|
|
|
|
|
Latest,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/6.1")]
|
|
|
|
|
V6_1,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/5.1")]
|
|
|
|
|
V5_1,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/4.4.1")]
|
|
|
|
|
V4_4_1,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/4.2.1")]
|
|
|
|
|
V4_2_1,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/4.2")]
|
|
|
|
|
V4_2,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/4.1")]
|
|
|
|
|
V4_1,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/4.0")]
|
|
|
|
|
V4_0,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/3.4")]
|
|
|
|
|
V3_4,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/3.3")]
|
|
|
|
|
V3_3,
|
2025-01-27 22:30:22 -05:00
|
|
|
|
|
2025-01-27 22:22:47 -05:00
|
|
|
|
[Description("https://ffbinaries.com/api/v1/version/3.2")]
|
|
|
|
|
V3_2
|
|
|
|
|
}
|