Git Product home page Git Product logo

ionic4-inline-video-autoplay-example's Introduction

ionic4-inline-video-autoplay-example

Just an working example of how to implement autoplay videos from youtube and vimeo that plays inline inside the webview. If you don't want to check the code, you can follow the steps bellow.

Youtube Player API

Import the script in index.html file.

<script src="https://www.youtube.com/iframe_api"></script>

Add the following code to a ngOnInit hook for an example, you may need to declare the variable YT in a global scope

let player;
(player = new YT.Player('player', {
  height: '390',
  width: '640',
  videoId: 'M7lc1UVf-VE',
  playerVars: {
    autoplay: 1,
    controls: 0,
    playsinline: 1
  },
  events: {
    onReady: event => event.target.playVideo(),
    onStateChange: state => console.log('state', state)
  }
}));

This code will play the video when it is loaded, but we also need to have an div#player in our HTML file.

<div id="player"></div>

Vimeo Iframe

<iframe src="https://player.vimeo.com/video/76979871?autoplay=1&loop=1&autopause=0&?playsinline=0" width="640" height="360" frameborder="0" allow="autoplay"></iframe>

We need to add the playsinline=0 parameter in the url

Config.xml properties

    <access origin="*" />
    <access origin="*.youtube.com" />
    <access origin="*.ytimg.com" />
    <access origin="*.gstatic.com" />
    <access origin="*.googlevideo.com" />
    <allow-navigation href="https://*youtube.com/*" />
    <preference name="AllowInlineMediaPlayback" value="true" />

We should have this properties in our config.xml to make sure that will work.

ionic4-inline-video-autoplay-example's People

Contributors

mateusduraes avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.