Thank you so much for the link Aleksey. Nick’s scripts works great and solved my problem, except there is a little parameter issue.
The script creates a list of In and Out timecodes(in seconds) using a comma; (SS,ssssss)
FFMPEG does not process “,” and requires “.” like this; (SS.ssssss)
It works fine if I manually edit the BAT file and convert all commas to dots.
How can I make it write timecode in a dotted format or as integers?
I think this is the part of the code that converts from timecode to seconds:
——————————————————-
double start = offsetAdjustedTC.ToMilliseconds() / 1000;
double duration = lengthAdjustedTC.ToMilliseconds() / 1000;
——————————————————-
Any help would be appreciated.