summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-06-27 01:06:07 +0100
committerCarl Hetherington <cth@carlh.net>2013-06-27 01:06:07 +0100
commit605355f3335d189f6243be42bf254df2ba0442f2 (patch)
tree4a9719c2001eb1df51825195b0248350140b220e /src/lib
parentc1935537a671dea6b3112dbf8a93757eb3fc9e9f (diff)
Fix quoting for ffprobe.
Diffstat (limited to 'src/lib')
-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 a642915f4..ff0d9f7d1 100644
--- a/src/lib/cross.cc
+++ b/src/lib/cross.cc
@@ -151,7 +151,7 @@ run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, share
CloseHandle (process_info.hThread);
CloseHandle (child_stderr_read);
#else
- string ffprobe = "ffprobe 2> \"" + content.string() + "\" 2> \"" + out.string();
+ string ffprobe = "ffprobe \"" + content.string() + "\" 2> \"" + out.string() + "\"";
log->log (String::compose ("Probing with %1", ffprobe));
system (ffprobe.c_str ());
#endif