Gathering detailed insights and metrics for sdp-jingle-json
Gathering detailed insights and metrics for sdp-jingle-json
Gathering detailed insights and metrics for sdp-jingle-json
Gathering detailed insights and metrics for sdp-jingle-json
npm install sdp-jingle-json
81.3
Supply Chain
99.6
Quality
79.7
Maintenance
100
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
41 Stars
107 Commits
16 Forks
10 Watching
2 Branches
11 Contributors
Updated on 07 Jun 2024
JavaScript (97.16%)
HTML (2.84%)
Cumulative downloads
Total Downloads
Last day
-13.1%
470
Compared to previous day
Last week
6.6%
3,334
Compared to previous week
Last month
-3%
14,663
Compared to previous month
Last year
-11.4%
177,267
Compared to previous year
Convert SDP blobs to and from JSON
Ever taken a peek at the data blobs that get sent back and forth in WebRTC signalling? Yeah, that mess of line-oriented data is SDP. But sometimes you want to have that data available in JSON, like if you want to use XMPP Jingle for signalling.
This library will convert raw SDP into JSON that mirrors the structure of XMPP Jingle content, making it simple to convert the SDP data into an XMPP stanza with any of the various JS XMPP libraries, such as stanza.io, or xmpp-ftw.
And since you're working with WebRTC, be sure to check out simplewebrtc.
npm install sdp-jingle-json
1$ grunt
The bundled and minified files will be in the generated build
directory.
var sjj = require('sdp-jingle-json');
// I have SDP, but want JSON:
var json = sjj.toSessionJSON(sdpBlob, {
creators: ['initiator', 'initiator'], // Who created the media contents
role: 'initiator', // Which side of the offer/answer are we acting as
direction: 'outgoing' // Are we parsing SDP that we are sending or receiving?
});
// I have JSON (a dictionary of session and content descriptions), but want SDP:
var sdp = sjj.toSessionSDP(jsonSession, {
role: 'responder',
direction: 'incoming'
});
You can also use toMediaSDP
and toMediaJSON
to convert only a single media section.
Open the convert.html
file and enter in SDP or JSON to see how it converts back and forth.
The format for the generated JSON content is:
{
"action": "",
"initiator": "",
"responder": "",
"sid": "",
// ---- Content payload
"groups": [
{
"semantics": "",
"contents": [],
} //...
],
"contents": [
{
"name": "",
"creator": "",
"senders": "",
"application": {
// ---- RTP description
"applicationType": "rtp",
"media": "",
"ssrc": "",
"sourceGroups": [
{
"semantics": "",
"sources": [
"" //...
]
} //...
],
"sources": [
{
"ssrc": "",
"parameters: [
{
"key": "",
"value": ""
} //...
]
} //...
],
"bandwidth": "",
"bandwidthType": "",
"headerExtensions": [
{
"id": "",
"uri": "",
"senders": ""
} //...
],
"payloads": [
{
"id": "",
"channels": "",
"clockrate": "",
"maxptime": "",
"ptime": "",
"name": "",
"parameters": [
{
"key": "",
"value": ""
} //...
],
"feedback": [
{
"type": "",
"subtype": "",
"value": ""
} //...
]
}
],
"encryption": [
{
"cipherSuite": "",
"keyParams": "",
"sessionParams": "",
"tag": ""
} //...
]
},
"transport": {
// ---- ICE UDP transport
"transportType": "iceUdp",
"ufrag": "",
"pwd": "",
"setup": "",
"candidates": [
{
"component": "",
"foundation": "",
"generation": "",
"id": "",
"ip": "",
"network": "",
"port": "",
"priority": "",
"protocol": "",
"relAddr": "",
"relPort": "",
"type": ""
} //...
],
"fingerprints": [
{
"hash": "",
"value": ""
} // ...
]
}
} //...
]
}
MIT
If you like this, follow @lancestout or @HCornflower on twitter.
SDP-Jingle-JSON is derived, in collaboration, from the work done by Philipp Hancke for strophe.jingle.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 8/24 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More