Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@byteark/byteark-player-vue
Advanced tools
Table of Contents
You can try on the demo page.
Since Vue 3 is not backward compatible, please make sure to install the correct ByteArk Player Container version based on your Vue version.
Vue Version | Package Version |
---|---|
2.x | 3.x |
3.x | 4.x |
This library is distributed via NPM. You may install from NPM or Yarn.
# For NPM
npm install --save @byteark/byteark-player-vue
# For Yarn
yarn add @byteark/byteark-player-vue
ByteArkPlayerContainer
in your project.<template>
<ByteArkPlayerContainer
:options="playerOptions" />
</template>
<script>
import ByteArkPlayerContainer from '@byteark/byteark-player-vue';
export default {
components: {
ByteArkPlayerContainer,
},
data() {
return {
playerOptions: {
autoplay: true,
fluid: true,
aspectRatio: '16:9',
poster: 'https://qoder.byteark.com/images/video-frames/1/GU/cg/1GUcgd3XwsmD-large.jpg',
sources: {
src: 'https://video.example.com/path/to/video/playlist.m3u8',
type: 'application/x-mpegURL',
// Optional
title: 'Video Title',
videoId: 'RI2PimuHxDXw',
poster: 'https://qoder.byteark.com/images/video-frames/1/GU/cg/1GUcgd3XwsmD-large.jpg',
},
},
};
},
};
</script>
// Inside your main SCSS file
@import '~@byteark/byteark-player-vue/dist/@byteark/byteark-player-vue.css';
// Or inside the component
<style lang="scss" scoped>
@import '~@byteark/byteark-player-vue/dist/@byteark/byteark-player-vue.css';
</style>
In case that you want to display videos inside a fix-sized container, use fill layout mode by passing fill: true
in the player options.
playerOptions: {
...options,
fill: true,
},
You have to pass options
object to ByteArkPlayerContainer
Name | Type | Default | Description |
---|---|---|---|
autoplay | Boolean | true | Autoplay the video after the player is created. |
aspectRatio | String | '16:9' | Use with fluid layout mode, to inform expected video's aspect ratio |
controls | Boolean | true | Show the controls bar. |
customClass | String | - | Custom class name to be applied to the video container. |
fill | Boolean | false | Use fill layout mode. |
fluid | Boolean | true | Use fluid layout mode. |
loop | Boolean | - | Replay the video after ending |
muted | Boolean | - | Play the video without sounds. |
playbackRate | Number | 1.0 | Playback speed. 1.0 means original speed. |
playsinline | Boolean | true | Should be true so custom controls available on all platforms, including iOS. |
poster | String | - | Image to show before playing the video. |
preload | String | - | Preload the video before playing. (none / metadata / auto) |
responsive | Boolean | - | Auto show/hide controls depending on the screen size. |
sources | Object/Array | - | Source of videos (See Source Object) |
seekButtons | Boolean | false | Show 10 seconds seek buttons and allow double-tap to seek on mobile. |
volume | Number | - | Video's volume between 0 and 1. |
plugins | Array | - | Videojs's plugins |
The following 5 properties can also be added to options
for an advanced usage.
Name | Type | Description |
---|---|---|
playerSlugId | String | SlugId of player created via api player server service |
playerVersion | String | Custom version of the player. (default: 'v1') |
playerEndpoint | String | Endpoint to the video player (without version part and ending slash). |
playerJsFileName | String | File name of player's JS. (default: 'byteark-player.min.js') |
playerCssFileName | String | File name of player's CSS. (default: 'byteark-player.min.css') |
You can also use other props not listed here, but appear as VideoJS's options. However, changing props will not effective after the player is created.
The sources
object has 2 required fields.
Name | Type | Required | Description |
---|---|---|---|
src | String | true | URL to the video. |
type | String | true | Video content type. |
title | String | false | Video title to display on the player. |
videoId | String | false | Video's ID, usually used by analytical applications. |
poster | String | false | Image to show before playing the video. |
To provide multiple version of sources, you can use array of source objects.
ByteArk Player emits events that you can use to trigger your custom functions.
Event Name | Callback Parameters | Trigger Condition |
---|---|---|
created | (player) | When the player instance was created. |
error | (originalError) | When there was an error while loading player. |
ready | (player) | When the player instance was ready to play. |
firstplay | (player) | When the video played for the first time. |
play | (player, currentTime) | When the video played or the user hit play. (Value of currentTime is a number in seconds) |
pause | (player, currentTime) | When the video played or the user hit pause. (Value of currentTime is a number in seconds) |
ended⁕ | (player) | When the video ended. |
timeupdate | (player, currentTime) | When the current playback time changed. (Value of currentTime is a number in seconds) |
seeking | (player, currentTime) | When the the user seeked the video. (Value of currentTime is a number in seconds) |
waiting | (player) | When the player is waiting for the video. |
fullscreenchange | (player, isFullscreen) | When the user entered or exited the full screen mode. (Value of isFullscreen is True or False) |
volumechange | (player, volume) | When the user adjusted the volume. (Value of volume is between 0 - 1) |
ratechange | (player, playbackSpeed) | When the user adjusted the playback speed. (Value of playbackSpeed is a number) |
enterpictureinpicture | (player) | When the user entered Picture-in-Picture mode. |
leavepictureinpicture | (player) | When the user exited Picture-in-Picture mode. |
⁕ You are reminded that HTML5 video element fires a pause event whenever the playback stops, including at the end of the content.
For an example of implementing these events, please see Controlling Players Section.
We also provide ways to customize the player functions and behaviours by passing the following props to the player.
Name | Type | Description |
---|---|---|
createPlayerFunction | Function | Custom video instance. This function should return a VideoJS's player instance. |
lazyload | Boolean | The player loads its asset files once it got rendered on the webpage. By passing this prop, the player then loads its asset files once the user clicked on the player instead. |
onPlayerSetup | Function | Inject your custom functions before creating a player instance. |
onPlayerSetupError | Function | Inject your custom functions when there was an error during the setup. |
<template>
<ByteArkPlayerContainer
:options="options"
lazyload />
</template>
You may access the player directly via getPlayer()
method,
or using the player instance that sent from onReady
callback.
<template>
<ByteArkPlayerContainer
@ready="onReady"
@firstplay="onFirstPlay"
@play="onPlay"
@pause="onPause"
@ended="onVideoEnded"
@timeupdate="onTimeUpdated"
@seeking="onVideoSeeked"
@waiting="onPlayerWaiting"
@fullscreenchange="onToggleFullScreen"
@volumechange="onVolumeChange"
@ratechange="onPlaybackSpeedChanged"
@enterpictureinpicture="onPIPEntered"
@leavepictureinpicture="onPIPExited"
:options="playerOptions" />
<button @click.stop="playerInstance.play()">Play</button>
<button @click.stop="playerInstance.pause()">Pause</button>
</template>
<script>
import ByteArkPlayerContainer from '@byteark/byteark-player-vue';
export default {
components: {
ByteArkPlayerContainer,
},
data() {
return {
playerInstance: null,
playerOptions: {
autoplay: true,
fluid: true,
sources: {
src: 'https://video.example.com/path/to/video/playlist.m3u8',
type: 'application/x-mpegURL',
// Optional
title: 'Video Title'
},
},
};
},
methods: {
doSomething() {
// Do something...
},
onReady(newPlayerInstance) {
this.playerInstance = newPlayerInstance;
this.doSomething();
},
onFirstPlay(playerInstance) {
this.doSomething();
},
onPlay(playerInstance, currentTime) {
this.doSomething();
},
onPause(playerInstance, currentTime) {
this.doSomething();
},
onVideoEnded(playerInstance) {
this.doSomething();
},
onTimeUpdated(playerInstance, currentTime) {
this.doSomething();
},
onVideoSeeked(playerInstance, currentTime) {
this.doSomething();
},
onPlayerWaiting(playerInstance) {
this.doSomething();
},
onToggleFullScreen(playerInstance, isFullscreen) {
this.doSomething();
},
onVolumeChange(playerInstance, volume) {
this.doSomething();
},
onPlaybackSpeedChanged(playerInstance, playbackSpeed) {
this.doSomething();
},
onPIPEntered(playerInstance) {
this.doSomething();
},
onPIPExited(playerInstance) {
this.doSomething();
},
},
};
</script>
<template>
<ByteArkPlayerContainer
@ready="onReady"
:options="playerOptions" />
</template>
<script>
import ByteArkPlayerContainer from '@byteark/byteark-player-vue';
export default {
components: {
ByteArkPlayerContainer,
},
data() {
return {
playerInstance: null,
playerOptions: {
autoplay: true,
fluid: true,
sources: {
src: 'https://video.example.com/path/to/video/playlist.m3u8',
type: 'application/x-mpegURL',
// Optional
title: 'Video Title'
},
},
};
},
methods: {
onReady(newPlayerInstance) {
// The player is ready! Initialize plugins here.
},
},
};
</script>
<template>
<ByteArkPlayerContainer
@ready="onReady"
:options="playerOptions" />
</template>
<script>
import ByteArkPlayerContainer from '@byteark/byteark-player-vue';
export default {
components: {
ByteArkPlayerContainer,
},
data() {
return {
playerInstance: null,
playerOptions: {
autoplay: true,
fluid: true,
sources: {
src: 'https://video.example.com/path/to/video/playlist.m3u8',
type: 'application/x-mpegURL',
// Optional
title: 'Video Title',
},
html5: {
hlsjs: {
xhrSetup: function(xhr, url) {
xhr.withCredentials = true;
},
},
},
},
};
},
methods: {
onReady(newPlayerInstance) {
// The player is ready! Initialize plugins here.
},
},
};
</script>
MIT © ByteArk Co. Ltd.
FAQs
ByteArk Player Container for Vue
The npm package @byteark/byteark-player-vue receives a total of 26 weekly downloads. As such, @byteark/byteark-player-vue popularity was classified as not popular.
We found that @byteark/byteark-player-vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.