Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 357 Bytes

RTMP.md

File metadata and controls

18 lines (13 loc) · 357 Bytes

Play RTMP Stream

Client

Winsocks

You must init winsocks before playing RTMP stream (desktop).

WSADATA wsa;
WSAStartup(MAKEWORD(2,2), &wsa);

This is not required for WinRT.

Server

Timestamp

Your media server must fix timestamp for every client start with 0.

So you can't use nginx-rtmp-module , try simple-rtmp-server or others.