Kotlin Wrapper for getting Windows Media Player Metadata.
This project is no longer actively maintained.
For a maintained version of this functionality, please consider using @Redstonecrafter0's project: MediaPlayerInfo.
Replace ${version}
with the current version!
Gradle KTS
repositories {
maven("https://jitpack.io")
}
dependencies {
implementation("com.github.Lyzev:WindowsReadMediaInfo:${version}")
}
Gradle Groovy
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.Lyzev:WindowsReadMediaInfo:${version}'
}
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Lyzev</groupId>
<artifactId>WindowsReadMediaInfo</artifactId>
<version>${version}</version>
</dependency>
</dependencies>
Raw Jar
- Go to the release page.
- Download WindowsReadMediaInfo-${version}.jar.
- Add the jar to your classpath.
fun main() {
WindowsReadMediaInfo.getCurrentMediaInfo().forEach {
println(it)
}
}
For assistance with minor concerns, feel free to join our supportive community on the Discord server. Our friendly members and staff are ready to help you.
To ensure a prompt and effective resolution of bugs or to share your suggestions, please submit them through the issue tracker of this repository. Kindly utilize the provided templates and make sure to include all relevant details that would help us understand your issue better. Your cooperation is greatly appreciated.