当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Google AMP amp-brightcove用法及代码示例


Brightcove Video Cloud是用于托管视频的在线平台。 amp-brightcove是一个放大器组件,用于嵌入Brightcove视频表演播放器或Brightcove视频云。

所需脚本:在标题中导入Brightcove组件

HTML

<script async custom-element="amp-brightcove" src= 
"https://cdn.ampproject.org/v0/amp-brightcove-0.1.js"> 
</script>

属性:



  1. data-account:Brightcove Video Cloud帐户ID。
  2. data-video-id:Brightcove视频云ID。
  3. data-player-id:Brightcove播放器ID。这是一个全局唯一标识符(GUID)。
  4. data-playlist-id:Brightcove Video Cloud播放列表ID。如果同时指定了播放列表和视频,则播放列表优先于视频。
  5. autoplay:如果指定了此属性,则视频将自动开始。
  6. dock:如果指定了此属性,并且视频正在手动播放,则视频将被最小化。使用此属性需要amp-video-docking扩展名。

如下所示嵌入了Brightcove视频,需要data-account,data-video-id,data-player-id。

HTML

<amp-brightcove data-account="906043040001"
    data-video-id="1401169490001"
    data-player-id= 
        "180a5658-8be8-4f33-8eba-d562ab41b40c"
        layout="responsive" width="480"
        height="270"> 
</amp-brightcove>

有关Brightcove播放器配置的说明,您可以查看以下Brightcove的支持文档。 https://amp.dev/documentation/components/amp-brightcove/?format=websites

例:

HTML

<!doctype html> 
<html amp> 
  
<head> 
    <meta charset="utf-8"> 
    <title>Google AMP amp-brightcove</title> 
    <script async src= 
        "https://cdn.ampproject.org/v0.js"> 
    </script> 
      
    <!-- Import the Brightcove component  
         in the header. -->
    <script async custom-element= 
        "amp-brightcove" src= 
"https://cdn.ampproject.org/v0/amp-brightcove-0.1.js"> 
    </script> 
  
    <meta name="viewport" content= 
"width=device-width,minimum-scale=1,initial-scale=1"> 
  
    <link rel="canonical" href= 
"https://amp.dev/documentation/examples/components/amp-brightcove/index.html"> 
  
    <style amp-boilerplate> 
        body { 
            -webkit-animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
  
            -moz-animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
  
            -ms-animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
  
            animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both 
        } 
  
        @-webkit-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @-moz-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @-ms-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @-o-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
    </style> 
    <noscript> 
        <style amp-boilerplate> 
            body { 
                -webkit-animation:none; 
                -moz-animation:none; 
                -ms-animation:none; 
                animation:none 
            } 
        </style> 
    </noscript> 
</head> 
  
<body> 
  
    <amp-brightcove data-account="906043040001" 
        data-video-id="1401169490001"
        data-player-id= 
            "180a5658-8be8-4f33-8eba-d562ab41b40c" 
        layout="responsive" width="480" 
        height="270"> 
    </amp-brightcove> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自somsagar2019大神的英文原创作品 Google AMP amp-brightcove。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。