diff options
Diffstat (limited to 'src/lib')
| -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 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 |
