Skip to content

SrRapero720/watermedia

Repository files navigation

CurseForge downloads CurseForge Minecraft versions supported Github issues GitHub Actions Workflow Status JitPack

WATERMeDIA | MULTIMEDIA API

API-Library providing multimedia support using LibVLC, used by Minecraft mods like VideoPlayer. Designed to be used in pure Java and Minecraft environments using MinecraftForge (NeoForge) and Fabric (Quilt).

our API provides an extra layer of VLCJ MediaPlayers making easier player management, async task and concurrency. Custom URLFixers to provide support of platforms like Youtube, Twitch, Kick.com, Google Drive, OneDrive, Dropbox, Imgur, Twitter and PornHub.

VERSION STATUS

WATERMeDIA can be loaded in any MC version in range of 1.12.2 ~ 1.20.x and outside Minecraft using the proper dependencies.

IMPORTANT: we only support most popular versions of Minecraft. QUILT ABOUT: Quilt is not officially supported.
Is a dead modloader, and the only "reason" to use it are political reasons. sorry, but I not going to support another broken modloader

Version Forge Fabric NeoForge
1.12.2 🚨 🚫 🚫
1.16.5 🚨 🚨 🚫
1.18.2 🚫
1.19.2 🚫
1.20.x
1.21.x ! !

✔ - SUPPORTED ||| ⚠ - PLANNED ||| ⛔ - NOT SUPPORT ||| 🚫 - N/A ||| 🚨 - DROPPING

INSTALLATION

You can use two ways to install this mod in your project

CURSEMAVEN

CurseMaven uses CurseForge network to download any released version even if it wasn't approved. This option doesn't include JavaDoc or Sources, so all stacktrace doesn't going to match with your decompiled bytecode checkout what is the latest version file ID here: https://www.curseforge.com/minecraft/mc-mods/watermedia

SETUP IN YOUR GRADLE

repositories {
    maven {
        url "https://www.cursemaven.com"
        content { includeGroup "curse.maven" }
    }
}

dependencies {
    // doesn't require fg.debof() or any debofuscation tool
    implementation "curse.maven:watermedia-869524:latest-version-file-id"
}

JITPACK.IO

JitPack.io is a third-party tool to build and distribute artifacts using direct GitHub tags or branches This option includes JavaDoc and Sources
Check all available versions here

SETUP IN YOUR GRADLE

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    // doesn't require fg.debof() or any debofuscation tool
    implementation 'com.github.SrRapero720.watermedia:build:<version>'
}

VIDEOLAN OS SUPPORT

Our API is based in pure JAVA, except video decoding; we use VideoLAN for that. It requires VideoLan (libVLC) binaries to load and use video features.

We feature on Windows x64 a pre-installation of VLC in our JAR, so they don't have to download it manually. But some OS+Arch requires manual installation of VLC, and others aren't supported by VLC limitations.

Ensure your OS is supported in this list.
Linux users: check https://www.videolan.org/vlc/#download

Operative System Support status
Windows (x64)
Windows (ARM) 🚫
MacOS (x64)
MacOS (Apple Silicon)
Linux (x64)
Linux (ARM)
Linux (via SNAP) 🚫
  • SUPPORTED
  • LIMITED: Needs to manually install VLC 3
  • 🚫 RESTRICTED: Missing VLC 3 binaries (support planned in 3.x)
  • UNSUPPORTED: Definitely NOT supported

Projects using WATERMeDIA

MAINTAINERS

CONTRIBUTORS

SHADED LIBRARIES

Important: All libraries are relocated and wrapped using shadowJar. You can skip our API and directly use all native libraries... highly no recommended. Find it all onme.lib720.libraryname package

DEPENDENCIES

note: those are not shaded

  • LWJGL
  • commons-io
  • jna
  • jna-platform
  • gson
  • log4j-api
  • log4j-core
  • commons-lang3