By default, each video in Video Gallery is a post, hence the default WordPress search display the videos post links. To disable this, follow the below steps. Take backup of the file before modifying it.
1) Go to the file ‘hdflvvideoshare.php’ in the following path, wp-content/plugins/contus-video-gallery
2) Search for the line, register_post_type ( ‘videogallery’, $args ); and you will find the below code before the mentioned line.
3) Then replace the code below,
$args = array (
'labels' => $labels, 'public' => true, 'publicly_queryable'=> true, 'show_ui' => false, 'query_var' => true, 'menu_icon' => getImagesDirURL() .'apptha.png',
'rewrite' => true, 'capability_type' => 'post', 'hierarchical' => false, 'menu_position' => null, 'supports' => array ( 'title', 'editor', 'thumbnail', 'comments' ) );
as,
$args = array (
'labels' => $labels, 'public' => true, 'publicly_queryable'=> true, 'show_ui' => false, 'query_var' => true, 'menu_icon' => getImagesDirURL() .'apptha.png',
'rewrite' => true, 'capability_type' => 'post', 'hierarchical' => false, 'menu_position' => null, 'supports' => array ( 'title', 'editor', 'thumbnail', 'comments' ),'exclude_from_search' => 'true' );