Lyzev / WindowsReadMediaInfo

Kotlin Wrapper for getting Windows Media Player Metadata. (For a maintained version of this functionality, please consider using https://github.com/Redstonecrafter0/MediaPlayerInfo)

Home Page:https://lyzev.dev/

Repository from Github https://github.comLyzev/WindowsReadMediaInfoRepository from Github https://github.comLyzev/WindowsReadMediaInfo

WindowsReadMediaInfo

Kotlin Wrapper for getting Windows Media Player Metadata.

Discord

GitHub last commit GitHub commit activity
GitHub code size in bytes GitHub contributors

Archived Project

This project is no longer actively maintained.

For a maintained version of this functionality, please consider using @Redstonecrafter0's project: MediaPlayerInfo.

Usage

Import

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
  1. Go to the release page.
  2. Download WindowsReadMediaInfo-${version}.jar.
  3. Add the jar to your classpath.

Example

fun main() {
    WindowsReadMediaInfo.getCurrentMediaInfo().forEach {
        println(it)
    }
}

Bugs and Suggestions

Discord

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.

GitHub

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.

About

Kotlin Wrapper for getting Windows Media Player Metadata. (For a maintained version of this functionality, please consider using https://github.com/Redstonecrafter0/MediaPlayerInfo)

https://lyzev.dev/

License:GNU Affero General Public License v3.0


Languages

Language:C++ 61.1%Language:Kotlin 28.1%Language:CMake 10.8%