我一直在四处寻找,但我似乎无法找到有关如何实现我想要的任何信息。
基本上我有一个显示gif的页面,并提供在Facebook上分享它的可能性。我尝试直接使用gif文件,但经过大量的试验和很多错误后,我放弃了这个想法,相反,我决定这样做,所以页面会在Facebook上显示为视频,因为我已经有一个15秒长的视频从gif为Instagram生成。
问题在于,当我这样做时,我一直以这个结果结束
但我正在尝试进行内联视频分享(就像youtube一样)
我想我需要一个冲击波播放器,但我不知道从哪里开始,我的视频文件是mp4等等。
我在轨道上找不到任何关于如何使用heroku + ruby的信息
任何链接都将受到赞赏。
这是我使用的元标记:
<meta property="og:url" content="url_of_the_page">
<meta property="og:title" content="event_name">
<meta property="og:description" content="event_place_and_time">
<meta property="og:type" content="video.other">
<meta property="og:image" content="secure_url_of_remote_thumbnail">
<meta property="og:video" content="secure_url_of_remote_mp4">
<meta property="og:video:secure_url" content="secure_url_of_remote_mp4">
<meta property="og:video:type" content="video/mp4">
<meta property="og:video:width" content="960">
<meta property="og:video:height" content="1280">
<meta property="og:site_name" content="site_name">
感谢您的帮助