mpv/DOCS/client_api_examples
wm4 f551fbaa25 DOCS/client_api_examples: add an alternative qml example
This one avoids use of a FBO. It's less flexible, because it uses works
around the whole QML rendering API. It seems to be the only way to get
OpenGL rendering without any indirections, though.

Parts of this example were insipired by Qt's "Squircle" example.

Also add a README file with a short description of each example, to
reduce the initial confusing.
2015-01-08 02:40:30 +01:00
..
cocoa build: try to make examples build both in-tree and out-of-tree 2015-01-02 00:00:03 +01:00
qml DOCS/client_api_examples: qml: add test for gamma control 2015-01-06 17:35:10 +01:00
qml_direct DOCS/client_api_examples: add an alternative qml example 2015-01-08 02:40:30 +01:00
qt DOCS/client_api_examples: qtexample: demonstrate multiple mpv instances 2015-01-06 11:56:10 +01:00
simple build: try to make examples build both in-tree and out-of-tree 2015-01-02 00:00:03 +01:00
Copyright DOCS/client_api_examples: add an explicit license 2014-12-30 22:47:50 +01:00
README.md DOCS/client_api_examples: add an alternative qml example 2015-01-08 02:40:30 +01:00

README.md

Client API examples

All these examples use the mpv client API through libmpv.

cocoa

Shows how to embed the mpv video window in Objective-C/Cocoa.

qml

Shows how to use mpv's OpenGL video renderer in QtQuick2 with QML.

qml_direct

Alternative example, which typically avoids a FBO indirection. Might be slightly faster, but is less flexible and harder to use.

qt

Shows how to embed the mpv video window in Qt (using normal desktop widgets).

simple

Very primitive terminal-only example. Shows some most basic API usage.