如何在YouTube上像我的YouTube上分享我的网站上的video

我有一个拥有HTML5video播放器的网站。

我想在facebook上分享这个链接(例如: http : //site.com/video/example-2 ),其中一个用户在Facebook上点击该post的图片,开始播放video。

就像youtubevideo和vimeovideo一样。

我怎样才能做到这一点?

谢谢

我有一个拥有HTML5video播放器的网站。

你想find一个好的SWF(*。SWF)video播放器,可以从videostreamurl={video_Hot_link} (通过URLparameter passing给SWF播放器)

现在,当你的SWF播放器准备好stream式播放一些video之后,将Facebook Open Graph添加到<head>标签中,如下所示:

 <meta property="og:type" content="video"> <!-- site/page type more information http://ogp.me/ --> <meta property="og:video:type" content="application/x-shockwave-flash"> <!-- you need this because your player is a SWF player --> <meta property="og:video:width" content="Width in Pixels"> <!-- player width --> <meta property="og:video:height" content="Height in Pixels"> <!-- player height --> <meta property="og:video" content="http://example.com/{path_to}/{swf_player}.swf?url={video_soure}"> <!-- You will need to echo/print the video source (*.mp4) with server-side code --> <meta property="og:video:secure_url" content="https://example.com/{path_to}/{swf_player}.swf?url={video_soure}"> <!-- required for users whom use SSL (actually Facebook forces everyone to use SSL so you're required to use og:video:secure_url) so get a one --> 

另外,您需要将以下前缀添加到<html> likeso

 <html prefix="og: http://ogp.me/ns#">