Example #1
0
 public FFmpegUpdateChecker(string owner, string repo) : base(owner, repo)
 {
     if (NativeMethods.Is64Bit())
     {
         Architecture = FFmpegArchitecture.win64;
     }
     else
     {
         Architecture = FFmpegArchitecture.win32;
     }
 }
Example #2
0
 public FFmpegUpdateChecker(string owner, string repo, FFmpegArchitecture architecture) : base(owner, repo)
 {
     Architecture = architecture;
 }