18.0.0 • Published 12 months ago

ngx-youtube-player v18.0.0

Weekly downloads
4,194
License
-
Repository
github
Last release
12 months ago

npm version npm downloads a month npm downloads a week

Install

npm i ngx-youtube-player

Angular Youtube Player Component (Standalone)

This is an Angular component based on youtube player iframe api. This component came out as a result of the open source project Echoes Player - an alternative player for watching and listening to media from youtube.

Breaking Change with v17

Before < v17After >= v17.1.0
YoutubePlayerModule.forRoot()as standalone version

Angular Support

Starting with version 17.1.0, YoutubePlayerComponent is a standalone component

LICENSE

Angular Youtube Component includes 2 optional licenses:

  1. Free - for open source projects - includes standard play features, released under MIT license.
  2. Commercial (Enterprize) - you must purchase a license, includes the following features:
  • License types:
    • app developer (\$200) - a license for each developer working with this component for one product only
    • platform developer (\$550) - a license for each developer developer working with component for all products in one company

To purchase a license, please contact at https://orizens.com/contact

Installation

npm install ngx-youtube-player

Supported API

Currently supported attributes:

Inputs

  • height (number) - optional height for the player
  • width (number) - optional width for the player
  • videoId (string) - will load the specified video by id

outputs

  • ready (YT.Player) - implements youtube's player onReady event -> sends a the new created yt player instance
  • change - a state change event channeling the youtube's player instance state event object

DEMO

A Live Demo In StackBlitz

Usage

First, import the YoutubePlayerModule to your module:

import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
import { AppComponent } from "./app";

bootstrapApplication(AppComponent);

Next, use the youtube-player component. A Unique Id will be created for this player's instance:

import { Component } from "@angular/core";

@Component({
  standalone: true,
  selector: "app",
  template: `
    <youtube-player
      [videoId]="id"
      (ready)="savePlayer($event)"
      (change)="onStateChange($event)"
    ></youtube-player>
  `,
  imports: [YoutubePlayerComponent]
})
export class AppComponent {
  player: YT.Player;
  private id: string = "qDuKsiwS5xw";

  savePlayer(player) {
    this.player = player;
    console.log("player instance", player);
  }
  onStateChange(event) {
    console.log("player state", event.data);
  }
}

Testing (DISABLED)

To start developing tdd/bdd style: npm run dev This will: compile ts files, watch for changes and start the test task. Whenever a ts file is changed, it will rerun the tests.

Showcase Examples

13.0.0

12 months ago

18.0.0

12 months ago

17.1.1

12 months ago

17.1.0

12 months ago

17.0.0

12 months ago

16.0.0

12 months ago

12.0.2

3 years ago

10.2.0

4 years ago

12.0.0

4 years ago

12.0.1

4 years ago

11.0.0

4 years ago

9.1.0

5 years ago

9.0.0

5 years ago

7.1.5

5 years ago

7.1.4

5 years ago

7.1.3

5 years ago

7.1.2

5 years ago

7.1.1

6 years ago

7.1.0-1

6 years ago

7.1.0-0

6 years ago

7.1.0

6 years ago

6.0.0

7 years ago

0.1.0-0

7 years ago

0.1.0

7 years ago

0.0.51

7 years ago

0.0.5

7 years ago

0.0.43

7 years ago

0.0.42

7 years ago

0.0.41

8 years ago

0.0.4-4

8 years ago

0.0.4

8 years ago

0.0.4-2

8 years ago

0.0.4-1

8 years ago

0.0.4-0

8 years ago