mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-18 12:36:44 +00:00
version 5.1 and 6.1 added
This commit is contained in:
parent
105a26bf5e
commit
09ae9447c8
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,8 @@ public enum FFMpegBinaries : ushort
|
|||
public enum FFMpegVersions : ushort
|
||||
{
|
||||
Latest,
|
||||
V6_1,
|
||||
V5_1,
|
||||
V4_4_1,
|
||||
V4_2_1,
|
||||
V4_2,
|
||||
|
@ -213,6 +215,8 @@ private class VersionInfo
|
|||
private static readonly Dictionary<FFMpegVersions, string> _FFBinariesAPIs = new()
|
||||
{
|
||||
{ FFMpegVersions.Latest, "https://ffbinaries.com/api/v1/version/latest" },
|
||||
{ FFMpegVersions.V6_1, "https://ffbinaries.com/api/v1/version/6.1" },
|
||||
{ FFMpegVersions.V5_1, "https://ffbinaries.com/api/v1/version/5.1" },
|
||||
{ FFMpegVersions.V4_4_1, "https://ffbinaries.com/api/v1/version/4.4.1" },
|
||||
{ FFMpegVersions.V4_2_1, "https://ffbinaries.com/api/v1/version/4.2.1" },
|
||||
{ FFMpegVersions.V4_2, "https://ffbinaries.com/api/v1/version/4.2" },
|
||||
|
|
Loading…
Reference in a new issue