Install
https://drupal.org/project/flowplayer
Add a field to your content named suppose named field_upload_videos assing some aloowed extension to it
And then add below code to your Tpl File
<?php
$video = '<a href="'.$base_path.'/sites/default/files/videos/'.$node->field_upload_videos[und][0][filename].'" id="player" class="flowplayer"></a>';
flowplayer_add('#player', array(
'clip' => array(
'autoPlay' => FALSE, // Turn autoplay off
//'linkUrl' => '/sites/default/files/videos/truduo.mp4', // When clicked on
),
));
print $video;
?>
You are done Enjoy!!.
https://drupal.org/project/flowplayer
Add a field to your content named suppose named field_upload_videos assing some aloowed extension to it
And then add below code to your Tpl File
<?php
$video = '<a href="'.$base_path.'/sites/default/files/videos/'.$node->field_upload_videos[und][0][filename].'" id="player" class="flowplayer"></a>';
flowplayer_add('#player', array(
'clip' => array(
'autoPlay' => FALSE, // Turn autoplay off
//'linkUrl' => '/sites/default/files/videos/truduo.mp4', // When clicked on
),
));
print $video;
?>
You are done Enjoy!!.
No comments:
Post a Comment