I'm using sox in combination with Robotask and I'm facing an issue.
I have to merge 2 audiofiles:
File A = VoiceOver file (for example: 25.782000 sec, but length differs every day)
File B = Musicbed (for example: 180 sec)
File C = Merge of File B and A
File B should be first, and after 1.2 seconds File A should be mixed. This works. But, file C has to be trimmed depening on the length of File A + those 1.2 seconds. So, file C should have a duration of 25.782000 + 1.2 sec = 26.982000 seconds. I can use this value in my command for trimming file C to that length. Trimming the file with sox / Robotask is also not an issue, but calculating is

Robotask has the function of reading metadata of files and spits it out in hh:mm:ss. Sox only works with seconds. I need this value (which is text, not an integer) and need to add 1.2 to that.
I have tried this with VB Evaluate, but that didn't work out.
So, how I can solve this the best?