youtube-castv2-client

0.0.1 • Public • Published

youtube-castv2-client

youtube-castv2-client youtube sender. This has been updated to work with the new protocol. The original project appears to be abandoned.

Sample

var Client                = require('castv2-client').Client;
var Youtube               = require('youtube-castv2-client').Youtube;
var mdns                  = require('mdns');
 
var browser = mdns.createBrowser(mdns.tcp('googlecast'));
 
browser.on('serviceUp', function(service) {
  console.log('found device "%s" at %s:%d', service.name, service.addresses[0], service.port);
  ondeviceup(service.addresses[0]);
  browser.stop();
});
 
browser.start();
 
function ondeviceup(host) {
 
  var client = new Client();
  client.connect(host, function() {
    console.log('connected, launching app ...');
    client.launch(Youtube, function(err, player) {
      player.load('69V__a49xtw');
    });
  });
 
  client.on('error', function(err) {
    console.log('Error: %s', err.message);
    client.close();
  });
 
}

Installation

npm install youtube-castv2-client

License

MIT

Dependents (1)

Package Sidebar

Install

npm i youtube-castv2-client

Weekly Downloads

2

Version

0.0.1

License

MIT

Last publish

Collaborators

  • irfanhabib