Rss Feed
Tweeter button
Facebook button
Technorati button
Reddit button
Myspace button
Linkedin button
Webonews button
Delicious button
Digg button
Flickr button
Stumbleupon button
Newsvine button

RTMPT protocol

Overview

This document describes the RTMPT tunneling protocol as implemented by the Red5 Open Source Flash Server. Please note that this document is _not_ an official specification by Macromedia but hopefully helps other people to write software that makes use of RTMPT.

RTMPT basically is a HTTP wrapper around the RTMP protocol that is sent using POST requests from the client to the server. Because of the non-persistent nature of HTTP connections, RTMPT requires the clients to poll for updates periodically in order to get notified about events that are generated by the server or other clients.

During the lifetime of a RTMPT session, four possible request types can be sent to the server which will be described below.

URLs

The URL to be opened has the following form:

http://server/<comand>/[<client>/]<index>
<command>
denotes the RTMPT request type (see below)
<client>
specifies the id of the client that performs the requests (only sent for established sessions)
<index>
is a consecutive number that seems to be used to detect missing packages

Request / Response

All HTTP requests share some common properties:

  • They use HTTP 1.1 POST.
  • The content type is application/x-fcs.
  • The connection should be kept alive by the client and server to reduce network overhead.

The HTTP responses also share some properties:

  • The content type is application/x-fcs.
  • For all established sessions the first byte of the response data controls the polling interval of the client where higher values mean less polling requests.

Polling interval

The server always starts with a value of 0x01 after data was returned and increases it after 10 emtpy replies. The maximum delay is 0x21 which causes a delay of approximately 0.5 seconds between two requests.

Red5 currently increases the delay in the following steps: 0x01, 0x03, 0x05, 0x09, 0x11, 0x21.

Initial connect (command “open”)

This is the first request that is sent to the server in order to register a client on the server and start a new session. The server replies with a unique id (usually a number) that is used by the client for all future requests.

Note: the reply doesn’t contain a value for the polling interval! A successful connect resets the consecutive index that is used in the URLs.

Client updates (command “send”)

The data a client would send to the server using RTMP is simply prefixed with a HTTP header and otherwise sent unmodified.

The server responds with a HTTP response containing one byte controlling the polling interval and the RTMP data if available.

Polling requests (command “idle”)

If the client doesn’t have more data to send to the server, he has to poll for updates to receive streaming data or events like shared objects.

Disconnect of a session (command “close”)

If a client wants to terminate his connection, he sends the “close” command which is replied with a 0x00 by the server.

Wednesday, April 7th, 2010 4 Comments

4 Comments to RTMPT protocol

  • sasnegot says:

    Many thanks for really a great document – it has helped me understand RTMPT protocol.

    There’s just one thing you haven’t mentioned, which is the “ident2” message. Although this message seems to have no apparent use, it’s still a part of the handshaking process.

    It would also be nice if you could add a brief description of the handshaking process. Here’s a simple document which I wrote for myself, in which I describe how the handshaking works: https://docs.google.com/document/pub?id=1BaMM5zemyNwVsf0OHbihqa9nDZL_a5vZleEJe0bjrcc

  • salarsting says:

    Hi, sasnegot! Do you know about the format of those “connection ID, channel ID, operation, message ID”, in the servers response for ” Send – phase 2 “, which mentioned in

    https://docs.google.com/document/pub?id=1BaMM5zemyNwVsf0OHbihqa9nDZL_a5vZleEJe0bjrcc

    Thanks a lot!

    Please contract with Email: a_10jqka_2010@live.cn

  • Cyril Deba says:

    Hi,

    thanks for the article. Could you please clarify me one thing. I found an information (old red5 ticket) that a complete handshake from the RTMPT client will never be sent. Is it true?

    Regards,
    Cyril

  • Michael M says:

    Hello,

    I have been working on a project using RTMPT and I have been going through the specification in great detail. I decided to upload my findings on wikipedia so please, all of you who are interested, have a look and let me know what you think

  • Leave a Reply to salarsting