summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/cross.cc2
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