Hi,
We have noticed the links, player is displaying very small and so the full screen button in the tablet will not display clearly. Please increase the player size and make it compatible with tablet so that you can see the full screen option.
To increase the player size kindly go to the admin panel->Extensions->Module Manager->Click the player module and you have the option to control the size (Width and Height) of the player.
Regarding the preview image for the mobile devices,
Kindly go to the below file path:
components\com_hdflvplayer\views\player\tmpl\playerlayout.php
Find this code
if ($details['rs_title']->filepath == "Url") { $video = $details['rs_title']->videourl;
} else { $current_path = "components/com_hdflvplayer/videos/"; $video = JURI::base() . $current_path . $details['rs_title']->videourl;
}
and replace into
if ($details['rs_title']->filepath == "Url") { $video = $details['rs_title']->videourl; $previewURL = $details['rs_title']->previewurl; } else { $current_path = "components/com_hdflvplayer/videos/"; $video = JURI::base() . $current_path . $details['rs_title']->videourl; $previewURL = JURI::base() . $current_path .$details['rs_title']->previewurl; }
And also please replace the video tag like below :
<video id="video" src="<?php echo $video; ?>" poster ="<?php echo $previewURL ;?>" width="<?php echo $player_width; ?>" height="<?php echo $player_height; ?>" autobuffer controls onerror="failed(event)"> Html5 Not support This video Format. </video>
If you have any queries please feel free to post here.
Regards, Powya
|
|