Index: flashvideo/plugins/flashvideo_streaming/flashvideo_streaming.module
===================================================================
--- flashvideo/plugins/flashvideo_streaming/flashvideo_streaming.module	(revision 656)
+++ flashvideo/plugins/flashvideo_streaming/flashvideo_streaming.module	(working copy)
@@ -103,6 +103,7 @@
 }
 
 function _flashvideo_streaming_admin_validate($form, &$form_state) {
+  global $base_url;
   $node_type = $form['#parameters'][2];
 
   if ($form_state['values']['flashvideo_'. $node_type .'_streaming_enable'] && $form_state['values']['flashvideo_'. $node_type .'_streaming_method'] == FLASHVIDEO_STREAMING_METHOD_XMOOV) {
@@ -113,7 +114,7 @@
       form_set_error('flashvideo_'. $node_type .'_xmoov_path', "Can not find xmoov-php at ". $user_path);
     }
     $form_state['values']['flashvideo_'. $node_type .'_xmoov_path'] = $user_path;
-    $form_state['values']['flashvideo_'. $node_type .'_streamer'] = base_path() . $user_path;
+    $form_state['values']['flashvideo_'. $node_type .'_streamer'] = $base_url . base_path() . $user_path;
   }
 }
 
@@ -248,4 +249,4 @@
   else {
     return array();
   }
-}
\ No newline at end of file
+}
