New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

paella-layout-plugins

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paella-layout-plugins

Video Layout Plugins for Paella Player

  • 1.41.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

A layout plugin set for Paella Player

Usage

Step 1: Import the plugin context and add it to the Paella Player initialization parameters:

Using plugin context API:

...
import getBasicPluginsContext from 'paella-layout-plugins';

let paella = new Paella('player-container', {
    customPluginContext: [
        getBasicPluginsContext()
    ]
});
...

Using explicit plugin import API (paella-layout-plugins >= 1.41):

...
import {
    layoutPlugins
} from 'paella-layout-plugins';

let paella = new Paella('player-container', {
    plugins: [
        ...layoutPlugins
    ]
});
...

From version 1.41.1, you can also use the generic plugin array name to import all the plugins:

import { allPlugins: layoutPlugins } from 'paella-layout-plugins'
...

All the plugin libraries exports the allPlugins array. This is done in order to have a method to import all plugins using always the same name for all libraries.

Step 2: Configure the plugins you want to use in the paella player configuration.

{
    "plugins": {
        ...
        "es.upv.paella.dualVideoSideBySide": {
            "enabled": true,
            ...
        }
        ... other plugin settings
    }
}

Included plugins

Dual video side by side

An alternative layout plugin to the official one, which allows to display videos side by side with different sizes.

The cookieType attribute is used to configure the type of cookie we want to use to save the last layout configuration, and must match one of the values defined in the cookieConsent configuration. For more information, see the documentation on cookie consent.

The validContent attribute specifies which streams will be accepted for the layout. For more information on configuring video layouts, see the official paella-core documentation.

{
    "plugins": {
        "es.upv.paella.dualVideoSideBySide": {
            "enabled": true,
            "order": 0,
            "side": "right",
            "validContent": [
                { 
                    "id": "presenter-presentation", 
                    "content": ["presenter","presentation"], 
                    "icon": "present-mode-3.svg", 
                    "title": "Presenter and presentation"
                },
                {
                    "id": "presenter-2-presentation",
                    "content": ["presenter-2","presentation"],
                    "icon": "present-mode-3.svg",
                    "title": "Presenter and presentation"
                },
                {
                    "id": "presenter-presenter-2",
                    "content": ["presenter","presenter-2"],
                    "icon": "present-mode-3.svg",
                    "title": "Presenter and presentation"
                }
            ]
        },
        ...
    }
}

Exported as DualVideoSideBySideLayoutPlugin.

Icon customization data:

  • Plugin identifier: es.upv.paella.dualVideoSideBySide
  • Icon names:
    • iconMinimize
    • iconMaximize
    • iconClose

FAQs

Package last updated on 21 Mar 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc