lazy-compress-h265/Program.cs

61 lines
1.7 KiB
C#
Raw Normal View History

2020-05-09 14:26:37 +02:00
using System;
using System.Collections.Generic;
2020-05-09 16:36:14 +02:00
using System.Diagnostics;
2020-05-09 14:26:37 +02:00
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
2020-05-09 16:36:14 +02:00
using Microsoft.Win32;
2020-05-09 14:26:37 +02:00
namespace CompressH265 {
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
2020-05-09 16:36:14 +02:00
static void Main(string[] args) {
foreach(var item in args)
{
Console.WriteLine(item);
if (item == "-contextmenu") {
installContextMenu();
System.Environment.Exit(1);
}
}
2020-05-09 14:26:37 +02:00
// ***this line is added***
if (Environment.OSVersion.Version.Major >= 6)
SetProcessDPIAware();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
2020-05-09 16:36:14 +02:00
2020-05-09 14:26:37 +02:00
}
// ***also dllimport of that function***
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern bool SetProcessDPIAware();
2020-05-09 16:36:14 +02:00
public static void installContextMenu() {
RegistryKey item = null;
try {
item = Registry.ClassesRoot.CreateSubKey("*\\shell\\Compress to H.265 (HEVC)\\command");
item.SetValue("", System.Reflection.Assembly.GetExecutingAssembly().Location + " -i \"%1\"");
}
catch(Exception ex)
{
}
finally
{
if(item != null)
item.Close();
}
}
2020-05-09 14:26:37 +02:00
}
}