MinecraftMediaLibrary¶

MinecraftMediaLibrary is a library used to display media to players such as pictures, audio, videos, and other forms of media. It uses a variety of displays that are customizable depending on the user’s needs.
Importing MinecraftMediaLibrary Into a Project¶
First, add Jitpack because the repository is hosted there.
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
repositories {
maven { url 'https://jitpack.io' }
}
repositories {
maven { url ("https://jitpack.io") }
}
Then, add the actual library repo itself.
<dependency>
<groupId>com.github.minecraftmedialibrary</groupId>
<artifactId>minecraftmedialibrary</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
dependencies {
implementation 'com.github.minecraftmedialibrary:minecraftmedialibrary:master-SNAPSHOT'
}
dependencies {
implementation("com.github.minecraftmedialibrary:minecraftmedialibrary:master-SNAPSHOT")
}
Links to Sections¶
- History of MinecraftMediaLibrary
- Minecraft Maps in a Nutshell
- Entity Nametags in a Nutshell
- MinecraftMediaLibrary General Information
- Retrieving Video/Audio from Youtube Videos
- Introduction to Video Players
- Using HTTP Daemons for Resourcepacks
- Creating an Audio Player