MMauro94 / mkvtoolnix-wrapper

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mkvtoolnix-wrapper

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

The library is published on maven central:

compile 'com.github.mmauro94:mkvtoolnix-wrapper:1.0.0'

WARNING This library is not feature complete: there are quite a few advanced options that are not currently supported. You can achieve them adding custom args to the command.

Usage

To identify a file:

MkvToolnix.identify(File("input.mkv"))

To edit properties:

MkvPropEditCommand(File("input.mkv"))
    .editTrackPropertiesByNumber(2) {
        set("prop", "val")
        delete("anotherprop")
    }
    .executeAndPrint()

To merge files:

MkvMergeCommand(File("output.mkv"))
    .globalOptions { 
        title = "Title"
    }
    .addInputFile(File("inputA.mkv")) {
        videoTracks.include {
            addById(0)
        }
    }
    .addInputFile(File("inputB.mkv")) {
        videoTracks.excludeAll()
        subtitleTracks.excludeAll()
    }
    .executeAndPrint()

You can find more complete examples here.

The commands will use mkvmerge and mkvpropedit from the PATH environment. To change that, you can set the location of the binaries with:

//Set custom path
MkvToolnix.mkvToolnixPath = File("custom/path/to/binaries")

//Reset to using PATH environment
MkvToolnix.mkvToolnixPath = null

Methods and classes are thoroughly documented and linked to official doc when possible, so you can read more there.

Supported features

As you can see from the list below, there are still some features that are not supported. You can, however, with the additionalArgs property, pass custom parameters to the command.

  • mkvpropedit:
    • Fast/full parse mode
    • Edit properties
    • Attachment support
    • Tag handling
  • mkvmerge:
    • For each input file:
      • Include/exclude specific tracks
    • For each input track:
      • Change name and language
      • Change forced/default flags
      • Set offset/linear regression
    • Change tracks order
    • Identifying a file
    • Segment info handling
    • Chapter and tag handling
    • File splitting, linking, appending and concatenation
    • Attachment support
    • Advanced track specific options

Credits

About

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

License:MIT License


Languages

Language:Kotlin 100.0%