This commit is contained in:
Frank Skare
2019-04-27 21:55:31 +02:00
parent 9170e55d81
commit 619fcef63f
3 changed files with 7 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ mpv.net is based on libmpv which offers a straightforward C API that was designe
#### CLI options #### CLI options
mpv.net has a CLI parser to support the [CLI options](https://mpv.io/manual/master/#options) of mpv/libmpv. mpv.net has the same [CLI options](https://mpv.io/manual/master/#options) as mpv.
#### High quality video output #### High quality video output
@@ -50,7 +50,10 @@ Table of contents
- Modern UI with dark mode ([Screenshot](#config-editor)) - Modern UI with dark mode ([Screenshot](#config-editor))
- Addon/extension API for .NET languages - Addon/extension API for .NET languages
- Scripting API for Python, C#, Lua, JavaScript and PowerShell ([wiki](https://github.com/stax76/mpv.net/wiki/Scripting)) - Scripting API for Python, C#, Lua, JavaScript and PowerShell ([wiki](https://github.com/stax76/mpv.net/wiki/Scripting))
- mpv's OSC, CLI, IPC and conf files - mpv's OSC, IPC and conf files
- Support of the same [CLI options](https://mpv.io/manual/master/#options) as mpv
- DXVA2 video decoding acceleration
- OpenGL based video output capable of features loved by videophiles, such as video scaling with popular high quality algorithms, color management, frame timing, interpolation, HDR, and more
### Screenshots ### Screenshots

View File

@@ -178,7 +178,6 @@
</EmbeddedResource> </EmbeddedResource>
<None Include="..\README.md"> <None Include="..\README.md">
<Link>README.md</Link> <Link>README.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None> </None>
<None Include="app.manifest" /> <None Include="app.manifest" />
<None Include="packages.config" /> <None Include="packages.config" />

View File

@@ -7,7 +7,7 @@
AppId={{9AA2B100-BEF3-44D0-B819-D8FC3C4D557D}} AppId={{9AA2B100-BEF3-44D0-B819-D8FC3C4D557D}}
AppName={#MyAppName} AppName={#MyAppName}
AppVersion={#MyAppVersion} AppVersion={#MyAppVersion}
AppPublisher=stax76 AppPublisher=Frank Skare (stax76)
ArchitecturesInstallIn64BitMode=x64 ArchitecturesInstallIn64BitMode=x64
Compression=lzma2 Compression=lzma2
DefaultDirName={pf}\{#MyAppName} DefaultDirName={pf}\{#MyAppName}
@@ -15,6 +15,7 @@ OutputBaseFilename=mpvnet-setup-x64-{#MyAppVersion}
OutputDir=C:\Users\frank\Desktop OutputDir=C:\Users\frank\Desktop
DefaultGroupName={#MyAppName} DefaultGroupName={#MyAppName}
SetupIconFile=mpv.net\mpvnet.ico SetupIconFile=mpv.net\mpvnet.ico
UninstallDisplayIcon={app}\{#MyAppExeName}
[Icons] [Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"