+ All Categories
Home > Documents > RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative...

RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative...

Date post: 02-Oct-2020
Category:
Upload: others
View: 1 times
Download: 0 times
Share this document with a friend
34
Remote Camera March 10, 2015 RCTG005 Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP
Transcript
Page 1: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Remote Camera March 10, 2015 RCTG005 Version 1.0.2

Informative Document | SRG

RTSP Streaming with RTP/RTCP

Page 2: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

2

C O N T E N T S

1. Overview ...................................................................................... 3

1.1. About This Document ............................................................................. 3

2. Supported Codecs ...................................................................... 3

3. RTSP Request URL ..................................................................... 4

4. RTSP Methods ............................................................................ 5

4.1. Supported Methods ................................................................................ 5 4.2. Typical Sequence of RTSP Communication ............................................ 6

5. Getting Stream ............................................................................ 7

5.1. Getting Video Stream ............................................................................. 8

5.1.1. TCP Bit Stream (Video)......................................................................................................... 8 5.1.2. UDP Unicast Bit Stream (Video) ..................................................................................... 12 5.1.3. UDP Multicast Bit Stream (Video) .................................................................................. 16

5.2. Getting Audio Stream ............................................................................ 21 5.3. Getting Both Video and Audio Bit Streams ............................................ 23 5.4. rtpmap Attribute .................................................................................... 24

6. RTP/RTCP .................................................................................. 25

6.1. RTP Header Fields ............................................................................... 25 6.2. SR: Sender report RTCP packet ........................................................... 26 6.3. Change RTP time-out ........................................................................... 29

7. Source-Specific Multicast ........................................................ 30

8. RTSP/RTP over HTTP ............................................................... 32

Revision History ............................................................................. 33

Page 3: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

3

1. Overview

1.1. About This Document

This document describes technical details about RTSP streaming function supported by Sony SRG-300SE/301SE remote camera (hereafter referred to as “the cameras”).

2. Supported Codecs

The following codecs are supported with RTSP streaming function of the cameras.

Video Codec Audio Codec

H.264 Motion JPEG

AAC

Page 4: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

4

3. RTSP Request URL

RTSP request URLs of the cameras for getting live stream are as follows.

Request URL Description

rtsp://<camera_address>/video1

Requests video* bit stream from codec corresponding to CGI parameter “ImageCodec1”** and its related ones.

* Audio bit stream can be transmitted together with this video stream depending on situations. See chapter 5 “Getting Stream”.

** ImageCodec1 corresponds to “Image 1” settings in administrator menu GUI of the cameras.

rtsp://<camera_address>/video2

Requests video* bit stream from codec corresponding to CGI parameter “ImageCodec2”** and its related ones.

* Audio bit stream can be transmitted together with this video stream depending on situations. See chapter 5 “Getting Stream”.

** ImageCodec2 corresponds to “Image 2” settings in administrator menu GUI of the cameras.

rtsp://<camera_address>/video3

Requests video* bit stream from codec corresponding to CGI parameter “ImageCodec3”** and its related CGI ones.

* Audio bit stream can be transmitted together with this video stream depending on situations. See chapter 5 “Getting Stream”.

** ImageCodec3 corresponds to “Image 3” settings in administrator menu GUI of the cameras.

rtsp://<camera_address>/audio

Requests audio bit stream from codec corresponding to CGI parametr “AudInCodec”* and its related ones.

* AudInCodec corresponds to “Audio sending” settings in administrator menu GUI of the cameras.

Note: Total number of codecs in the camera may vary depending on capabilities of each model/series.

RTSP port of the camera (RTSP server) is 554 by factory default. If needed, the port can be changed by using “camera.cgi” CGI command with “RTSPPort” CGI parameter.

Regarding RTSP request URLs for SSM (source-specific multicast), refer to chapter 7 “Source-Specific Multicast”.

Page 5: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

5

4. RTSP Methods

4.1. Supported Methods

The cameras support the following RTSP methods.

Supported Method

OPTIONS

DESCRIBE

SETUP

PLAY

TEARDOWN

GET_PARAMETER

SET_PARAMETER

For details about the RTSP methods listed above, refer to RFC 2326.

Page 6: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

6

4.2. Typical Sequence of RTSP Communication

Overview of a typical RTSP communication sequence between the camera (RTSP server) and a client is as shown below.

RTSP “GET_PARAMETER” method in the sequence above is used to keep the RTSP streaming alive. Refer to chapter 5 “Getting Stream” for further descriptions on this topic.

OPTIONS

RTSP/1.0 200 OK

DESCRIBE

RTSP/1.0 200 OK

SETUP

RTSP/1.0 200 OK

PLAY

RTSP/1.0 200 OK

GET_PARAMETER

RTSP/1.0 200 OK

TEARDOWN

RTSP/1.0 200 OK

<Media stream(s)>

<Media stream(s)>

Client Camera

Page 7: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

7

5. Getting Stream

< Transfer Protocols >

RTSP function of the cameras supports the following transfer protocols to stream video and/or audio from the camera to client(s).

a) TCP bit stream b) UDP unicast bit stream c) UDP multicast bit stream

Details of each case above are described in the following sections.

< Number of Media Streams >

The cameras support multiple codec instances simultaneously as mentioned in the previous chapter 3 “RTSP Request URL”. Number of media streams in an RTSP session of the camera varies depending on situations as described below.

Case 1) In a situation where audio codec is disabled and a video stream is requested: Each RTSP session delivers just one video stream instances at a time. (Examples of this case are deeply described in section 5.1 “Getting Video Stream” below.)

Case 2) In a situation where audio codec is enabled and an audio stream is requested: Each RTSP session delivers just one audio stream at a time. (This case is described in section 5.2 “Getting Audio Stream” below.)

Case 3) In a situation where audio codec is enabled and just a video stream is requested: Each RTSP session delivers two media streams at a time — not only a video stream but also an audio stream. (Example of this case is deeply described in section 5.3 “Getting Both Video and Audio Bit Streams” below.)

< RTSP Session Timeout >

RTSP session timeout value in seconds of the cameras – “RTSPTimeout” CGI parameter and “RTSP time out” setting in administrator menu GUI – is set to zero by factory default. The cameras treat the value zero as infinite duration and RTSP session never timeout. To set

Page 8: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

8

RTSPTimeout to an arbitrary duration, “camera.cgi” CGI command with RTSPTimeout CGI parameter (in seconds) can be used.

RTSP session timeout value of the camera is indicated to a client as “timeout” parameter (in seconds) in RTSP response to “SETUP” request. However, when the timeout value is set to zero, timeout parameter does not exist in the response.

To keep an RTSP streaming alive, examples in this document periodically use RTSP “GET_PARAMETER” method before the camera automatically closes RTSP session in accordance with timeout pamameter.

< Closing RTSP Session >

To safely close an RTSP session and its related UDP ports invoked by it (RTP, RTCP), the cameras require clients to use RTSP “TEARDOWN” method. Technically sending RTCP “BYE” packet from a client to the camera might trigger closing all these session/ports in the camera eventually, however, the cameras do not recommend using RTCP “BYE” packet in this case.

5.1. Getting Video Stream

5.1.1. TCP Bit Stream (Video)

The following diagram and captured packets in this section show an example of getting a video bit stream from the camera over TCP in a situation where audio codec is disabled and a client requests a video stream.

Page 9: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

9

OPTIONS rtsp://<camera_address>/video1 RTSP/1.0

Client Camera

RTSP/1.0 200 OK

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0

SETUP rtsp://<camera_address>/video1/trackID=1 RTSP/1.0Transport: RTP/AVP/TCP;unicast;interleaved=0-1

RTSP/1.0 200 OKa=control:trackID=1

RTSP/1.0 200 OKSession: <SessionId>;timeout=<SessionTimeout>

PLAY rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

<Video stream in RTP payload over TCP>

GET_PARAMETER rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

TEARDOWN rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

<Video stream in RTP payload over TCP>

Page 10: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

10

OPTIONS rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 1\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 1\r\n Public: DESCRIBE, SETUP, TEARDOWN, PLAY, OPTIONS, SET_PARAMETER, GET_PARAMETER\r\n \r\n

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 2\r\n User-Agent <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 2\r\n Content-Length: <Length>\r\n Content-Type: application/sdp\r\n Content-Base: rtsp://<camera_address>/video1/\r\n \r\n

v=<ProtocolVersion>\r\n o=- <SessionIdForOrigin> 1 IN IP4 <camera_address>\r\n s=<SessionName>\r\n t=0 0\r\n a=range:npt=now-\r\n c=IN IP4 <ConnectionAddress>\r\n m=<MediaNameAndTransportAddress>\r\n a=rtpmap:<PayloadType> <EncodingName> /<ClockRate> \r\n a=control:trackID=1\r\n a=framerate:<FrameRate>\r\n a=fmtp:<Format> <FormatSpecificParameters>\r\n

SETUP rtsp://<camera_address>/video1/trackID=1 RTSP/1.0\r\n CSeq: 3\r\n Transport: RTP/AVP/TCP;unicast;interleaved=0-1\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 3\r\n Session: <SessionId> [ ;timeout=<SessionTimeout> ] \r\n Cache-Control: must-revalidate\r\n Transport: RTP/AVP/TCP;interleaved=0-1;ssrc=<SSRC>\r\n \r\n

Page 11: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

11

PLAY rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 4\r\n Session: <SessionId>\r\n Range: npt=0.000-\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 4\r\n Session: <SessionId>\r\n RTP-Info: url=trackID=1;seq=<SequenceNumber>;rtptime=…\r\n \r\n

<Video stream in RTP payload over TCP>

GET_PARAMETER rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 5\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

<Video stream in RTP payload over TCP>

TEARDOWN rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 6\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 6\r\n Session: <SessionId>\r\n \r\n

Page 12: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

12

5.1.2. UDP Unicast Bit Stream (Video)

The following diagram and captured packets in this section show an example of getting video bit stream from the camera over UDP unicast in a situation where audio codec is disabled and a client requests a video stream. In the example below in this section, client uses “client_port” parameter in RTSP “SETUP” request to specify UDP unicast ports of the client’s end for RTP session and RTCP session. One of the following ways can be used to specify the ports.

a) Specifying ports by using “client_port” parameter in RTSP “SETUP” request — This is used in the example mentioned above.

b) Specifying ports by using “camera.cgi” CGI command with CGI parameters listed below.

CGI Parameter Corresponding to

RTSPUcVideoPort1 A pair of UDP unicast ports for “ImageCodec1” live stream.

(RTSPUcVideoPort1 corresponds to “RTSP video port number 1” setting in administrator menu GUI of the cameras.)

RTSPUcVideoPort2 A pair of UDP unicast ports for “ImageCodec2” live stream.

(RTSPUcVideoPort2 corresponds to “RTSP video port number 2” setting in administrator menu GUI of the cameras.)

RTSPUcVideoPort3 A pair of UDP unicast ports for “ImageCodec3” live stream.

(RTSPUcVideoPort3 corresponds to “RTSP video port number 3” setting in administrator menu GUI of the cameras.)

RTSPUcAudioPort A pair of UDP unicast ports for “AudInCodec” live stream.

(RTSPUcAudioPort corresponds to “RTSP audio port number” setting in administrator menu GUI of the cameras.)

c) Not explicitly specifying UDP unicast ports — In this case, the ports are automatically specified by the camera (RTSP server) and are indicated in RTSP response to “SETUP” request.

Page 13: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

13

OPTIONS rtsp://<camera_address>/video1 RTSP/1.0

Client Camera

RTSP/1.0 200 OK

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0

RTSP/1.0 200 OKa=control:trackID=1

RTSP/1.0 200 OKSession: <SessionId>;timeout=<SessionTimeout>Transport: RTP/AVP;unicast;

client_port=<CliUdpPort>-<CliUdpPort+1>; server_port=<SrvUdpPort>-<SrvUdpPort+1>

PLAY rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

to <Video stream in from<CliUdpPort> RTP payload over UDP> <SrvUdpPort>

GET_PARAMETER rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

TEARDOWN rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

SETUP rtsp://<camera_address>/video1/trackID=1 RTSP/1.0Transport: RTP/AVP;unicast;

client_port=<CliUdpPort>-<CliUdpPort+1>

to <Video stream in from<CliUdpPort> RTP payload over UDP> <SrvUdpPort>

Page 14: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

14

OPTIONS rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 1\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 1\r\n Public: DESCRIBE, SETUP, TEARDOWN, PLAY, OPTIONS, SET_PARAMETER, GET_PARAMETER\r\n \r\n

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 2\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 2\r\n Content-Length: <Length>\r\n Content-Type: application/sdp\r\n Content-Base: rtsp://<Address>/video1/\r\n \r\n v=0\r\n o=- <SessionIdForOrigin> 1 IN IP4 <camera_address>\r\n s=<SessionName>\r\n t=0 0\r\n a=range:npt=now-\r\n c=IN IP4 <ConnectionAddress>\r\n m=<MediaNameAndTransportAddress>\r\n a=rtpmap:<PayloadType> <EncodingName> /<ClockRate> \r\n a=control:trackID=1\r\n a=framerate:<FrameRate>\r\n a=fmtp:<Format> <FormatSpecificParameters>\r\n

SETUP rtsp://<camera_address>/video1/trackID=1 RTSP/1.0\r\n CSeq: 3\r\n Transport: RTP/AVP;unicast;client_port=<CliUdpPort>-<CliUdpPort+1>\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 3\r\n Session: <SessionId> [ ;timeout=<SessionTimeout> ] \r\n Cache-Control: must-revalidate\r\n Transport: RTP/AVP;unicast;client_port=<CliUdpPort>-<CliUdpPort+1>;source=<SourceAddress>;server_port=<SrvUdpPort>-<SrvUdpPort+1>;ssrc=<SSRC>\r\n

Page 15: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

15

\r\n

PLAY rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 4\r\n Session: <SessionId>\r\n Range: npt=0.000-\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 4\r\n Session: <SessionId>\r\n RTP-Info: url=trackID=1;seq=<SequenceNumber>;rtptime=…\r\n \r\n

<Video stream in RTP payload over UDP unicast>

GET_PARAMETER rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 5\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

<Video stream in RTP payload over UDP unicast>

TEARDOWN rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 6\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 6\r\n Session: <SessionId>\r\n \r\n

Page 16: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

16

5.1.3. UDP Multicast Bit Stream (Video)

The following diagram and captured packets in this section show an example of getting video bit stream from the camera over UDP multicast in a situation where audio codec is disabled and a client requests a video stream.

In the example below in this section, the client uses “destination” parameter and “client_port” parameter in RTSP “SETUP” request to specify multicast address and ports for RTP session and RTCP session. One of the following ways can be used to specify the multicast address and/or the ports.

a) Specifying address and/or ports by using “destination” parameter and/or “client_port” parameter in RTSP “SETUP” request — This way is used in the example mentioned below.

b) Specifying address and/or ports by using “camera.cgi” CGI command with CGI parameters listed below.

CGI Parameter Corresponding to

RTSPMcAddress IPv4 multicast address.

(RTSPMcAddress corresponds to “RTSP multicast address” setting in administrator menu GUI of the cameras.)

RTSPMcVideoPort1 A pair of multicast ports for the “ImageCodec1” live stream.

(RTSPMcVideoPort1 corresponds to “RTSP multicast video port number 1” setting in administrator menu GUI of the cameras.)

RTSPMcVideoPort2 A pair of multicast ports for the “ImageCodec2” live stream.

(RTSPMcVideoPort2 corresponds to “RTSP multicast video port number 2” setting in administrator menu GUI of the cameras.)

RTSPMcVideoPort3 A pair of multicast ports for the “ImageCodec3” live stream.

(RTSPMcVideoPort3 corresponds to “RTSP multicast video port number 3” setting in administrator menu GUI of the cameras.)

RTSPMcAudioPort A pair of multicast ports for the “AudInCodec” live stream.

(RTSPMcAudioPort corresponds to “RTSP multicast audio port number” setting in administrator menu GUI of the cameras.)

c) Not explicitly specifying multicast address and/or ports — In this case, multicast address and/or ports are automatically specified by the camera (RTSP server) and are indicated in RTSP response to “SETUP” request.

Regarding multicast “time to live” (TTL) value, the cameras indicate it to clients as “ttl”

Page 17: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

17

parameter in RTSP response to “SETUP” request. Clients can specify an arbitrary TTL value in RTSP “SETUP” request if needed. Or, when clients do not explicitly specify TTL value in “SETUP” request, the cameras automatically use “McTtl” CGI parameter as TTL value instead. McTtl can be changed by using “camera.cgi” CGI command if needed.

Page 18: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

18

OPTIONS rtsp://<camera_address>/video1 RTSP/1.0

Client Camera

RTSP/1.0 200 OK

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0

RTSP/1.0 200 OKa=control:trackID=1

RTSP/1.0 200 OKSession: <SessionId>;timeout=<SessionTimeout>Transport: RTP/AVP;unicast;destination=<McAddress>;

port=<McPort>-<McPort+1>

PLAY rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

SETUP rtsp://<camera_address>/video1/trackID=1 RTSP/1.0Transport: RTP/AVP;multicast;[destination=<McAddress>; ]

client_port=<McPort>-<McPort+1>

<McAddress>

<McAddress>

IGMP Join IGMP Join

to <Video stream in <Video stream in from<McPort> RTP payload> RTP payload> <McPort>

GET_PARAMETER rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

RTSP/1.0 200 OK

RTSP/1.0 200 OK

IGMP Leave IGMP Leave

TEARDOWN rtsp://<camera_address>/video1 RTSP/1.0Session: <SessionId>

to <Video stream in <Video stream in from<McPort> RTP payload> RTP payload> <McPort>

Page 19: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

19

OPTIONS rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 1\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 1\r\n Public: DESCRIBE, SETUP, TEARDOWN, PLAY, OPTIONS, SET_PARAMETER, GET_PARAMETER\r\n \r\n

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 2\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 2\r\n Content-Length: <Length>\r\n Content-Type: application/sdp\r\n Content-Base: rtsp://<camera_address>/video1/\r\n \r\n v=0\r\n o=- <SessionIdForOrigin> 1 IN IP4 <camera_address>\r\n s=<SessionName>\r\n t=0 0\r\n a=range:npt=now-\r\n c=IN IP4 <ConnectionAddress>\r\n m=<MediaNameAndTransportAddress>\r\n a=rtpmap:<PayloadType> <EncodingName> /<ClockRate> \r\n a=control:trackID=1\r\n a=framerate:<FrameRate>\r\n a=fmtp:<Format> <FormatSpecificParameters>\r\n

SETUP rtsp://<camera_address>/video1/trackID=1 RTSP/1.0\r\n CSeq: 3\r\n Transport: RTP/AVP;multicast;destination=<DestinationAddress>;client_port=<McPort>-<McPort+1>\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 3\r\n Session: <SessionId> [ ;timeout=<SessionTimeout> ] \r\n Cache-Control: must-revalidate\r\n Transport: RTP/AVP;multicast;destination=<DestinationAddress>;port=<McPort>-<McPort+1>;ttl=<MulticastTimeToLive>\r\n

Page 20: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

20

\r\n

PLAY rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 4\r\n Session: <SessionId>\r\n Range: npt=0.000-\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 4\r\n Session: <SessionId>\r\n RTP-Info: url=trackID=1;seq=<SequenceNumber>;rtptime=…\r\n \r\n

<Video stream in RTP payload over UDP multicast>

GET_PARAMETER rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 5\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

<Video stream in RTP payload over UDP multicast>

TEARDOWN rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 6\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 6\r\n Session: <SessionId>\r\n \r\n

<Note>

To get video and/or audio bit stream over UDP multicast, the cameras require you to enable multicast streaming function in advance by using CGI parameter “Multicast” or “Multicast streaming Enable” setting in administrator menu GUI of the cameras. Otherwise, a request for multicast streaming fails during RTSP communication.

Page 21: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

21

5.2. Getting Audio Stream

The following captured packets in this section show an example of getting an audio bit stream from the camera over TCP in a situation where audio codec is enabled and a client requests an audio stream.

Detailed explanations about RTSP audio streaming over UDP unicast and UDP multicast are left out — these can be known by analogy of the cases of video streaming described in section 5.1.2 “UDP Unicast Bit Stream (Video)” and section 5.1.3 “UDP Multicast Bit Stream (Video)”.

OPTIONS rtsp://<camera_address>/audio RTSP/1.0\r\n CSeq: 1\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 1\r\n Public: DESCRIBE, SETUP, TEARDOWN, PLAY, OPTIONS, SET_PARAMETER, GET_PARAMETER\r\n \r\n

DESCRIBE rtsp://<camera_address>/audio RTSP/1.0\r\n CSeq: 2\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 2\r\n Content-Length: <Length>\r\n Content-Type: application/sdp\r\n Content-Base: rtsp://<camera_address>/audio/\r\n \r\n

v=<ProtocolVersion>\r\n o=- <SessionIdForOrigin> 1 IN IP4 <camera_address>\r\n s=<SessionName>\r\n t=0 0\r\n a=range:npt=now-\r\n c=IN IP4 <ConnectionAddress>\r\n m=<MediaNameAndTransportAddress>\r\n a=rtpmap:<PayloadType> <EncodingName> /<ClockRate> [ /<EncodingParameters> ] \r\n a=control:trackID=2\r\n

SETUP rtsp://<camera_address>/audio/trackID=2 RTSP/1.0\r\n CSeq: 3\r\n Transport: RTP/AVP/TCP;unicast;interleaved=0-1\r\n

Page 22: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

22

User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 3\r\n Session: <SessionId> [ ;timeout=<SessionTimeout> ] \r\n Cache-Control: must-revalidate\r\n Transport: RTP/AVP/TCP;interleaved=0-1;ssrc=<SSRC>\r\n \r\n

PLAY rtsp://<camera_address>/audio RTSP/1.0\r\n CSeq: 4\r\n Session: <SessionId>\r\n Range: npt=0.000-\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 4\r\n Session: <SessionId>\r\n RTP-Info: url=trackID=2;seq=<SequenceNumber>;rtptime=…\r\n \r\n

<Audio stream in RTP payload over TCP>

GET_PARAMETER rtsp://<camera_address>/audio RTSP/1.0\r\n CSeq: 5\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

<Audio stream in RTP payload over TCP>

TEARDOWN rtsp://<camera_address>/audio RTSP/1.0\r\n CSeq: 6\r\n Session: <SessionId>\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 6\r\n Session: <SessionId>\r\n \r\n

Page 23: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

23

5.3. Getting Both Video and Audio Bit Streams

In a situation where audio codec is enabled and a client requests just a video stream, the camera transmits the video stream and also an audio stream at a time in an RTSP session. The following captured packets in this section show an example of getting both a video bit stream and an audio bit stream at a time from the camera.

As you can see in the example, session descriptions in RTSP response to “DESCRIBE” request contains two media descriptions — the first one is for video, the second one is for audio.

DESCRIBE rtsp://<camera_address>/video1 RTSP/1.0\r\n CSeq: 2\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 2\r\n Content-Length: <Length>\r\n Content-Type: application/sdp\r\n Content-Base: rtsp://<camera_address>/video1/\r\n \r\n v=0\r\n o=- <SessionIdForOrigin> 1 IN IP4 <camera_address>\r\n s=<SessionName>\r\n t=0 0\r\n a=range:npt=now-\r\n c=IN IP4 <ConnectionAddress>\r\n

m=video 0 RTP/AVP 105\r\n a=rtpmap:105 H264/90000\r\n a=control:trackID=1\r\n a=framerate:60.0\r\n a=fmtp:105 packetization-mode=1; profile-level-id=2742e0; sprop-parameter-sets=Z0LgH41oBQBbsBbIAAAfSAADqYNaAD0IAQBXvdQ8UIqA,KM4ESSAAAA==\r\n m=audio 0 RTP/AVP 101\r\n a=rtpmap:101 mpeg4-generic/16000/1\r\n a=control:trackID=2\r\n a=fmtp:101 profile-level-id=15; streamtype=5; mode=AAC-hbr; config=1408; SizeLength=13; IndexLength=3;IndexDeltaLength=3; constantDuration=1024; Profile=1; bitrate=64000;\r\n

Page 24: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

24

5.4. rtpmap Attribute

Values of “rtpmap” attribute(s) in RTSP response to “DESCRIBE” request vary with codec of media stream(s). Here are examples with the cameras.

Codec rtpmap Attribute Value

H.264 a=rtpmap:105 H264/90000\r\n

JPEG a=rtpmap:26 JPEG/90000\r\n

AAC (64 kbps) a=rtpmap:101 mpeg4-generic/16000/1\r\n

AAC (128 kbps) a=rtpmap:102 mpeg4-generic/48000/1\r\n

Page 25: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

25

6. RTP/RTCP

6.1. RTP Header Fields

The RTP header has the following format.

Field Bit Length Description

Version 2 This field identifies the version of RTP. The version defined by this specification is two (2).

Padding 1 If the padding bit is set, the packet contains one or more additional padding octets at the end which are not part of the payload. The last octet of the padding contains a count of how many padding octets should be ignored.

Extension 1 If the extension bit is set, the fixed header is followed by exactly one header extension.

CSRC Count 4 The CSRC count contains the number of CSRC identifiers that follow the fixed header.

Marker 1 The interpretation of the marker is defined by a profile. It is intended to allow significant events such as frame boundaries to be marked in the packet stream.

Payload Type 7 This field identifies the format of the RTP payload and determines its interpretation by the application.

Sequence Number 16 The sequence number increments by one for each RTP data packet sent, and may be used by the receiver to detect packet loss and to restore packet sequence.

Timestamp 32 The timestamp reflects the sampling instant of the first octet in the RTP data packet. The sampling instant must be derived from a clock that increments monotonically and linearly in time to allow synchronization and jitter calculations.

Synchronization Source (SSRC) Identifier

32 The SSRC field identifies the synchronization source. This identifier is chosen randomly, with the intent that no two synchronization sources within the same RTP session will have the same SSRC identifier.

Contributing Source (CSRC) Identifier

32 The CSRC list identifies the contributing sources for the payload contained in this packet. The number of identifiers is given by the CC field.

Page 26: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

26

6.2. SR: Sender report RTCP packet

The RTCP Sender report’s header has the following format.

Field Bit Length Description

Version 2 Identifies the version of RTP, which is the same in RTCP packets as in RTP data packets. The version defined by this specification is two (2).

Padding 1 If the padding bit is set, the packet contains one or more additional padding octets at the end which are not part of the payload. The last octet of the padding contains a count of how many padding octets should be ignored.

Reception Report Count

5 The number of reception report blocks contained in this packet. A value of zero is valid.

Packet Type 8 Contains the constant 200 to identify this as an RTCP SR packet.

Length 16 The length of this RTCP packet in 32-bit words minus one, including the header and any padding.

Synchronization Source (SSRC) Identifier

32 The synchronization source identifier for the originator of this SR packet.

NTP timestamp 64 Indicates the wallclock time when this report was sent so that it may be used in combination with timestamps returned in reception reports from other receivers to measure round-trip propagation to those receivers.

RTP timestamp 32 Corresponds to the same time as the NTP timestamp (above), but in the same units and with the same random offset as the RTP timestamps in data packets.

Sender's Packet Count

32 The total number of RTP data packets transmitted by the sender since starting transmission up until the time this SR packet was generated.

Page 27: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

27

Sender's Ocket Count

32 The total number of payload octets (i.e., not including header or padding) transmitted in RTP data packets by the sender since starting transmission up until the time this SR packet was generated. The count is reset if the sender changes its SSRC identifier.

Page 28: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

28

RTP/RTCP Sequence

Client Camera

to <Video stream in from

<CliUdpPort> RTP payload over UDP> <SrvUdpPort>

<SR for Video stream>

<RR for Video stream>

to <Video stream in from <CliUdpPort> RTP payload over UDP> <SrvUdpPort>

to <Audio stream in from <CliUdpPort> RTP payload over UDP> <SrvUdpPort>

<SR for Audio stream>

<RR for Audio stream>

to <Video stream in from <CliUdpPort> RTP payload over UDP> <SrvUdpPort>

to <Audio stream in from <CliUdpPort> RTP payload over UDP> <SrvUdpPort>

<SR for Video stream>

<RR for Video stream>

<SR for Audio stream> <RR for Audio stream>

Synchronize

video

Synchronize

audio

Synchronize

audio and

video

Page 29: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

29

6.3. Change RTP time-out

If you would like to change RTP data transmission time-out, use the following CGI command.

http://<camera_address>/command/camera.cgi?RtpExpire=Value <Value> 60000 :60000msec(default) 0 :disable time-out 1000 :1000msec to 86400000 : 86400000msec(1day)

Page 30: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

30

7. Source-Specific Multicast

RTSP request URLs for SSM (source-specific multicast) are as follows.

Request URL Description

rtsp://<camera_address>/ssm/video1 Requests video bit stream from codec corresponding to CGI parameter “ImageCodec1” and its related ones.

rtsp://<camera_address>/ssm/video2 Requests video bit stream from codec corresponding to CGI parameter “ImageCodec2” and its related ones.

rtsp://<camera_address>/ssm/video3 Requests video bit stream from codec corresponding to CGI parameter “ImageCodec3” and its related ones.

rtsp://<camera_address>/ssm/audio Requests video bit stream from codec corresponding to CGI parameter “AudInCodec” and its related ones.

Note: Total number of codecs in the camera may vary depending on capabilities of each model/series.

<Notes>

To get video and/or audio bit stream over UDP multicast, the cameras require you to enable multicast streaming function in advance by using CGI parameter “Multicast” or “Multicast streaming Enable” setting in administrator menu GUI of the cameras. Otherwise, a request for multicast streaming fails during RTSP communication.

To get video and/or audio bit stream over SSM, the cameras require you to set a destination multicast address to CGI parameter “RTSPMcAddress”* in advance of starting RTSP communication. The destination multicast address needs to be within the SSM block assigned by IANA — 232.0.0.0 through 232.255.255.255. (* RTSPMcAddress corresponds to “RTSP multicast address” setting in administrator menu GUI of the cameras.)

Regarding multicast “time to live” (TTL) value, clients can specify an arbitrary TTL value by using CGI parameter “McTtl” in advance of starting RTSP communication if needed. McTtl can be changed by using “camera.cgi” CGI command.

For details about usage of CGI parameters and settings in administrator menu GUI mentioned above, refer to relevant documents — “CGI Commands Technical Guide” (RCTG001) and “User’s Guide”.

Page 31: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

31

As the following example of captured packets shows, session descriptions in RTSP response to “DESCRIBE” request contains two SSM-specific descriptions — “c=” field with a multicast TTL value, “a=source-filter:incl” field with a multicast address for SSM and a source address for SSM.

DESCRIBE rtsp://<camera_address>/ssm/video1 RTSP/1.0\r\n CSeq: 2\r\n User-Agent: <UserAgent>\r\n \r\n

RTSP/1.0 200 OK\r\n Server: <ServerName>\r\n CSeq: 2\r\n Content-Length: <Length>\r\n Content-Type: application/sdp\r\n Content-Base: rtsp://<camera_address>/ssm/video1/\r\n \r\n v=0\r\n o=- <SessionIdForOrigin> 1 IN IP4 <camera_address>\r\n s=<SessionName>\r\n t=0 0\r\n a=range:npt=now-\r\n c=IN IP4 <ConnectionAddress> /<MulticastTimeToLive>\r\n a=source-filter:incl IN IP4 <ConnectionAddress> <camera_address>\r\n

m=video 0 RTP/AVP 105\r\n a=rtpmap:105 H264/90000\r\n a=control:trackID=1\r\n a=framerate:60.0\r\n a=fmtp:105 packetization-mode=1; profile-level-id=2742e0; sprop-parameter-sets=Z0LgH41oBQBbsBbIAAAfSAADqYNaAD0IAQBXvdQ8UIqA,KM4ESSAAAA==\r\n

Page 32: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

32

8. RTSP/RTP over HTTP

The cameras support “RTSP/RTP over HTTP” tunneling protocol.

Request URL Description

http://<camera_address>/media/video1 Requests video bit stream #1 from codec corresponding to CGI parameter “ImageCodec1” and its related ones.

http://<camera_address>/media/video2 Requests video bit stream #2 from codec corresponding to CGI parameter “ImageCodec2” and its related ones.

http://<camera_address>/media/video3 Requests video bit stream #3 from codec corresponding to CGI parameter “ImageCodec3” and its related ones.

http://<camera_address>/media/audio Requests audio bit stream from codec corresponding to CGI parameter “AudInCodec” and its related ones.

Note: Total number of codecs in the camera may vary depending on capabilities of each model/series.

For details about this tunneling protocol, refer to relevant document(s) such as the “Tunneling QuickTime RTSP and RTP over HTTP” published by Apple Inc.

Page 33: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Informative Document | SRG RTSP Streaming with

RTP/RTCP

33

Revision History

Date Revision Description

2014/12/17 1.0.0 First edition.

2015/2/18 1.0.1 Correction of error (Page 4)

2015/3/10 1.0.2 Source-Specific Muticast support, RTSP/RTP over HTTP support

(Page 4, Page 30 to Page 32)

Page 34: RTSP Streaming with RTP/RTCP · 2015. 3. 10. · Sony Remote Camera Version 1.0.2 Informative Document | SRG RTSP Streaming with RTP/RTCP 3 1. Overview 1.1. About This Document This

Sony Remote Camera Version 1.0.2

Disclaimer This document, in whole or in part, may not be reproduced or transferred for any purpose

without prior written approval from Sony Corporation. Sony Corporation reserves the right to make any modification to this document or the

information contained herein at any time without notice. Sony Corporation shall not bear any responsibility or liability for any damage, lost earning, and

third party claim, resulting from the products and related documents.

Copyright This document contains registered trademarks and trademarks that are owned by their

respective companies.


Recommended