Visualization Apps

Learn how to use the easyvis visualization apps

Table of contents

  1. Concept
  2. Structure
  3. Play and Stop of visualization apps

Concept

A visualization app provides you an easy way to visualize/display certain digital content. For example the stream visualization app allows you to define quickly which stream you want to show and easyvis manages the visualization on your various visualiation devices in the background.

Structure

Each visualization app follows the same json structure by defining the type and the config of the visualization app. For example a stream visualization app which can be played would look like this:

{
  "type": "STREAM",
  "config": {
    "uri": "http://teststream.rtmp"
  }
}

Play and Stop of visualization apps

Via the easyvis api (or directly in the easyvis console) you can play the different visualization apps. With the play and stop commands for your player you can start and stop your visualization apps.

POST api.easyvis.io/v1/your_player/play

{
  "type": "STREAM",
  "config": {
    "uri": "http://teststream.rtmp"
  }
}

Table of contents