Skip to content

dahfazz/ngCast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ngCast

Broadcast media on your TV from your Angular app

Installation

npm install ng-cast

Then, import ngCast in your app.module.ts

import { NgCastModule } from 'ng-cast';
@NgModule({
  ...
  imports: [
    ...
    NgCastModule
  ],

In one of your template, insert a button to select your Chromecast and connect on it

<ng-cast/>

In one of your app components,

import { NgCastService } from 'ng-cast';
...
constructor(
    ...
    private ngCastService: NgCastService
  ) { }

You are now able to broadcast any image or video to your TV

this.ngCastService.launchMedia(mediaUrl); 
// ex. this.ngCastService.launchMedia('http://25.media.tumblr.com/tumblr_m4c8cxLOQv1rwa0vgo1_250.gif')

Customization

You can modify cast button appearance editing ng-cast/ng-cast.component.scss If you use CSS files in your project, you just need to change ng-cast.component.scss file extension

Online demo

TODO

About

Broadcast media on your TV from your Angular app

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •