Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
vue-video-player
Advanced tools
Video/Live player for Vue.js(1.x ~ 2.x) 基于 video.js + videojs-resolution-switcher + videojs-contrib-hls
npm install vue-video-player --save
// import with ES6
import Vue from 'vue'
...
import VideoPlayer from 'vue-video-player'
// require with Node.js/Webpack
var Vue = require('vue')
...
var VideoPlayer = require('vue-video-player')
// use
Vue.use(VideoPlayer)
// --------------------------------------
// or use with component(ES6)
import Vue from 'vue'
// ...
import { videoPlayer } from 'vue-video-player'
// use
export default {
components: {
videoPlayer
}
}
<!-- Use in component(Vue.js1.X) -->
<video-player :options="videoOptions"></video-player>
<!-- Use in component(Vue.js2.X) -->
<video-player :options="videoOptions" @playerStateChanged="playerStateChanged"></video-player>
<!-- parent component to control the player do something -->
<button @click="playerAction('play')">Play</button>
<button @click="playerAction('pause')">Pause</button>
<button @click="playerAction('refresh')">Refresh</button>
// component config example 1(video)
export default {
data () {
return {
videoOptions: {
source: {
type: "video/webm",
src: 'https://cdn.theguardian.tv/webM/2015/07/20/150716YesMen_synd_768k_vp8.webm'
}
}
}
}
}
// component config example 2(video)
export default {
data () {
return {
videoOptions: {
source: [
{ type: "video/mp4", src: 'http://example.com/sample_video_H.mp4', label: '原画', res: 1 },
{ type: "video/mp4", src: 'http://example.com/sample_video_M.mp4', label: '高清', res: 2 },
{ type: "video/mp4", src: 'http://example.com/sample_video_L.mp4', label: '流畅', res: 3 }
],
language: 'zh-CN',
playbackRates: [0.7, 1.0, 1.3, 1.5, 1.7],
poster: 'http://cn.vuejs.org/images/logo.png',
defaultSrcReId: 2
}
}
}
}
// component config example 3(live)
export default {
data () {
return {
videoOptions: {
source: {
type: 'application/x-mpegURL',
src: 'https://example.net/live/playlist.m3u8',
withCredentials: false
},
live: true,
// IOS微信内置浏览器默认播放不全屏
playsinline: true
}
}
}
}
//-------------------------------------------------------------
// playerStateChanged callback example(Vue.js1.X)
export default {
events: {
'playerStateChanged': function (playerCurrentState) {
console.log(playerCurrentState)
}
}
}
// playerStateChanged callback example(Vue.js2.X)
export default {
methods: {
playerStateChanged(playerCurrentState) {
console.log(playerCurrentState)
}
}
}
//-------------------------------------------------------------
// playerAction event example(Vue.js1.X)
export default {
methods: {
playerAction: function(action) {
this.$broadcast('playerAction', action)
}
}
}
// playerAction event example(Vue.js2.X)
export default {
methods: {
playerAction(action) {
this.$emit('playerAction', action)
}
}
}
protype | type | description | example |
---|---|---|---|
playsinline | Boolean | the player default play auto fullscreen in IOS(!safari) (Y/n) default: true | |
source | Object/Array | the player source src(required) | |
muted | Boolean | default: false | |
autoplay | Boolean | default: true | |
start | Number | player start time(default: 0) | |
live | Boolean | player is live? | |
playbackRates | Array | player play backrates | [0.7, 1.0, 1.3, 1.5, 1.7] |
defaultSrcReId | Number | 当有多个资源时,用于指定默认播放哪一种(分辨率)资源(default: 1) | |
controls | Boolean | player controls display or hidden | |
preload | Boolean | player preload ? | |
poster | String | player poster(default: '') | 'http://adasd.jpg' / 'data:image/png;base64,iVB...' |
wdith | Number | player width (default: 100%) | |
height | Number | player width (height: 360) | |
controlBar | Object | player controlBar dsipaly config | need to video.js api doc |
language | String | player language(default: 'en') | |
techOrder | Array | player support video type (default: example) | ['html5', 'flash', 'youtube'] |
FAQs
Video.js component for Vue
The npm package vue-video-player receives a total of 5,486 weekly downloads. As such, vue-video-player popularity was classified as popular.
We found that vue-video-player demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.