? video-921120.patch
Index: video_formatter.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/video/Attic/video_formatter.inc,v
retrieving revision 1.1.2.23
diff -u -p -r1.1.2.23 video_formatter.inc
--- video_formatter.inc	19 Sep 2010 11:14:01 -0000	1.1.2.23
+++ video_formatter.inc	23 Sep 2010 22:20:57 -0000
@@ -129,14 +129,13 @@ function theme_video_encoding_failed() {
 function theme_video_flv($video, $node) {
   if ($video->flash_player == 'swftools') {
     $options = array(
-  	  'params' => array(
+      'params' => array(
         'width' => $video->player_width,
         'height' => $video->player_height,
-    ),
+      ),
       'othervars' => array(
-    //@todo: swftools bug, can't enable this until they fix their pathing for the images.
-    //'image' => $video->thumbnail->swfthumb,
-    ),
+        'image' => $video->thumbnail->swfthumb,
+      ),
     );
     $themed_output = swf($video->url, $options);
   }
@@ -146,13 +145,13 @@ function theme_video_flv($video, $node) 
         'url' => urlencode($video->url),
         'autoPlay' => $video->autoplay,
         'autoBuffering' => $video->autobuffering,
-    ),
+      ),
     );
     $themed_output = theme(
       'flowplayer',
-    $options,
-    $video->formatter,
-    array('style' => 'width:' . $video->player_width . 'px;height:' . $video->player_height . 'px;')
+      $options,
+      $video->formatter,
+      array('style' => 'width:' . $video->player_width . 'px;height:' . $video->player_height . 'px;')
     );
   }
   else {
