1.0.3 • Published 8 years ago

nodecast-js v1.0.3

Weekly downloads
42
License
MIT
Repository
github
Last release
8 years ago

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);