capdevon / jme-video-player

Media Player for jMonkeyEngine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jme-video-player

Requirements

  • jmonkeyengine - A complete 3D game development suite written purely in Java.
  • Minie - A physics library for JMonkeyEngine.
  • JavaFX
  • JDK-11 (minimum), JDK-17 (preferred)

Youtube Videos

How to build on Mac/Linux

  • Download jdk-17 (preferred) or jdk-11 (minimum) from :
  • Clone locally.
cd ./Gradle-Projects
git clone https://github.com/capdevon/jme-video-player.git
  • Run gradle build script:
./gradlew build
  • Change the mainClassName to your favourite demo class in the build.gradle.
  • Now test by running the gradle run task:
./gradlew run
  • To visualize the stacktrace, add --stacktrace to the above commands:
./gradlew build --stacktrace
./gradlew run --stacktrace
  • To stop the daemon process, use stop:
./gradlew -stop

How to build on Windows

  • Use the same commands with the same steps, but change ./gradlew with gradle:
gradle build --stacktrace
gradle run --stacktrace
gradle -stop

About

Media Player for jMonkeyEngine

License:MIT License


Languages

Language:Java 98.5%Language:GLSL 1.5%