These lines in hook_menu, does net set value for 'type' key, and menu system generates an empty link in navigation:

    $items[] = array (
      'path' => 'flvmediaplayer',
      'callback' => 'flvmediaplayer_config_xml_page', 
      'callback arguments' => array(arg(1)), 
      'access' => user_access('content'),
    );   

It should be changed to:

    $items[] = array (
      'path' => 'flvmediaplayer',
      'callback' => 'flvmediaplayer_config_xml_page', 
      'callback arguments' => array(arg(1)), 
      'access' => user_access('content'),
      'type' => MENU_CALLBACK
    );