This commit is contained in:
Frank Skare
2019-07-27 01:17:25 +02:00
parent 9d37e67901
commit 8430842679
23 changed files with 283 additions and 542 deletions

View File

@@ -0,0 +1,40 @@
using System;
using System.Windows.Forms;
using mpvnet;
class Script
{
MainForm Form;
bool WasPlaying;
bool WasPaused;
public Script()
{
Form = MainForm.Instance;
Form.Resize += Form_Resize;
}
private void Form_Resize(object sender, EventArgs e)
{
if (Form.WindowState == FormWindowState.Minimized)
{
WasPlaying = mp.get_property_string("pause") == "no";
if (WasPlaying)
{
mp.command("set pause yes");
WasPaused = true;
}
}
else
{
if (WasPaused)
{
mp.command("set pause no");
WasPaused = false;
}
}
}
}