11 lines
333 B
JavaScript
11 lines
333 B
JavaScript
const ChromecastAPI = require('chromecast-api')
|
|
|
|
const client = new ChromecastAPI()
|
|
|
|
client.on('device', function (device) {
|
|
var mediaURL = 'http://commondatastorage.googleapis.com/gtv-videos-bucket/big_buck_bunny_1080p.mp4';
|
|
|
|
device.play(mediaURL, function (err) {
|
|
if (!err) console.log('Playing in your chromecast')
|
|
})
|
|
}) |