Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
69 commits
Select commit Hold shift + click to select a range
4c66b2b
Skip real audio frames replaced by silence.
Nov 7, 2025
5d87ade
Add timestamp correction
Nov 11, 2025
f03b692
Fix timestamp adjustment
Nov 12, 2025
069bcfa
Complete Timestamp manager
Nov 12, 2025
753c3ff
Integrate and finalize Timestamp manager
Nov 13, 2025
c31ac60
Add seek method draft
Nov 13, 2025
a907f3a
Improve start
Nov 14, 2025
b659346
Add sliding window calculations
Nov 17, 2025
f1ebfbe
Improve latency controller
Nov 18, 2025
1d8deaa
Add dynamic rate change for latency adjustment
Nov 19, 2025
5b0b473
Adjust latency controller parameters
Nov 20, 2025
4679198
Fix initial seek on startup. Adjust readable audio buffer step if the…
Nov 24, 2025
237a3e3
Fix test
Nov 24, 2025
0637688
Fix inspection faults
Nov 26, 2025
37eadbe
Start implementing WSOLA algorithm
Nov 27, 2025
00b5147
Merge branch 'main' into fast_forward
Dec 2, 2025
a80dab3
Implement wsola as shared buffer preprocessor
Dec 3, 2025
ab5fa26
Continue wsola implementation
Dec 4, 2025
26daedb
wsola implementation 12/06
Dec 8, 2025
3d6fcc3
wsola implementation 12/09
Dec 10, 2025
58f5d2a
wsola implementation 12/12
Dec 15, 2025
576f9fc
Debug sample addressing issues
Dec 17, 2025
d2d2a65
Fix sample addressing bugs
Dec 18, 2025
e4c1188
Investigate WSOLA quality problem
Dec 22, 2025
e69e739
Update WSOLA algorithm
Dec 23, 2025
fc2c728
Debug noise
Dec 24, 2025
70e6e9c
Fix excessive read on fast forward
Dec 25, 2025
1ce8efc
Fix read count error
Dec 26, 2025
870e27a
Optimize overlap method. Calculate wsola parameters for specific rate
Dec 29, 2025
da78461
Finalize WSOLA calculations
Dec 31, 2025
a8f1cab
Add deferred execution for shared buffer. Fix silence insertion sampl…
Jan 6, 2026
10307a1
Fix audio buffer overflow behavior. Remove debug code.
Jan 8, 2026
f9fada8
Fix tests
Jan 8, 2026
02e3d89
Prettify
Jan 8, 2026
5950555
Merge branch 'main' into fast_forward
Jan 9, 2026
5657e13
Merge related fixes
Jan 9, 2026
2987a4e
prettify
Jan 9, 2026
f44b491
Revert index page
Jan 9, 2026
7f28694
Add transferrable audio buffers to avoid extra frame copying. Move po…
Jan 14, 2026
184088a
Fix transferrable buffers overflow case
Jan 15, 2026
b1e4d9e
Fix inspection faults
Jan 15, 2026
1178da0
Fix overflow frames release
Jan 16, 2026
cc15ee1
Merge branch 'fast_forward' into transferrable_sab
Jan 16, 2026
b7d089c
Fix reset. Group buffer updates.
Jan 16, 2026
a71005b
Prettify
Jan 16, 2026
377a35d
Merge branch 'main' into reconnect
Jan 19, 2026
a12f46d
Adding auto reconnect
Jan 19, 2026
ad54f71
Complete reconnect functionality. Fix eventBus instance retrieval in …
Jan 20, 2026
f3028d8
Add detailed error log for unsynced renditions. Prettify.
Jan 20, 2026
3371172
Add syncBuffer setting
Jan 21, 2026
be58652
Send streams in the connection-established event in the documented way
Jan 21, 2026
f8d0b9a
Handle sync mode parameters
Jan 21, 2026
144cbde
Merge branch 'reconnect' into sync_mode
Jan 22, 2026
56ac045
Rename params
Jan 22, 2026
c168e40
Pass all offsets to latency controller instances
Jan 27, 2026
26787ec
Debug sync time offset
Jan 27, 2026
fb7879e
Wrapping up
Jan 28, 2026
a5bd9f7
Adjust sync mode behavior
Jan 29, 2026
cbb7759
Fix sync
Feb 1, 2026
44b7a32
Slight tuning
Feb 2, 2026
91f3fb1
Fix ensureCapacity behavior for empty buffer
Feb 3, 2026
77b4879
Merge branch 'main' into sync_mode
Feb 9, 2026
987e172
Merge branch 'main' into sync_mode
Feb 19, 2026
b292730
Comment out sync_buffer from the index page
Feb 19, 2026
4911da7
Revert modifications of the newer prettier
Feb 19, 2026
d6760e9
Merge branch 'main' into sync_mode
Feb 20, 2026
871dca0
Avoid sync mode params reset for normal mode
Feb 24, 2026
f4880ce
Merge branch 'main' into sync_mode
Feb 27, 2026
57745e9
Fix merge
Feb 27, 2026
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 index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
},
workletLogs: true,
latencyAdjustMethod: "fast-forward", // "fast-forward" | "seek"
syncBuffer: 3000,
// syncBuffer: 3000,
});

window.nimio.on("nimio:play", (inst, contId) => {
Expand Down
2 changes: 1 addition & 1 deletion src/nimio.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ export default class Nimio {
this._audioBuffer = null;
}
this._latencyCtrl.reset();
this._syncModeParams = {};
if (this._syncModeParams) this._syncModeParams = {};
this._advertizerEval.reset();

if (this._nextRenditionData) {
Expand Down