--- ffmpeg_wrapper2/ffmpeg_wrapper_class.inc	2011-01-20 13:03:55.000000000 -0500
+++ ffmpeg_wrapper/ffmpeg_wrapper_class.inc	2011-07-15 16:11:55.000000000 -0400
@@ -55,15 +55,6 @@
     // Escape our command, but make sure that we allow | and ;
     $this->command = str_replace($pattern, $replace, escapeshellcmd($this->path . ' ' . $command)) . " -v $verbosity";
 
-    // Find the input file
-    preg_match("/-i.*?'(.*?)'/", $this->command, $matches);
-    $this->input_file = $matches[1];
-
-    // Find the output file in the command if there was one.
-    // This is sort of hacky but is helpful for passing the file out.
-    preg_match("/.*'(.*?)'.*?$/", $this->command, $matches);
-    $this->output_file = ! empty($matches[1]) ? $matches[1] : NULL;
-
     // Keep track of where this is being executed
     $this->cwd = getcwd();
 
