Skip to content

Commit 99b31cf

Browse files
committed
Fix audio delay
1 parent 3a3a929 commit 99b31cf

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to this project will be documented in this file.
33

4+
## [0.2.6] - 2024-10-15
5+
- Fix audio delay issue
6+
47
## [0.2.5] - 2024-09-24
58
- Fix parallel calls to uploadLastPart
69

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@api.video/media-stream-composer",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"description": "api.video media stream composer",
55
"repository": {
66
"type": "git",

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ export class MediaStreamComposer {
173173
public startRecording(options: RecordingOptions) {
174174
if(!this.started) this.init();
175175

176-
this._updateAudioDelay(Math.min(5000, options.timeslice || DEFAULT_TIMESLICE));
177176

178177
this.recorder = new ApiVideoMediaRecorder(this.result!, {
179178
...options,

0 commit comments

Comments
 (0)