Skip to main content

Configuration

This section outlines the available configuration options for VP Vertical Player. The player is highly customizable, offering a variety of settings to tailor the playback experience.

Configuration Overview

To configure the player, you need to provide a configuration object with the desired settings.

const configuration = {
video:{
...
},
config:{
...
}
}
vpVerticalPlayer("div").setup(configuration);

Below is a breakdown of the available configuration options.

Player video Configurations

Basic Video Options

PROPERTYDESCRIPTION
video ObjectThis object contains in itself all of the properties shown below.
videoId stringUnique ID of the video.
file stringVideo file URL.
title stringVideo title.
description stringVideo description.
thumbnail stringThumbnail image URL.
shareUrl stringURL for sharing.
live boolean Indicates if the video is a live stream.

Tracks (Subtitles)

PROPERTYDESCRIPTION
tracks arrayList of subtitle tracks.

Example:

"tracks": [{"file": "https://cdn.vpplayer.tech/subtitles/en.srt", "lang": "en", "label": "English"}]

Playlist Options

PROPERTYDESCRIPTION
state boolean Enables playlist mode.
playlistId stringUnique ID for the playlist.
playlistVideoIndex intDetermines which video in the playlist will be played first.
videos arrayList of videos in the playlist.

Video Locking

PROPERTYDESCRIPTION
isEnabled boolean Enables video locking.
type stringThe type of value (percentage or seconds).
value intLock activation value.

Player config Configurations

General Settings

PROPERTYDESCRIPTION
muted boolean Starts the player muted.
preload boolean Enables next video preloading.
autoplay boolean Starts next video playback automatically.
volume floatDefault volume (0.0 - 1.0).
pauseOtherVideos boolean Pauses other players on the page.
loop boolean Loops the video.
soundSubtitleInversion boolean Enables audio-subtitle inversion.

Player Size

PROPERTYDESCRIPTION
sizeType stringSize mode (fixed or responsive).
height intHeight of the player.

Autostart Settings

PROPERTYDESCRIPTION
state boolean Enables autostart.
onMobile boolean Autostarts on mobile.
onData boolean Autostarts on mobile data.
percentageViewable floatRequired viewable percentage.

Controls

PROPERTYDESCRIPTION
play boolean Play button visibility.
fullscreen boolean Fullscreen button visibility.
share boolean Share button visibility.
text boolean Text display visibility.
seekbar boolean Seekbar visibility.
settings boolean Settings menu visibility.
time boolean Time display visibility.

Playback Rates

Supported playback speeds:

[0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2]

Localization

Language options for UI elements:

{
"locale": "en",
"controls": {
"play": "Play",
"pause": "Pause",
"more": "more",
"less": "less",
"previous": "Previous",
"next": "Next",
"volume": "Volume",
"mute": "Mute",
"unmute": "Unmute",
"settings": "Settings",
"fullscreen": "Fullscreen",
"minimize": "Exit Fullscreen",
"live": "Live"
},
"settings": {
"quality": "Quality",
"subtitles": "Subtitles",
"autoplay": "Autoplay",
"playbackRate": "Speed",
"auto": "Auto",
"off": "Off",
"normal": "Normal",
"share": "Share",
"copyLink": "Or copy link",
"copy": "Copy",
"close": "Close"
}
}

Skin Customization

PROPERTYDESCRIPTION
text stringText color.
buttons objectButton styles.
seekbar objectSeekbar styles.

Buttons

PROPERTYDESCRIPTION
icon stringButtons icon color.
background stringButtons background color.

Seekbar

PROPERTYDESCRIPTION
rail stringSeekbar rail color.
buffer stringSeekbar buffer color.
progress stringSeekbar progress color.
dragger stringSeekbar dragger color.

Full Configuration Template:

{
"video": {
"videoId": "",
"file": "",
"title": "",
"description": "",
"thumbnail": "",
"shareUrl": "",
"live": false,
"tracks": [],
"playlist": {
"state": false,
"playlistId": "",
"playlistVideoIndex": 0,
"videos": []
},
"videoLocking": {
"isEnabled": false,
"type": "seconds",
"value": 0
}
},
"config": {
"configId": "",
"muted": false,
"preload": true,
"autoplay": false,
"volume": 0.6,
"pauseOtherVideos": true,
"loop": false,
"soundSubtitleInversion": false,
"size": {
"sizeType": "Fixed",
"height": 650
},
"autostartOnLoad": {
"state": false,
"onMobile": false,
"onData": false,
"percentageViewable": 0.5
},
"autostartOnViewable": {
"state": false,
"onMobile": false,
"onData": false,
"percentageViewable": 0.5,
"removeAfterPlay": false
},
"autopauseOnViewable": {
"state": false,
"onMobile": false,
"onData": false,
"percentageViewable": 0.5
},
"socialMedia": [],
"playbackRates": [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2],
"controls": {
"play": true,
"fullscreen": true,
"share": true,
"text": true,
"seekbar": true,
"settings": true,
"time": true
},
"lang": {
"locale": "en",
"controls": {
"play": "Play",
"pause": "Pause",
"more": "more",
"less": "less",
"previous": "Previous",
"next": "Next",
"volume": "Volume",
"mute": "Mute",
"unmute": "Unmute",
"settings": "Settings",
"fullscreen": "Fullscreen",
"minimize": "Exit Fullscreen",
"live": "Live"
},
"settings": {
"quality": "Quality",
"subtitles": "Subtitles",
"autoplay": "Autoplay",
"playbackRate": "Speed",
"auto": "Auto",
"off": "Off",
"normal": "Normal",
"share": "Share",
"copyLink": "Or copy link",
"copy": "Copy",
"close": "Close"
}
},
"skin": {
"text": "#ffffff",
"buttons": {
"icon": "#ffffff",
"background": "rgba(0, 0, 0, 0.25)"
},
"seekbar": {
"rail": "#D9D9D966",
"buffer": "#D9D9D966",
"progress": "#FFFFFF",
"dragger": "#ffffff"
}
}
}
}

With these configurations, you can fully customize the VP Vertical Player to meet your needs.