gnoling / UnlinkMKV

Merges ordered chapters / segmented MKVs back into a single file.
MIT License
156 stars 8 forks source link

Can't change the output directory to current directory on windows #51

Closed WeaselKek closed 2 years ago

WeaselKek commented 2 years ago

In the ini file I've tried: outdir = $cwd/merged outdir = $cd/merged outdir = %cd%/merged and none of them resolve.

Anyone know how can I get this to work?

gnoling commented 2 years ago

The ini doesn't support variable substitution anywhere but the template fields, and for those only special ones.

For cwd, it should simply require you to use a relative path to begin with, so:

outdir = merged

Would put it under merged in the current directory. Is that not working properly in windows?

WeaselKek commented 2 years ago

Yeah, that did it. Didn't cross my mind that it would work with a relative path.