This commit is contained in:
stax76
2017-09-02 04:58:37 +02:00
parent 0ef1ed60fd
commit 5a902df64e
3 changed files with 12 additions and 4 deletions

View File

@@ -20,7 +20,6 @@ Imports System.IO
Imports vbnet
Imports mpvnet
Imports vbnet.UI.MainModule
Imports CSScriptLibrary
<Export(GetType(IAddon))>

View File

@@ -1,9 +1,12 @@
# mpv.net
mpv.net is a libmpv based media player for Windows, it looks and works exactly like mpv, even shares the same settings.
mpv.net is a libmpv based media player for Windows, it looks and works like mpv, even shares the settings and therefore the mpv documentation applies, it can be found at:
https://mpv.io/manual/master/
### Features
- mpv's OSC, IPC, Lua/JS, conf files and more
- Context menu which can be customized
- Addons implemented with the Managed Extension Framework (MEF)
- C# scripts implemented with CS-Script
@@ -32,3 +35,11 @@ class Script
}
}
```
### Context Menu
The context menu can be customized via input.conf file located at:
C:\Users\Frank\AppData\Roaming\mpv\input.conf
https://github.com/stax76/mpvnet/blob/master/mpvnet/Resources/input_conf.txt

View File

@@ -23,8 +23,6 @@ using System.Collections.Generic;
using mpvnet;
using System.IO;
// MEF (Managed Extension Framework)
namespace Rating
{
[Export(typeof(IAddon))]