1.0.2 • Published 6 months ago

idmplayer_test v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

Idomoo Video Player

Idomoo Video Player is designed to bring the optimized and seamless experience of video viewing, every screen whatever it is a mobile, a tablet or a computer.

Documentation page.

Vue Configuration Examples

<template>
  <div class="home">
    <div id="idm_player"></div>
  </div>
</template>

<script>
import {idmPlayerCreate} from 'idmplayer_test'

export default {
  name: 'HomeView',
  mounted(){
    let player_options = {
      src: 'https://s3.amazonaws.com/web-assets.idomoo.com/production/demo_video.mp4'
    }
    idmPlayerCreate(player_options,'idm_player')

    window.idm_player.ready(()=>{
      console.log('player ready');
    })
  },
  beforeUnmount(){
    window.idm_player.dispose()
  }
}
</script>

Example page.

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago

2.2.7

6 months ago

2.2.8

6 months ago