Inserting players into Facebook
- docaberle
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
9 years 4 months ago #3243
by docaberle
Inserting players into Facebook was created by docaberle
Can you embed the JoomlaRulez videos into a facebook page? I have a commercial license and thought I remembered seeing this was possible. Just not sure how to do it. Any links you can provide?
Please Log in or Create an account to join the conversation.
- docaberle
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
9 years 4 months ago #3244
by docaberle
Replied by docaberle on topic Re: Inserting players into Facebook
It looks like I need to use the iFrame code because the video is now there, but the code also shows in the Facebook post. Is that just how Facebook shows it.
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
9 years 4 months ago #3248
by admin
Replied by admin on topic Re: Inserting players into Facebook
With the display set to botr, the facebook-it plugin will only allow a sharing link, for now to embed video you have to set the display to combine mode or local mode.
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
9 years 2 months ago #3690
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
Hi I try to share a video on FB, but with the iframe mode (on the dashboard) or with the link button on the player the video is linked to joomlavideo server, not my website page ...
How can I change this ?
Thanks
How can I change this ?
Thanks
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
9 years 2 months ago #3691
by admin
Replied by admin on topic Re: Inserting players into Facebook
Can you provide a link ?
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
9 years 2 months ago #3692
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
9 years 2 months ago #3693
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
just a precison :
I'm not using Joomla (yet) for this website (just one page) .... so I only use embedded code
I'm not using Joomla (yet) for this website (just one page) .... so I only use embedded code
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
9 years 2 months ago - 9 years 2 months ago #3695
by admin
Replied by admin on topic Re: Inserting players into Facebook
Ok, so as i see you don't use joomla so it's more complicate but still possible, if you don't want the facebook page re direct on the player itself, you will have to do some html code.
A - first you will have to change the sharing link :
1 - In the dashboard interface, click on the tab "players", Edit your player "fanny".
2 - disabled sharing.
3 - click on the tab "integrations".
4 - In the custom properties, add in the field name : sharing.link
5 - In the custom properties, add in the field value : fannyfilipe.biz/
6 - In the custom properties, add in the field name : dock
7 - In the custom properties, add in the field value : true
8 - save the player.
B - now we have to to do some html code.
1 - You have to load the correct metadata in the html head :
some info here :
www.longtailvideo.com/support/addons/sharing-plugin/14048/facebook-video-sharing
2 - then you have to also load the plugin sharing with this code :
some info here :
www.longtailvideo.com/support/bits-on-the-run/15987/add-custom-configuration-options-to-the-player
so in fine here is your html code :
A - first you will have to change the sharing link :
1 - In the dashboard interface, click on the tab "players", Edit your player "fanny".
2 - disabled sharing.
3 - click on the tab "integrations".
4 - In the custom properties, add in the field name : sharing.link
5 - In the custom properties, add in the field value : fannyfilipe.biz/
6 - In the custom properties, add in the field name : dock
7 - In the custom properties, add in the field value : true
8 - save the player.
B - now we have to to do some html code.
1 - You have to load the correct metadata in the html head :
<title>All we need is LOVE</title>
<meta property="og:description" content=""/>
<meta property="og:image" content="http://video.joomlarulez.com/thumbs/RZYzVKNT-320.jpg"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content="FannyFilipe.biz"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://FannyFilipe.biz"/>
<meta property="og:video" content="https://content.bitsontherun.com/players/RZYzVKNT-wFFusCc2.swf" />
<meta property="og:video:height" content="700" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="534" />
some info here :
www.longtailvideo.com/support/addons/sharing-plugin/14048/facebook-video-sharing
2 - then you have to also load the plugin sharing with this code :
<script type="text/javascript">
botr_RZYzVKNT_wFFusCc2.addVariable("plugins","sharing-3");
</script>
www.longtailvideo.com/support/bits-on-the-run/15987/add-custom-configuration-options-to-the-player
so in fine here is your html code :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>All we need is LOVE</title>
<meta property="og:description" content=""/>
<meta property="og:image" content="http://video.joomlarulez.com/thumbs/RZYzVKNT-320.jpg"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content="All we need is LOVE"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://FannyFilipe.biz"/>
<meta property="og:video" content="https://content.bitsontherun.com/players/RZYzVKNT-wFFusCc2.swf" />
<meta property="og:video:height" content="700" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="534" />
<style type="text/css">
<!--
body {
background-color: #f9e2ec;
}
-->
</style></head>
<body>
<div style="text-align:center;width:100%;background-color:#f9e2ec;">
<!-- this table will enable you to get a centred area on which you will add your header, main content and footer. -->
<table width="600" cellpadding="0" cellspacing="0" style="background-color:#f9e2ec;text-align:left;margin:auto;" align="center">
<!-- then you can add your header -->
<tr><td>.</td></tr>
<!-- your main area -->
<tr><td>
<script type="text/javascript" src="http://video.joomlarulez.com/players/RZYzVKNT-wFFusCc2.js"></script>
<script type="text/javascript">
botr_RZYzVKNT_wFFusCc2.addVariable("plugins","sharing-3");
</script>
</td></tr>
<!-- your footer -->
<tr><td>.</td></tr>
</table>
</div>
</body>
</html>
Last edit: 9 years 2 months ago by admin. Reason: code
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
9 years 2 months ago #3697
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
Thank you so much for your help.
It's almost done ... when I share it in FB, the link is good now but there is no thumb or video preview like it was with the joomlarulez link.
How can I get it ?
Thanks
It's almost done ... when I share it in FB, the link is good now but there is no thumb or video preview like it was with the joomlarulez link.
How can I get it ?
Thanks
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
9 years 2 months ago #3698
by admin
Replied by admin on topic Re: Inserting players into Facebook
1 - in the custom code you have copy this :
instead this :
anyway i correct this on your account.
2 - there were an error in the code i give you, now it's ok, i had edit it, please update it also.
fannyfilipe.biz/
instead this :
http://fannyfilipe.biz/
anyway i correct this on your account.
2 - there were an error in the code i give you, now it's ok, i had edit it, please update it also.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>All we need is LOVE</title>
<meta property="og:description" content=""/>
<meta property="og:image" content="http://video.joomlarulez.com/thumbs/RZYzVKNT-320.jpg"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content="All we need is LOVE"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://FannyFilipe.biz"/>
<meta property="og:video" content="https://content.bitsontherun.com/players/RZYzVKNT-wFFusCc2.swf" />
<meta property="og:video:height" content="700" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="534" />
<style type="text/css">
<!--
body {
background-color: #f9e2ec;
}
-->
</style></head>
<body>
<div style="text-align:center;width:100%;background-color:#f9e2ec;">
<!-- this table will enable you to get a centred area on which you will add your header, main content and footer. -->
<table width="600" cellpadding="0" cellspacing="0" style="background-color:#f9e2ec;text-align:left;margin:auto;" align="center">
<!-- then you can add your header -->
<tr><td>.</td></tr>
<!-- your main area -->
<tr><td>
<script type="text/javascript" src="http://video.joomlarulez.com/players/RZYzVKNT-wFFusCc2.js"></script>
<script type="text/javascript">
botr_RZYzVKNT_wFFusCc2.addVariable("plugins","sharing-3");
</script>
</td></tr>
<!-- your footer -->
<tr><td>.</td></tr>
</table>
</div>
</body>
</html>
Please Log in or Create an account to join the conversation.
Time to create page: 0.390 seconds