Skip to content

Ivshti/nodecast-js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nodecast-js

Nodecast-js is a simple module for streaming media to Chromecast/UPnP/DLNA.

Installation

npm install nodecast-js --save

Usage

var Browser = require('nodecast-js');

var url = 'http://commondatastorage.googleapis.com/gtv-videos-bucket/big_buck_bunny_1080p.mp4';
var timestamp = 60; // in seconds

var browser = new Browser();
browser.onDevice(function (device) {
    device.onError(function (err) {
        console.log(err);
    });
    
    console.log(browser.getList()); // list of currently discovered devices

    device.play(url, timestamp);
});
browser.start();

setTimeout(function () {
    browser.destroy(); // destroy your browser
}, 20000);

About

Node.js module for UPnP/DLNA/Chromecast support

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%