I'm having an issue while running ffmpeg from VBS as follows:
Cmd = "cmd.exe /K " & Chr(34) & """C:\Users\admin\Documents\ffmpeg\bin\ffmpeg.exe""" & Chr(34) & " -i " & Chr(34) & """C:\Users\admin\Documents\TestFiles\3000012936-TXMHD.mxf""" & Chr(34) & " -vcodec copy -acodec copy " & Chr(34) & """C:\Users\admin\Documents\TestFiles\3000012936-TXMHD.mp4""" & Chr(34) '& " 2> " & Chr(34) & "LogFile.txt" & Chr(34)
objShell.Run Cmd, 10, True
I'm getting error: The system cannot find the path specified
The path for the input/output files is correct. I can guess this seems to be an escape sequence issue. Can some please point out.