New Meta Data Add-on for nanoStream


nanoStream Live Encoding Software Platforms now supporting meta data transport injection

Our nanoStream SDKs, Apps and browser plugins now can be extended for sending any kind of meta data information to streaming server backends and players.
Based on a simple JSON API, any kind of object can be embedded into live streams.
Examples are: sending cue points, custom events, ad inserts, any kind of meta data.
Available in nanoStream Version 3.6 on Windows, MacOS, Desktop and Browsers and Mobile Devices (iOS/Android).

Contact us to find out more and get a quote.

Example usage to inject RTMP meta data

  • Sending a RTMP Cue Point

    // SAMPLE JSON STRING CUEPOINT
    // { name: cuepoint, time: 0.5 }
    data = ' "name": "name1", "time": "0.5", "type": "type1", "parameters": { "p1": "v1", "p2": "v2" }';
    nanoStream.SendMetadata("onCuePoint", data, "", 0);