All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mmauro94.mkvtoolnix_wrapper.examples.PrintVersionInfo_Example.kt Maven / Gradle / Ivy

Go to download

An easy to use light kotlin-jvm wrapper for most common mkvmerge and mkvpropedit CLI commands

The newest version!
package com.github.mmauro94.mkvtoolnix_wrapper.examples

import com.github.mmauro94.mkvtoolnix_wrapper.MkvToolnixBinary


fun main() {
    MkvToolnixBinary.values().forEach { b ->
        b.getVersionInfo().apply {
            println("Binary: $programName")
            println("Codename: $codename")
            println("Version: $version")
            println("Is 64bit: $is64bit")
            println()
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy