Hello,
Ive been trying to undertand the scripting and automation options but having no luck, is there any way to have filebot run a powershell script post process?
IE I have a powershell .ps1 file that I like to run to convert my files to mp4.
run powershell .ps1 external script post processing?
Re: run powershell .ps1 external script post processing?
e.g.
Groovy: Select all
{ source, target ->
system 'C:/Tools/MyScript.ps1', source, target
}Groovy: Select all
{ source, target ->
if (ext == /mkv/) {
system 'ffmpeg', '-i', target, target.dir / target.nameWithoutExtension + '.REMUX.mp4'
}
}