summaryrefslogtreecommitdiffstats
path: root/libmpv/java/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libmpv/java/README.txt')
-rw-r--r--libmpv/java/README.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/libmpv/java/README.txt b/libmpv/java/README.txt
new file mode 100644
index 0000000..5075223
--- /dev/null
+++ b/libmpv/java/README.txt
@@ -0,0 +1,11 @@
+This example uses JNA to access the functions in libmpv, and places the
+video on a JavaFX Stage. It also uses the user32 library (Windows) to get
+the Window ID of the Stage in order to direct the video to this window.
+This is platform specific, but similar functions exist on other platforms.
+
+To run this example, import as a Maven project. Create a folder "Lib" and
+place the "mpv-1.dll" in it.
+
+It is also possible to put the dll in the "src/main/resources/win32-x86-64/lib"
+folder. This allows you to package multiple libraries into a target JAR and
+have JNA load the correct platform specific library automatically.