Para incrustar jwplayer en AMP HTML , hay un componente llamado amp-jwplayer que muestra un jwplayer alojado en la nube.
Scripts requeridos: importar el componente amp-jwplayer al encabezado
HTML
<script async custom-element="amp-jwplayer" src="https://cdn.ampproject.org/v0/amp-jwplayer-0.1.js"> </script>
Atributos:
- data-player-id: una identificación alfanumérica que se encuentra en la sección del reproductor de JW player.
- data-playlist-id /data-media-id: Se requiere especificar un ID de lista de reproducción alfanumérico que se encuentra en la sección de contenido del reproductor JW.
- reproducción automática: si se especifica, el video comienza a reproducirse tan pronto como se carga.
Ejemplo:
HTML
<!doctype html> <html ⚡> <head> <meta charset="utf-8"> <title>Google AMP amp-jwplayer</title> <script async src= "https://cdn.ampproject.org/v0.js"> </script> <!-- Import the `amp-jwplayer` component in the header.--> <script async custom-element="amp-jwplayer" src="https://cdn.ampproject.org/v0/amp-jwplayer-0.1.js"> </script> <link rel="canonical" href= "https://amp.dev/documentation/examples/components/amp-jwplayer/index.html"> <meta name="viewport" content= "width=device-width,minimum-scale=1,initial-scale=1"> <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-jwplayer data-media-id="BZ6tc0gy" data-player-id="uoIbMPm3" layout="responsive" width="16" height="9"> </amp-jwplayer> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por somsagar2019 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA