Skip to content

Commit

Permalink
verup
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyoshiaki committed Sep 12, 2024
1 parent 5efc9ad commit 26a26b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/webrtc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift",
"version": "0.19.8",
"version": "0.19.9",
"description": "WebRTC Implementation for TypeScript (Node.js)",
"keywords": [
"WebRTC",
Expand Down
4 changes: 2 additions & 2 deletions packages/webrtc/src/nonstandard/navigator.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { randomBytes } from "crypto";
import { jspack } from "@shinyoshiaki/jspack";
import { MediaStream, MediaStreamTrack } from "../media/track";
import { createSocket } from "dgram";
import { jspack } from "@shinyoshiaki/jspack";
import { RTCRtpCodecParameters } from "..";
import { MediaStream, MediaStreamTrack } from "../media/track";

export class Navigator {
mediaDevices: MediaDevices;
Expand Down
2 changes: 1 addition & 1 deletion packages/webrtc/src/nonstandard/recorder/writer/webm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class WebmFactory extends MediaWriter {
});
const lipsync = new LipsyncCallback();

if (inputTracks.length === 1) {
if (inputTracks.length === 1 || this.props.disableNtp) {
this.props.disableLipSync = true;
}

Expand Down

0 comments on commit 26a26b0

Please sign in to comment.