Skip to content

Commit

Permalink
Merge pull request #25 from apivideo/fix-audio-delay
Browse files Browse the repository at this point in the history
Fix audio delay
  • Loading branch information
olivierapivideo authored Oct 15, 2024
2 parents 3a3a929 + 99b31cf commit 4ba8b08
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [0.2.6] - 2024-10-15
- Fix audio delay issue

## [0.2.5] - 2024-09-24
- Fix parallel calls to uploadLastPart

Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@api.video/media-stream-composer",
"version": "0.2.5",
"version": "0.2.6",
"description": "api.video media stream composer",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ export class MediaStreamComposer {
public startRecording(options: RecordingOptions) {
if(!this.started) this.init();

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

this.recorder = new ApiVideoMediaRecorder(this.result!, {
...options,
Expand Down

0 comments on commit 4ba8b08

Please sign in to comment.