2.1.2 • Published 6 months ago

vue-md-player v2.1.2

Weekly downloads
74
License
MIT
Repository
github
Last release
6 months ago

vue-md-player

Build Status View this project on NPM

Lightweight HTML5 video and audio player component for Vue.

Demo - Codepen

README for Vue 2 users

Screenshots

Video Player

video player

Audio Player

audio player

Install

Vue 3

npm install --save vue-md-player

Usage

<template>
  <div>
    <audio-player src="./audio.mp3" />
    <video-player src="./video.mp4" />
  </div>
</template>

<script>
import { AudioPlayer, VideoPlayer } from 'vue-md-player'
import 'vue-md-player/dist/style.css'
export default {
  components: {
    AudioPlayer,
    VideoPlayer
  }
}
</script>

Properties

PropertyPlayerTypeDefaultDescription
autoplayVideoAudioBooleanfalsePlay automatically as soon as it can do.
containVideoBooleanfalseFit the video to container size.
crossoriginVideoAudioString-Read on MDN
double-click-fullscreenVideoBooleanfalseGo to fullscreen mode by double-click on the video.
lightVideoAudioBooleanfalseEnable light theme.
loopVideoAudioBooleanfalseAutomatically seek back to the start upon reaching the end of the audio/video.
mutedVideoAudioBooleanfalseIndicates whether the audio will be initially silenced.
playsinlineVideoBooleanfalseSome browsers prefer to play video in fullscreen, force them to play inline.
posterVideoString-A URL for an image to be shown while the video is downloading.
preloadVideoAudioStringmetadatanone: Indicates that the audio/video should not be preloaded.metadata: Indicates that only audio/video metadata (e.g. length) is fetched.auto: Indicates that the whole audio/video file can be downloaded, even if the user is not expected to use it.
srcVideoAudioString-The URL of the video or audio to embed.
2.1.2

6 months ago

2.1.1

6 months ago

2.1.0

6 months ago

2.0.4

7 months ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

1.0.4

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.3

2 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago