--- video.admin.inc.orig	2010-11-30 17:50:31.000000000 -0600
+++ video.admin.inc	2011-01-28 17:42:27.314952606 -0600
@@ -81,6 +81,17 @@
     '#default_value' => variable_get('video_use_default_thumb', FALSE),
     '#description' => t('Override auto thumbnails with default thumbnail.')
   );
+  $form['video_flowplayer_extra_height'] = array(
+      '#type' => 'textfield',
+      '#size' => 2,
+      '#title' => t('Extra height for flowplayer controls'),
+      '#default_value' => variable_get('video_flowplayer_extra_height', 24),
+      '#description' => t('Extra height in pixels to add to flowplayer to ' 
+                          . 'compensate for flowplayer controls.  Flowplayer '
+                          . '3.2.5 overlays the controls on the video image '
+                          . 'so it should be 0 for flowplayer 3.2.5+')
+  );
+  
   return system_settings_form($form);
 }
 
--- video_formatter.inc.orig	2011-01-27 23:31:12.140028991 -0600
+++ video_formatter.inc	2011-01-28 17:46:54.327680775 -0600
@@ -208,7 +208,7 @@
             $options,
             $video->formatter,
             // adding 24px to height #973636
-            array('style' => 'width:' . $video->player_width . 'px;height:' . ($video->player_height + 0) . 'px;')
+            array('style' => 'width:' . $video->player_width . 'px;height:' . ($video->player_height + variable_get('video_flowplayer_extra_height', 24)) . 'px;')
     );
   } else {
     $themed_output = t('No flash player has been setup. ' . l(t('Please select a player to play Flash videos.'), 'admin/settings/video/players'));
