In a Windows batch file, is it possible to define a constant when using a filter or when chaining filters? E.g. to pad a video with 15 pixels, I can use:
-filter_complex "[0:v:0] pad= iw+30 : ih+30 : 15 : 15 : cyan [pv]"
Is it possible to define `p=15` somewhere in order to use the more flexible filter:
-filter_complex "[0:v:0] pad= iw+2*p : ih+2*p : p : p : cyan [pv]"