*** video_formatter.inc.orig	2010-09-16 16:16:57.000000000 -0400
--- video_formatter.inc.new	2010-09-16 16:16:09.000000000 -0400
***************
*** 14,19 ****
--- 14,20 ----
    if (empty($element['#item']['fid'])) return '';
    // Get our field information to determine if we are checking conversion
    $field = content_fields($element['#field_name'], $element['#type_name']);
+   if(!empty($field['list_field']) && !$element['#item']['list']) return '';
    // Only needs to be ran if they are converting videos
    if (isset($field['widget']['autoconversion']) && $field['widget']['autoconversion'] && !$element['#item']['data']['bypass_autoconversion']) {
      module_load_include('inc', 'video', '/includes/conversion');
***************
*** 101,106 ****
--- 102,110 ----
   * We are outputing an anchor to the videofile.  The jMedia functions will overtake this anchor and setup our object/embed tags.
   */
  function theme_video_formatter_video_media_js($element) {
+   $field = content_fields($element['#field_name'], $element['#type_name']);
+   if(!empty($field['list_field']) && !$element['#item']['list']) return '';
+ 
    drupal_add_js(drupal_get_path('module', 'video') .'/js/jquery.media.js');
    drupal_add_js(drupal_get_path('module', 'video') .'/js/jquery.metadata.js');
    //setup our video object
