Skip to content

Adding Videos to the config

Demez edited this page Jul 20, 2019 · 2 revisions

Declaring an Output Video

"Output Video Name.mkv" {}

Adding Input videos to the Output Video

"Output Video Name.mkv"
{
    "Input Video.mkv" {}
}

Input Video Timeranges

A timerange is set with a start and end timestamp

Each time stamp is formatted like this, as Hour, Minutes, Seconds, and Miliseconds:

"00:00:00.000"

A time range of 30 seconds looks like this:

"00:00:30.000" "00:01:00.000"

Using Timeranges in Input Videos:

"Output Video Name.mkv"
{
    "Input Video.mkv"
    {
        "00:00:30.000" "00:01:00.000"
        "00:01:15.000" "00:01:38.000"
    }
}

If you don't declare an input video, it will automatically add an input video with the same name as the output video:

"Output Video Name.mkv"
{
    "00:00:30.000" "00:01:00.000"
    "00:01:15.000" "00:01:38.000"

    "Input Video.mkv"
    {
        "00:00:30.000" "00:01:00.000"
        "00:01:15.000" "00:01:38.000"
    }
}

You can also add paths to input or output videos, which add onto the output path set by default or the config variables:

"../Relative/Path/To/Output Video Name.mkv"
{
    "D:/Absolute/Path/Example/Input Video.mkv"
    {
        "00:00:30.000" "00:01:00.000"
        "00:01:15.000" "00:01:38.000"
    }
}

Using an absolute path will override the folders set by default or the config variables

Clone this wiki locally