Giter Club home page Giter Club logo

ncast's Introduction

NCast

NCast C# SSDP discovery and content casting. Currently supports renderers such as LG TV's and Google Chromecast.

public SSDPDiscovery Discovery = new SSDPDiscovery();
// Setup the event when a device is discovered
Discovery.DeviceDiscovered += OnDeviceDiscovered;
// Start discovering
Discovery.Start();
private void OnDeviceDiscovered(object sender, SSDPDiscoveredDeviceEventArgs args)
{
    // args.Response contains the device information
    var device = args.Response; // type is SSDPResponse
    
    if (device.DeviceType == DeviceType.Chromecast) {
        
        // Turn the generic SSDP device of known manufacturer into a Chromecast specific device
        var chromeCast = new ChromecastDevice(device);
        // Get the name and details from the Chromecast
        var info = await chromeCast.GetDetail();
    }
}

Creating a client

ChromecastClient = new ChromecastClient(item.Address, 8009);

Launching an application

// Create channels for communication

var connection = ChromecastClient.CreateChannel(DialConstants.DialConnectionUrn);
var heartbeat = ChromecastClient.CreateChannel(DialConstants.DialHeartbeatUrn);
var receiver = ChromecastClient.CreateChannel(DialConstants.DialReceiverUrn);

await ChromecastClient.Connect();
ChromecastClient.Listen();

connection.MessageReceived += OnData;
receiver.MessageReceived += OnData;
heartbeat.MessageReceived += OnData;

// Send the connect message
ChromecastClient.Write(MessageFactory.Connect());

// Launch the YouTube application
ChromecastClient.Write(MessageFactory.Launch("YouTube"));

// Start a 5 second heartbeat
ChromecastClient.StartHeartbeat();

alt tag

Uses the https://github.com/tmds/Tmds.MDns library under the LGPL license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.