diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-14 15:41:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-14 15:41:41 +0100 |
| commit | bddcf0be1cc583aebd30e477748284d2a862a3f7 (patch) | |
| tree | 7ca65777773d8c80963b20c88eab38956af46754 /src | |
| parent | 30917783d3e5c639b61935b616049d745213942f (diff) | |
Quote ffprobe path on OS X.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/cross.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cross.cc b/src/lib/cross.cc index 9ca3fe2b0..02cdfd444 100644 --- a/src/lib/cross.cc +++ b/src/lib/cross.cc @@ -252,7 +252,7 @@ run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, share path /= "MacOS"; path /= "ffprobe"; - string ffprobe = path.string() + " \"" + content.string() + "\" 2> \"" + out.string() + "\""; + string ffprobe = "\"" + path.string() + "\" \"" + content.string() + "\" 2> \"" + out.string() + "\""; LOG_GENERAL (N_("Probing with %1"), ffprobe); system (ffprobe.c_str ()); #endif |
