Hi,

This fix only for vshare 2.7
open file include/functions_upload.php
find

PHP Code:
if ($file_extn == 'mp4')
            {
                
$rand_flv_name $rand_name '.mp4';
                
$outExtn '.mp4';
            } 
replace
PHP Code:
/*
if ($file_extn == 'mp4')
            {
                $rand_flv_name = $rand_name . '.mp4';
                $outExtn = '.mp4';
            }
*/ 
again find

PHP Code:
if ($file_extn == 'flv' || $file_extn == 'mp4'
replace

PHP Code:
if ($file_extn == 'flv'
Thanks