From 605355f3335d189f6243be42bf254df2ba0442f2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 27 Jun 2013 01:06:07 +0100 Subject: Fix quoting for ffprobe. --- src/lib/cross.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3