diff --git a/bin/cmd.js b/bin/cmd.js index 816d94ec..1e393009 100755 --- a/bin/cmd.js +++ b/bin/cmd.js @@ -427,14 +427,10 @@ function runDownload (torrentId) { } if (argv.chromecast) { - var chromecast = require('chromecast-js') - new chromecast.Browser() - .on('deviceOn', function (device) { - device.connect() - device.on('connected', function () { - device.play(href) - }) - }) + var chromecasts = require('chromecasts')() + chromecasts.on('update', function (player) { + player.play(href) + }) } if (argv.xbmc) { diff --git a/package.json b/package.json index 18e06837..45da8669 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "main": "index.js", "optionalDependencies": { "airplay-js": "^0.2.3", - "chromecast-js": "^0.1.4", + "chromecasts": "^1.5.3", "nodebmc": "0.0.5" }, "repository": {