Skip to content

Instantly share code, notes, and snippets.

View ilyesgouta's full-sized avatar

Ilyes GOUTA ilyesgouta

  • Tunis
  • 03:42 (UTC +02:00)
View GitHub Profile
@ilyesgouta
ilyesgouta / chromecast.js
Created March 26, 2015 22:16
A node.js snippet to stream media files to a Chromecast device
// A node.js snippet to stream media files to a Chromecast device.
// An ac3 or dts audio stream in matroska containers is transcoded to mp3
// using ffmeg. Seeking using left and right keys won't be available.
var Client = require('castv2-client').Client;
var DefaultMediaReceiver = require('castv2-client').DefaultMediaReceiver;
var mdns = require('mdns');