I am trying to pass a full file path to FFMPEG.
C:\TestFolder\Input\Friends - Season 6 - Gag Reel.avi
and it's obviously not liking the fact the path has spaces in it, erroring like so:
C:\TestFolder\Input\Friends: no such file or directory
So what's the easiest way to use filenames with spaces in them? Should I just replace all whitespaces with ~ characters or is there a better way? I have tried escaping the string with various characters:
@"C:\TestFolder\Input\Friends - Season 6 - Gag Reel.avi";
But this doesn't work. Is there a trick to preserving spaces?