• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Customization of the jwplayer6 player with my jwplayer pro licence

Started by lunik,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

lunikTopic starter

Hello developpers here,


I'm here because i've got some few questions with regard to the setup of my phpvibe script. I found the answers for some of the questions by reading the forum first and Here are my other questions for which i don't find  an answer yet:

You can view it here: http://apprentiss.com/phpvibe36/video/37/entreprenariat-entrepreneurship/

1- how do i achieve this with the jwplayer6:
- Change the default skin to "glow" skin for the Jwplayer 6,
- adding video captions to the Jwplayer 6 player,
- auto playing of video when the page load etc..
- removing the video title from the player play button,
-adding the share button on the video player.

Important: i have a jwplayer 6 pro licence key.

I actually would like to set this up from the code not from jwplayer website. So your support will be much appreciated.

2- Flowplayer is not working from my installation i tested it in several browser but not working so how do i fixe this?

Thanks for your great work and for considering my request.

Bests Regards
Lunik.
  •  

lunikTopic starter

I want to let you know that my account is verified and i'm a client. Thanks for helping with my requests.

Quote from: lunik on
Hello developpers here,


I'm here because i've got some few questions with regard to the setup of my phpvibe script. I found the answers for some of the questions by reading the forum first and Here are my other questions for which i don't find  an answer yet:

You can view it here: http://apprentiss.com/phpvibe36/video/37/entreprenariat-entrepreneurship/

1- how do i achieve this with the jwplayer6:
- Change the default skin to "glow" skin for the Jwplayer 6,
- adding video captions to the Jwplayer 6 player,
- auto playing of video when the page load etc..
- removing the video title from the player play button,
-adding the share button on the video player.

Important: i have a jwplayer 6 pro licence key.

I actually would like to set this up from the code not from jwplayer website. So your support will be much appreciated.

2- Flowplayer is not working from my installation i tested it in several browser but not working so how do i fixe this?

Thanks for your great work and for considering my request.

Bests Regards
Lunik.
  •  

PHPVibe A.

Quote from: lunik on
I want to let you know that my account is verified and i'm a client. Thanks for helping with my requests.

That's easily visible next to your avatar :)

PHPVibe A.

The file holding the PHPVibe embeds is lib/class.providers.php and it contains the jwplayer embed also:

public function _jwplayer6 ($file,$thumb, $logo = null, $type=null) {
	  global $video;
	 
	  $embed = '<div id="video-setup" class="full">' . _lang("Loading the player...") . '</div>';
              $embed .= ' <script type="text/javascript">
			
		jwplayer("video-setup").setup({ primary : "html5",  file: "' . $file . '",  image: "' . $thumb . '", title: "' . _html($video->title) . '",  modes: [
        { type: "html5" },
        { type: "flash", src: "' . site_url() . 'lib/players/jwplayer/player.swf" }
    ],  height: ' . $this->height . ',   repeat: "always",		aspectratio: "15.4:8",  width: "100%"';
if($type) {   $embed .= ', type: "' . strtolower($type) . '" '; }
if($logo && !nullval($logo)) {	  $embed .= ',	logo: {         file: "'.$logo.'",  position: "bottom-left",  link: "'.site_url().'"    }'; }
              $embed .= '  }); </script>';		  
		  
			  return $embed;
	  }


For skin change: http://support.jwplayer.com/customer/portal/articles/1406968-using-jw-player-skins
so simply add a skin name as described on their website.

For removing title, remove this code portion:
title: "' . _html($video->title) . '",


For autoplay, add:

autostart: true,


Source: http://support.jwplayer.com/customer/portal/articles/1428525-autostarting-on-page-load

For sharing: http://support.jwplayer.com/customer/portal/articles/1409823-social-sharing-overlay

For captions: http://support.jwplayer.com/customer/portal/articles/1407438-adding-closed-captions (not sure how you will add this to PHPVibe since support for captions is not yet coded).

PHPVibe A.

Quote from: lunik on

2- Flowplayer is not working from my installation i tested it in several browser but not working so how do i fixe this?

You need to show me, so I can see what's going on..

lunikTopic starter

Thanks very much for your reply. It has helped a lot. I was able to perform the changes to the jwplayer except for video captions. For flowplayer not playing i fixed it too;

I will let you know if i have further questions.

By the way can we command you to implement a custum PSD design for our videosite?

Thanks
  •  

PHPVibe A.

Not really, we have custom services right now suspended because we have this upcoming vacation break and then we have to hire some new fellows, cause this got to crowded, then we will resume custom services.
But, a good idea would be to get a css/html design based from that psd from somewhere else, we have more coders than designers in here.

lunikTopic starter

Sounds great, I understand. We can convert the PSD design into a html/css design from our side. Then if you happen to resum costum services let us know :)
  •  

Similar topics (7)

Replies: 13
Views: 5321

Replies: 1
Views: 2023

Replies: 3
Views: 3068

Replies: 6
Views: 5918

Replies: 45
Views: 12925

Started by HPR


Replies: 5
Views: 3425