forked from iizukanao/node-rtsp-rtmp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdp.coffee
307 lines (292 loc) · 11.2 KB
/
sdp.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# SDP spec:
# RFC 4566 https://tools.ietf.org/html/rfc4566
aac = require './aac'
logger = require './logger'
api =
# opts:
# username (string): Username or '-'
# sessionID (string): Session ID (numeric string)
# sessionVersion (string): Session version number
# addressType (string): 'IP4' or 'IP6'
# unicastAddress (string): Address of the machine from which the session
# was created. A local IP address MUST NOT be
# used in any context where the SDP description
# might leave the scope in which the address is
# meaningful.
# hasAudio (boolean): true if the stream contains audio
# audioPayloadType (number): payload type for audio
# audioEncodingName (string): encoding name for audio
# audioClockRate (number): clock rate for audio
# audioChannels (number): number of audio channels
# audioSampleRate (number): audio sample rate
# audioObjectType (number): audio object type
# hasVideo (boolean): true if the stream contains video
# videoPayloadType (number): payload type for video
# videoEncodingName (string): encoding name for video
# videoClockRate (number): clock rate for video
# videoProfileLevelId (string): profile-level-id for video
# videoSpropParameterSets (string): sprop-parameter-sets for video
# videoHeight (number): video frame height
# videoWidth (number): video frame width
# videoFrameRate (string): video frame rate. Either <integer> or
# <integer>.<fraction> is allowed.
# durationSeconds (number): duration of the stream in seconds
createSDP: (opts) ->
mandatoryOpts = [
'username'
'sessionID'
'sessionVersion'
'addressType'
'unicastAddress'
]
if opts.hasAudio
mandatoryOpts = mandatoryOpts.concat [
'audioPayloadType'
'audioEncodingName'
'audioClockRate'
]
if opts.hasVideo
mandatoryOpts = mandatoryOpts.concat [
'videoPayloadType'
'videoEncodingName'
'videoClockRate'
]
for prop in mandatoryOpts
if not opts?[prop]?
throw new Error "createSDP: property #{prop} is required"
# SDP parameters are defined in RFC 4566.
# sizeLength, indexLength, indexDeltaLength are defined by
# RFC 3640 or RFC 5691.
#
# packetization-mode: (see Section 5.4 of RFC 6184 for details)
# 0: Single NAL Unit Mode
# 1: Non-Interleaved Mode (for STAP-A, FU-A)
# 2: Interleaved Mode (for STAP-B, MTAP16, MTAP24, FU-A, FU-B)
#
# rtpmap:96 mpeg4-generic/<audio clock rate>/<audio channels>
#
# TODO: Use appropriate profile-level-id
sdpBody = """
v=0
o=#{opts.username} #{opts.sessionID} #{opts.sessionVersion} IN #{opts.addressType} #{opts.unicastAddress}
s=
c=IN #{opts.addressType} #{opts.unicastAddress}
t=0 0
a=sdplang:en
a=range:npt=0.0-#{opts.durationSeconds ? ''}
a=control:*
"""
if opts.hasAudio
# configspec: for MPEG-4 Audio streams, use hexstring of AudioSpecificConfig()
# see 1.6.2.1 of ISO/IEC 14496-3 for the details of AudioSpecificConfig
if opts.audioSpecificConfig?
configspec = opts.audioSpecificConfig.toString 'hex'
else if opts.audioObjectType? and opts.audioSampleRate? and opts.audioChannels?
configspec = new Buffer aac.createAudioSpecificConfig
audioObjectType: opts.audioObjectType
samplingFrequency: opts.audioSampleRate
channels: opts.audioChannels
frameLength: 1024 # TODO: How to detect 960?
configspec = configspec.toString 'hex'
else
logger.warn "[sdp] warn: audio configspec is not available"
configspec = null
rtpmap = "#{opts.audioPayloadType} #{opts.audioEncodingName}/#{opts.audioClockRate}"
if opts.audioChannels?
rtpmap += "/#{opts.audioChannels}"
profileLevelId = 1 # TODO: Set this value according to audio config
fmtp = "#{opts.audioPayloadType} profile-level-id=#{profileLevelId};mode=AAC-hbr;sizeLength=13;indexLength=3;indexDeltaLength=3"
if configspec?
fmtp += ";config=#{configspec}"
# profile-level-id=1: Main Profile Level 1
sdpBody += """
m=audio 0 RTP/AVP #{opts.audioPayloadType}
a=rtpmap:#{rtpmap}
a=fmtp:#{fmtp}
a=control:trackID=1
"""
if opts.hasVideo
fmtp = "#{opts.videoPayloadType} packetization-mode=1"
if opts.videoProfileLevelId?
fmtp += ";profile-level-id=#{opts.videoProfileLevelId}"
if opts.videoSpropParameterSets?
fmtp += ";sprop-parameter-sets=#{opts.videoSpropParameterSets}"
sdpBody += """
m=video 0 RTP/AVP #{opts.videoPayloadType}
a=rtpmap:#{opts.videoPayloadType} #{opts.videoEncodingName}/#{opts.videoClockRate}
a=fmtp:#{fmtp}
"""
if opts.videoHeight? and opts.videoWidth?
sdpBody += """
a=cliprect:0,0,#{opts.videoHeight},#{opts.videoWidth}
a=framesize:#{opts.videoPayloadType} #{opts.videoWidth}-#{opts.videoHeight}
"""
if opts.videoFrameRate?
sdpBody += "a=framerate:#{opts.videoFrameRate}\n"
sdpBody += """
a=control:trackID=2
"""
return sdpBody.replace /\n/g, "\r\n"
# Turn an SDP string like this...
#
# v=0
# o=- 0 0 IN IP4 127.0.0.1
# s=No Name
# c=IN IP4 127.0.0.1
# t=0 0
# a=tool:libavformat 56.15.102
# m=video 0 RTP/AVP 96
# b=AS:501
# a=rtpmap:96 H264/90000
# a=fmtp:96 packetization-mode=1; sprop-parameter-sets=Z0IAFbtA8F/y4CA8IBCo,aM4HDs
# g=; profile-level-id=420015
# a=control:streamid=0
# m=audio 0 RTP/AVP 97
# b=AS:125
# a=rtpmap:97 MPEG4-GENERIC/44100/2
# a=fmtp:97 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdelta
# length=3; config=1210
# a=control:streamid=1
#
# ...into an object like this.
#
# { version: '0',
# origin:
# { username: '-',
# sessId: '0',
# sessVersion: '0',
# nettype: 'IN',
# addrtype: 'IP4',
# unicastAddress: '127.0.0.1' },
# sessionName: 'No Name',
# connectionData:
# { nettype: 'IN',
# addrtype: 'IP4',
# connectionAddress: '127.0.0.1' },
# timing: { startTime: '0', stopTime: '0' },
# attributes: { tool: 'libavformat 56.15.102' },
# media:
# [ { media: 'video',
# port: '0',
# proto: 'RTP/AVP',
# fmt: 96,
# bandwidth: { bwtype: 'AS', bandwidth: '501' },
# attributes:
# { rtpmap: '96 H264/90000',
# fmtp: '96 packetization-mode=1; sprop-parameter-sets=Z0IAFbtA8F/y4CA8IBCo,aM4HDsg=; profile-level-id=420015',
# control: 'streamid=0' },
# clockRate: 90000,
# fmtpParams:
# { 'packetization-mode': '1',
# 'sprop-parameter-sets': 'Z0IAFbtA8F/y4CA8IBCo,aM4HDsg=',
# 'profile-level-id': '420015' } },
# { media: 'audio',
# port: '0',
# proto: 'RTP/AVP',
# fmt: 97,
# bandwidth: { bwtype: 'AS', bandwidth: '125' },
# attributes:
# { rtpmap: '97 MPEG4-GENERIC/44100/2',
# fmtp: '97 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3; config=1210',
# control: 'streamid=1' },
# clockRate: 44100,
# audioChannels: 2,
# fmtpParams:
# { 'profile-level-id': '1',
# mode: 'AAC-hbr',
# sizelength: '13',
# indexlength: '3',
# indexdeltalength: '3',
# config: '1210' } } ] }
parse: (str) ->
session = {}
origParams = []
currentMedia = null
for line in str.split /\r?\n/
if line isnt ''
if (match = /^(.*?)=(.*)$/.exec line)?
key = match[1]
value = match[2]
else
throw new Error "Invalid SDP line: #{line}"
obj = {}
obj[ key ] = value
origParams.push obj
switch key
when 'v' # Version
session.version = value
when 'o' # Origin
params = value.split /\s+/
if params.length > 6
logger.warn "SDP: Origin has too many parameters: #{line}"
session.origin =
username: params[0]
sessId: params[1]
sessVersion: params[2]
nettype: params[3]
addrtype: params[4]
unicastAddress: params[5]
when 's' # Session Name
session.sessionName = value
when 'c' # Connection Data
params = value.split /\s+/
if params.length > 3
logger.warn "SDP: Connection Data has too many parameters: #{line}"
session.connectionData =
nettype: params[0]
addrtype: params[1]
connectionAddress: params[2]
when 't' # Timing
params = value.split /\s+/
if params.length > 2
logger.warn "SDP: Timing has too many parameters: #{line}"
session.timing =
startTime: params[0]
stopTime: params[1]
when 'a' # Attributes
target = currentMedia ? session
if not target.attributes?
target.attributes = {}
if (match = /^(.*?):(.*)$/.exec value)? # a=<attribute>:<value>
attrKey = match[1]
attrValue = match[2]
target.attributes[attrKey] = attrValue
if attrKey is 'rtpmap'
if (match = /\d+\s+.*?\/(\d+)(?:\/(\d+))?/.exec attrValue)?
target.clockRate = parseInt match[1]
if match[2]?
target.audioChannels = parseInt match[2]
else if attrKey is 'fmtp'
if (match = /^\d+\s+(.*)$/.exec attrValue)?
target.fmtpParams = {}
for pair in match[1].split /;\s*/
if (match = /^(.*?)=(.*)$/.exec pair)?
target.fmtpParams[ match[1].toLowerCase() ] = match[2]
else # a=<flag>
target.attributes[ value ] = true
when 'm' # Media Descriptions
params = value.split /\s+/
currentMedia =
media: params[0]
port: params[1]
proto: params[2]
fmt: params[3]
if (currentMedia.proto is 'RTP/AVP') or (currentMedia.proto is 'RTP/SAVP')
currentMedia.fmt = parseInt currentMedia.fmt
if params.length >= 5
currentMedia.others = params[4]
if not session.media?
session.media = []
session.media.push currentMedia
when 'b' # Bandwidth
params = value.split ':'
if params.length > 2
logger.warn "SDP: Bandwidth has too many parameters: #{line}"
target = currentMedia ? session
target.bandwidth =
bwtype: params[0]
bandwidth: params[1]
else
logger.warn "Unknown (not implemented) SDP: #{line}"
return session
module.exports = api