Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Extras/FrontendTests/package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.6": "*",
"dotenv": "^16.4.5",
"node-fetch": "^2.7.0",
"uuid": "^9.0.0"
"uuid": "^14.0.0"
}
}
2 changes: 1 addition & 1 deletion Extras/MinimalStreamTester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"dependencies": {
"dotenv": "^16.4.5",
"node-fetch": "^2.7.0",
"uuid": "^9.0.0"
"uuid": "^14.0.0"
}
}
16 changes: 7 additions & 9 deletions Extras/mediasoup-sdp-bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,20 @@
"h264-profile-level-id": "^1.0.1",
"lodash": "^4.17.23",
"sdp-transform": "^2.14.0",
"supports-color": "^7.1.0",
"uuid": "^8.1.0"
"supports-color": "^7.1.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.0",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.0.0",
"@types/node": "^22.14.0",
"@types/sdp-transform": "^2.4.3",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jest": "^23.13.2",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.2.0",
"jest": "^29.7.0",
"jest-tobetype": "^1.2.3",
"mediasoup": "3.15.5",
Expand Down
4 changes: 2 additions & 2 deletions Extras/mediasoup-sdp-bridge/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import {
WebRtcTransport,
} from "mediasoup/node/lib/types";

import { randomUUID } from "node:crypto";
import * as SdpTransform from "sdp-transform";
import { v4 as uuidv4 } from "uuid";

import * as BrowserRtpCapabilities from "./BrowserRtpCapabilities";
import * as SdpUtils from "./SdpUtils";
Expand Down Expand Up @@ -254,7 +254,7 @@ export class SdpEndpoint {
});

// Make an MSID to be used for both "audio" and "video" kinds.
const sendMsid = uuidv4().substr(0, 8);
const sendMsid = randomUUID().slice(0, 8);

console.log("[SdpEndpoint.createOffer] Make 'sendonly' SDP Offer");

Expand Down
Loading
Loading