Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

penpencil-player

Package Overview
Dependencies
Maintainers
2
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

penpencil-player

PenpencilPlayer is HTML5 video player based ob videojs library. It gathers all the neccessary plugins or library at single place to play videos like:- Vimeo, Youtube , hls (m3us). PenpencilPlayer require angular v6 or above.

  • 2.5.30
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
88
decreased by-65.22%
Maintainers
2
Weekly downloads
 
Created
Source

PenpencilPlayer

npm version

PenpencilPlayer is based on videoJS library. You can install this via npm i penpencil-player

Description

PenpencilPlayer is HTML5 video player based on videoJS library. Basically, I build this player for my personal use, I just wanted a player which can play multiple video formats like: MP4, Youtube, HLS.

####Feature: i) Support Multiple video formats like: MP4, Youtube, HLS.

ii) Multiple video quality support for both HLS and MP4 sources.

iii) Dynamic watermarking including Text, Image and Link. (Combined or Individual)

iv) Forward and backward seek button compatibility.

v) Setting button with Quality and Speed options

v) Live video ui.

Note:- Because this library is only for personal use, I made lots of stuff hardcoded, like: Adding Plugins.

How to use

Step 1: Install the penpencil-player using npm i penpencil-player

Step 2: Paste these Styles and Script urls in your angular.json

"styles": [...
              "node_modules/video.js/dist/video-js.css",
              "node_modules/penpencil-player/videojs-seek-buttons/videojs-seek-buttons.css",
              "node_modules/penpencil-player/videojs-setting-menu/videojs-setting-menu.css",
              "node_modules/penpencil-player/videojs-watermark/videojs-watermark.css"
              ]

"scripts": [...
              "node_modules/video.js/dist/video.js",
              ""node_modules/@videojs/http-streaming/dist/videojs-http-streaming.js",
              "node_modules/penpencil-player/videojs-contrib-eme/videojs-contrib-eme.min.js",
              "node_modules/penpencil-player/videojs-youtube/videojs-youtube.min.js",
              "node_modules/penpencil-player/videojs-seek-buttons/videojs-seek-buttons.min.js",
              "node_modules/penpencil-player/videojs-setting-menu/videojs-setting-menu.min.js",
              "node_modules/penpencil-player/videojs-watermark/videojs-watermark.js",
              "node_modules/penpencil-player/videojs-liveui/videojs-liveui.min.js"
              ]

Step 3: Add PenpencilPalyerModule In AppModule

import: [..
  PenpencilPlayerModule
..
]

Step 4: Add PenpencilPlayer component in your html.

<rs-penpencil-player [playerConfig]="playerConfig"></rs-penpencil-player>

Step 5: Provide player config:

playerConfig = {
    poster: 'Poster Image Url',
    liveui: false,
    sources: [{
      src: 'Video source url',
      type: 'Video type' // video/mp4 (for mp4) ||application/x-mpegURL (for hls) || video/youtube (for youtube)
    }],
    autoplay: true,
    startTime: 0,
    fullScreenEnabled: false,
    fluid: boolean; // fluid || fill || responsive
    seekButtons: true, // Add plugin first
    seekSeconds: 2, // Add plugin first
    defaultQuality: 'auto', // Auto|'240'|'360'...
    encryptionUri: 'http://localhost:8000/v1/videos/get-hls-key?videoId=videoId', // For Secured HLS only
    query: '?key=value',
    headers: [
      {
        authorization: 'Bearer 14fe4f2003f7633b6366a660fb30200f5f95218ef52272b50644fa023ce245ea'
      }
    ], // For Secured HLS only
    watermark: { // Add plugin first
      text: string, 
      link: string, 
      imageUrl: string
    }
 };
 
 Chnage listner is being detected on player config, 
 If you want to update player src try this.
 
 playerConfig = {...} // replace your new player config with new video source
 
 Currently supported video type
  1: video/mp4 (for mp4)
  2: video/youtube (for youtube)
  3: application/x-mpegURL (for hls)

Step 5: Adding Plugins:

Download all the plugins and unzip it and paste all the plugins in project directory

i) Setting button for video quality and speed settings videojs-setting-menu-plugin.

"styles": [...
              "node_modules/penpencil-player/videojs-setting-menu/videojs-setting-menu.css"
              ]

"scripts": [...
              "node_modules/penpencil-player/videojs-setting-menu/videojs-setting-menu.min.js"
              ]

ii) Seek button for forward and backward videojs-seek-buttons-plugin.

"styles": [...
              "node_modules/penpencil-player/videojs-seek-buttons/videojs-seek-buttons.css"
              ]

"scripts": [...
              "node_modules/penpencil-player/videojs-seek-buttons/videojs-seek-buttons.min.js"
              ]

iii) Youtube video support videojs-youtube-plugin.

"scripts": [...
              "node_modules/penpencil-player/videojs-youtube/videojs-youtube.min.js"
              ]

iv) Dynamic watermarking videojs-watermark-plugin.

"styles": [...
              "node_modules/penpencil-player/videojs-watermark/videojs-watermark.css"
              ]

"scripts": [...
              "node_modules/penpencil-player/videojs-watermark/videojs-watermark.js"
              ]

v) Video live ui support videojs-liveui-plugin.

"scripts": [...
              "videojs-liveui/videojs-liveui.min.js"
              ]

vi) Video.js eme support videojs-eme-plugin.

"scripts": [...
              "node_modules/penpencil-player/videojs-contrib-eme/videojs-contrib-eme.min.js"
              ]

Credits (Using libraries and plugins)

videojs http-streaming videojs-hls-quality-selector videojs-contrib-quality-levels videojs-youtube videojs-seek-buttons

Keywords

FAQs

Package last updated on 23 May 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