com.github.mmauro94.mkvtoolnix_wrapper.examples.PrintVersionInfo_Example.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mkvtoolnix-wrapper Show documentation
Show all versions of mkvtoolnix-wrapper Show documentation
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()
}
}
}