Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
stylenone

Internal

Overview

The feature allows for the creation of playlists a playlist to show all the different content videos with the exception of the one video currently playing.

Playlist build

In playlist() there are 3 arguments in the following order: data, player, and settings.

while While the data and the player are mandatory arguments, the settings argument has default settings and it’s is optional.  

Another option is to add an array in the “config.plugins” an array that , where one of its objects is:

"name": "Playlist", then “config” object with “src”: "https://player.avplayer.com/script/2/<latest version>/plugins/videoPlayListGallery.js", then object “settings” with all the configurabilities  configuration settings of the playlist.

Json JSON example:

"plugins": [

                {

...

                    }

                }],

Playlist Data

In data, you need to add under the path data.content.contents[i].entry the following:

Field

Explanation

Type

thumbnailUrl

Image address you want as the poster for the video

String

...

name

A string as the title of the video 

String

userExpand.fullname

A string as the subtitle of the video; usually, it contains the name of the author or owner of the video

String

duration

The duration of the video in seconds

Number

Playlist Settings

In settings, you need to add the following:

  1. minWidthWindow

Minimum window width

default: 400px.

If the player’s size falls below this minimum, the playlist will be hidden.

  1. minGuiShow

Minimum gui show 

default: 600px.

If the player’s size falls below this minimum, the default buttons (shown in the center of the player) will be hidden.

  1. activeIndex

Active index

default: 0

Set the active page index

  1. ratio

Entrie Entry ratio: width/height 

default: 1.7.

The ratio of the posters in the playlist.

  1. effect

Animation effect 

default: linear.

The effect in which the posters of the playlist move.

  1. speed

Animation speed 

default: 70ms.

The speed of the effect of the moving posters in the playlist

  1. delay

Animation delay 

default: 0ms.

The delay of the effect before the posters move within the playlist

  1. infinite

infinite playlist

default: value false.

Allows you to move from the first index to the last and from the last to the first

  1. location

Where to place the element elements of the playlist 

default: data.position under the avp-p-gui class. 

Insert the name of the class you want to locate the playlist

  1. hoveringPlaylist

When hover on hovering over the player the playlist will be show shown 

default: true. 

When this value is false the playlist will be shown when the pause button is pressed

  1. upNext

Shows the next content and the time it will start in 

default: value true 

...

  1. upNextTimeOut

The time in seconds before the current video ends 

default: 5 seconds. 

  1. showAlways

An option to make the playlist always appears 

default: false 

  1. customCss

An option to custom the css CSS of any class

  1. locateBelow

Place the playlist below the player: default false.

  1. hoveringAndPause

Showing the playlist in pause and when hover on hovering over the player 

default: false.

  1. showEntryTitles

Showing all the titles of the entries without dissolving 

default: for mobile is true and for desktop is false.

  1. moreVideosText

Ability to configure the "more videos" text 

default: “more videos”.

  1. upNextText

Ability to configure the "up next" text 

default: “up next”.

  1. numOfVideosRequest

Ability to configure the number of videos per index in the playlist regardless of the size of the player.

default: the number of the playlist changes in relation to the player size.

  1. showFullUpNext

Ability to show the full title (up until 75% of the player width) of the next video: default: true.

  1. itemWidth

Set the video items width as you wish however must configure the itemHeight as well.

default: set automatically from the player width and ratio.

  1. itemHeight

Set the video items height as you wish however must configure the itemWidth as well.

default: set automatically from the player width and ratio.

  1. ratioPlayer

Duplicate the player ratio (width/height) and Implement it on the playlist items, and set . Set the ratio between the player and the playlist item to a predefined sizes (also configurable arguments) with consideration to of the player size itself.

default: 

  • smallCoefficient 0.2 

  • mediumCoefficient 0.2047619048

  • largeCoefficient 0.2047619048

  1. isMoreVideos

If false remove the more video text and the counting of seconds 

default: true

  1. arrowsColor

Color of the playlist’s arrows

...

http://play.aniview.com/clients/playlist.html

External CMS setting for HLS/M3U8

When Customers are using their CDN and want to feed the player directly with the DASH/HLS stream, we need to remember below (This may change in the Future.)

  1. As we currently don’t transcode from DASH (nor to DASH) format

  2. meta-data only - this is also not supported yet, but may be in the future.

  3. Another option to configure the player to use external video links, without even importing the meta-data, So there is no CMS intervention.

Recently we encountered a situation where we had an issue with Cloudflare, HLS file.

Cloudflare

  1. In the publisher website, they first need to remove the embeded code that is embedding CMS-id and cms-type on the DOM element, so we can make changes in the backend.

  2. We need to check, how Cloudflare uses CORS. Accordingly, we need to add the query parameter in the HLS content. In one user case, the CORS error was access control.

We can add the Query Parameter like this in the player tag:

...