Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Latest commit

 

History

History
54 lines (32 loc) · 1.84 KB

README.md

File metadata and controls

54 lines (32 loc) · 1.84 KB

Wowza Playground

About

This Repository gives playground for Wowza Streaming Engine with REST api server. docker-compose.yml and Dockerfile.yml are basically based on official docker setup document.

Requirements

  • docker-compose
  • Trial lisence for Wowza Streaming Engine

Trial lisence is available from here.

Setup

Wowza Streaming Engine

Create wowza.env file for setting up wowza. Available variables and details can be found at --env section of official docker setup docuement.

wowza.env sample

WSE_MGR_USER=XXXX
WSE_MGR_PASS=YYYY
WSE_LIC=ZZZZ
WSE_IP_PARAM=localhost

Start docker-compose.

$ docker-compose up --build

Open http://{WSE_IP_PARAM}:8088 and enter the user info which you've set for docker-compose.

If you wanna check HLS, using Safari should be useful.

REST Document Server

This repository includes official swagger application. Originally taken from Download and view the documentation.

To see the swagger application, execute launching command inside the RESTAPIDocumentationWebpage directory.

$ ruby -run -e httpd . -p API_DOC_PORT

or

$ python3 -m http.server API_DOC_PORT

Open http://localhost:API_DOC_PORT in browser.