This commit is contained in:
Frank Skare
2020-04-25 23:59:05 +02:00
parent 5f73be07e8
commit c67d5f10f8
3 changed files with 7 additions and 7 deletions

View File

@@ -104,12 +104,12 @@ Table of contents
About About
----- -----
mpv.net is a modern desktop media player for Windows based on mpv. mpv is a media player based on MPlayer and mplayer2. mpv.net is a modern desktop media player for Windows based on the popular mpv player.
libmpv provides the majority of the features of the mpv player. mpv focuses on the usage of the command line interface, mpv.net retains the ability to be used from the command line and adds a modern Windows GUI on top of it.
mpv.net is designed to be mpv compatible, almost all mpv features are available because they are all contained in libmpv, this means the official [mpv manual](https://mpv.io/manual/master/) applies to mpv.net. mpv.net is designed to be mpv compatible, almost all mpv features are available because they are all contained in libmpv, this means the official [mpv manual](https://mpv.io/manual/master/) applies to mpv.net.
mpv focuses on the usage of the command line and the terminal, mpv.net retains the ability to be used from the command line and the terminal and adds a modern Windows GUI on top of it.
Download Download
-------- --------
@@ -245,7 +245,7 @@ Terminal
When mpv.net is started from a terminal it will output status, error and debug messages to the terminal and accept input keys from the terminal. When mpv.net is started from a terminal it will output status, error and debug messages to the terminal and accept input keys from the terminal.
In the context menu under 'Tools > Setup' a button can be found to add mpv.net to the path environment variable. In the context menu under _Tools > Setup_ a button can be found to add mpv.net to the path environment variable.
A common task for the terminal is debugging scripts. A common task for the terminal is debugging scripts.
@@ -510,7 +510,7 @@ The config editor adds it's controls dynamically and uses [TOML](https://en.wiki
content. content.
Third party components: Third party components are:
- [libmpv provides the core functionality](https://mpv.io/) - [libmpv provides the core functionality](https://mpv.io/)
- [MediaInfo](https://mediaarea.net/en/MediaInfo) - [MediaInfo](https://mediaarea.net/en/MediaInfo)

View File

@@ -3,7 +3,7 @@
![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/stax76/mpv.net) ![GitHub closed issues](https://img.shields.io/github/issues-closed/stax76/mpv.net) ![GitHub All Releases](https://img.shields.io/github/downloads/stax76/mpv.net/total) ![GitHub tag (latest by date)](https://img.shields.io/github/tag-date/stax76/mpv.net) ![GitHub stars](https://img.shields.io/github/stars/stax76/mpv.net) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/stax76/mpv.net) ![GitHub closed issues](https://img.shields.io/github/issues-closed/stax76/mpv.net) ![GitHub All Releases](https://img.shields.io/github/downloads/stax76/mpv.net/total) ![GitHub tag (latest by date)](https://img.shields.io/github/tag-date/stax76/mpv.net) ![GitHub stars](https://img.shields.io/github/stars/stax76/mpv.net)
🎞 mpv.net ?? mpv.net
========== ==========
mpv.net is a modern media player for Windows based on the popular [mpv](https://mpv.io) player. mpv.net is a modern media player for Windows based on the popular [mpv](https://mpv.io) player.

View File

@@ -9,7 +9,7 @@ class Script
{ {
public Script() public Script()
{ {
string content = "ctrl+ö script-message my-message-1 my-argument-1"; string content = "ctrl+w script-message my-message-1 my-argument-1";
string sectionName = Assembly.GetExecutingAssembly().GetName().Name; string sectionName = Assembly.GetExecutingAssembly().GetName().Name;
mp.commandv("define-section", sectionName, content, "force"); mp.commandv("define-section", sectionName, content, "force");
mp.commandv("enable-section", sectionName); mp.commandv("enable-section", sectionName);