Slipstream Live by Tail4126
Detects stream latency on YouTube, Twitch, and TwitCasting, and adjusts playback speed to catch up to the live edge in real time.
Available on Firefox for Android™Available on Firefox for Android™
6 Users6 Users
Scan the QR code to open this extension in Firefox for Android
Extension Metadata
Screenshots
About this extension
There's always a delay of a few seconds between the moment a streamer speaks and the moment you see it. That delay grows every time the connection hiccups, and it never shrinks back on its own.
You can catch up by manually switching to 1.25x speed, but then you're stuck watching your own buffer level and have to slow back down before it runs dry. Forget, and the video freezes on that spinning buffering icon.
Slipstream Live takes over that watch duty for you, checking about 50 times a second. Works with YouTube Live, Twitch, and TwitCasting. Install it, and you're done — nothing else to do.
■ Never freezes, never overreacts. Built for stability
It speeds up only when there's real headroom in the buffer (1.25x by default), and eases down to as low as 0.15x — turning the volume down with it — right before the buffer runs out. Because the brakes always kick in a moment before the spinner would, you never get frozen out from overshooting.
Once you're caught up, it stops speeding up at all. Live video is only ever made in real time, so holding a higher rate past the live edge just makes playback outrun the arrival of each segment, stalling for a fraction of a second over and over — slower, in the end, than leaving it alone. So Slipstream Live weighs the seconds the speedup should have recovered against the seconds it actually recovered, and backs off the moment it can tell the speedup isn't working. As soon as real delay builds up again, it goes right back to catching up.
To stop the speed from flip-flopping right at the threshold, there's some built-in give (hysteresis) around the edges. The moment you change the speed yourself in the player, Slipstream Live hands control straight back to you (Twitch has no speed menu, so instead it quietly avoids fighting with Twitch's own catch-up feature). Volume ducking is temporary too — it never rewrites your actual volume setting. On top of a 20ms timer, it also checks state through the video's own events, so control keeps working even when the browser throttles timers on background tabs.
■ Under the hood, it gets pretty serious: predicting the buffer's "valleys" statistically
Video arrives in chunks (segments) a few seconds long, so the buffer level traces a sawtooth wave — up, then down, over and over. Catch a peak by chance and speed up, and the buffer can run dry at the very next valley and freeze.
So instead of trusting any single reading, Slipstream Live statistically estimates the valley itself, from a short-term average and standard deviation.
trough = average − √3 × standard deviation
Thanks to a property of the uniform distribution, this finds the valley without ever needing to know the stream's segment length. It also cleanly subtracts out any buffer drop caused by its own acceleration before running the stats, so it never falls into a feedback loop of "speed up → run dry → slow down → speed up again." During moments when the buffer level itself is shifting — right after a stream starts, or right after recovering from a stall — it treats things as "not settled yet" and pauses the valley estimate, so it never mixes in bad data.
room (safety margin) = average of the valleys − K × how much the valleys vary
Whenever there isn't enough data yet, this room automatically becomes "NaN," and the decision always defaults to false. In other words, "do nothing when unsure" is guaranteed by the logic itself, not just a promise. If you're curious, typing window.__slipstreamliveDebug = true into the page's console lets you watch internal values like room, drift, and calm live.
"Auto-adjust buffer threshold" has four settings: off / stable / standard / aggressive. On shaky connections it naturally stays conservative about speeding up; on stable streams it reliably gets you all the way to the live edge. The most cautious one, stable, also suits music streams, where every change of speed lands straight on your ears.
■ Tuned for every platform's quirks
YouTube, Twitch, and TwitCasting each have completely different player internals and different habits for how their buffers drain. Since Twitch's video feed can drop out for about 10 seconds at a time, its max-deceleration threshold is set more generously; TwitCasting's buffer runs shallow by nature, so it's set thinner; Firefox reports buffer levels differently under the hood, so it gets its own dedicated defaults — tuned platform by platform like that. Streams where this kind of control simply can't work — like TwitCasting's low-latency (WebRTC) streams — are automatically excluded. It never touches VODs, clips, or ads, either. YouTube premieres are left alone by default too: a premiere exists so everyone shares the same moment, so catching up there would only mean running ahead of the chat. It's there if you want it, off until you say otherwise.
On Twitch, the player sometimes dies outright with a numbered error like "Error #3000." Slipstream Live spots that and presses Twitch's own reload button for you (on by default). The page itself never reloads, so you keep your place and the chat keeps flowing — only the video comes back, in about a second. It waits a moment first, retries a few times at widening intervals, then stops, so it never keeps hammering at a stream that has simply ended.
■ Zero network activity while it runs
While you're watching, it never connects to an external server — not once. No analytics, no telemetry, no identifiers, no ads. It needs just two permissions: "storage," to keep your settings on your device, and "activeTab," to tell whether the tab you're on is a supported site when you open the popup. Site access stays limited to the three platforms it supports (YouTube, Twitch, TwitCasting), and settings aren't synced anywhere; they're stored locally on your device only. The one exception is uninstalling, when your browser opens an optional feedback form. All the extension does is register a fixed URL in advance — no identifier, no settings, nothing about what you were watching is ever attached.
It also comes with an optional on-screen badge (off by default) showing playback speed, delay in seconds, and buffer level, a settings UI available in 9 languages, a "?" help tooltip on every setting, and a reset button for each section.
Keep chasing the stream's "now" — without having to keep watch yourself. Give Slipstream Live a try.
You can catch up by manually switching to 1.25x speed, but then you're stuck watching your own buffer level and have to slow back down before it runs dry. Forget, and the video freezes on that spinning buffering icon.
Slipstream Live takes over that watch duty for you, checking about 50 times a second. Works with YouTube Live, Twitch, and TwitCasting. Install it, and you're done — nothing else to do.
■ Never freezes, never overreacts. Built for stability
It speeds up only when there's real headroom in the buffer (1.25x by default), and eases down to as low as 0.15x — turning the volume down with it — right before the buffer runs out. Because the brakes always kick in a moment before the spinner would, you never get frozen out from overshooting.
Once you're caught up, it stops speeding up at all. Live video is only ever made in real time, so holding a higher rate past the live edge just makes playback outrun the arrival of each segment, stalling for a fraction of a second over and over — slower, in the end, than leaving it alone. So Slipstream Live weighs the seconds the speedup should have recovered against the seconds it actually recovered, and backs off the moment it can tell the speedup isn't working. As soon as real delay builds up again, it goes right back to catching up.
To stop the speed from flip-flopping right at the threshold, there's some built-in give (hysteresis) around the edges. The moment you change the speed yourself in the player, Slipstream Live hands control straight back to you (Twitch has no speed menu, so instead it quietly avoids fighting with Twitch's own catch-up feature). Volume ducking is temporary too — it never rewrites your actual volume setting. On top of a 20ms timer, it also checks state through the video's own events, so control keeps working even when the browser throttles timers on background tabs.
■ Under the hood, it gets pretty serious: predicting the buffer's "valleys" statistically
Video arrives in chunks (segments) a few seconds long, so the buffer level traces a sawtooth wave — up, then down, over and over. Catch a peak by chance and speed up, and the buffer can run dry at the very next valley and freeze.
So instead of trusting any single reading, Slipstream Live statistically estimates the valley itself, from a short-term average and standard deviation.
trough = average − √3 × standard deviation
Thanks to a property of the uniform distribution, this finds the valley without ever needing to know the stream's segment length. It also cleanly subtracts out any buffer drop caused by its own acceleration before running the stats, so it never falls into a feedback loop of "speed up → run dry → slow down → speed up again." During moments when the buffer level itself is shifting — right after a stream starts, or right after recovering from a stall — it treats things as "not settled yet" and pauses the valley estimate, so it never mixes in bad data.
room (safety margin) = average of the valleys − K × how much the valleys vary
Whenever there isn't enough data yet, this room automatically becomes "NaN," and the decision always defaults to false. In other words, "do nothing when unsure" is guaranteed by the logic itself, not just a promise. If you're curious, typing window.__slipstreamliveDebug = true into the page's console lets you watch internal values like room, drift, and calm live.
"Auto-adjust buffer threshold" has four settings: off / stable / standard / aggressive. On shaky connections it naturally stays conservative about speeding up; on stable streams it reliably gets you all the way to the live edge. The most cautious one, stable, also suits music streams, where every change of speed lands straight on your ears.
■ Tuned for every platform's quirks
YouTube, Twitch, and TwitCasting each have completely different player internals and different habits for how their buffers drain. Since Twitch's video feed can drop out for about 10 seconds at a time, its max-deceleration threshold is set more generously; TwitCasting's buffer runs shallow by nature, so it's set thinner; Firefox reports buffer levels differently under the hood, so it gets its own dedicated defaults — tuned platform by platform like that. Streams where this kind of control simply can't work — like TwitCasting's low-latency (WebRTC) streams — are automatically excluded. It never touches VODs, clips, or ads, either. YouTube premieres are left alone by default too: a premiere exists so everyone shares the same moment, so catching up there would only mean running ahead of the chat. It's there if you want it, off until you say otherwise.
On Twitch, the player sometimes dies outright with a numbered error like "Error #3000." Slipstream Live spots that and presses Twitch's own reload button for you (on by default). The page itself never reloads, so you keep your place and the chat keeps flowing — only the video comes back, in about a second. It waits a moment first, retries a few times at widening intervals, then stops, so it never keeps hammering at a stream that has simply ended.
■ Zero network activity while it runs
While you're watching, it never connects to an external server — not once. No analytics, no telemetry, no identifiers, no ads. It needs just two permissions: "storage," to keep your settings on your device, and "activeTab," to tell whether the tab you're on is a supported site when you open the popup. Site access stays limited to the three platforms it supports (YouTube, Twitch, TwitCasting), and settings aren't synced anywhere; they're stored locally on your device only. The one exception is uninstalling, when your browser opens an optional feedback form. All the extension does is register a fixed URL in advance — no identifier, no settings, nothing about what you were watching is ever attached.
It also comes with an optional on-screen badge (off by default) showing playback speed, delay in seconds, and buffer level, a settings UI available in 9 languages, a "?" help tooltip on every setting, and a reset button for each section.
Keep chasing the stream's "now" — without having to keep watch yourself. Give Slipstream Live a try.
Rated 0 by 0 reviewers
Permissions and data
Required permissions:
- Access your data for sites in the twitcasting.tv domain
- Access your data for www.youtube.com
- Access your data for m.youtube.com
- Access your data for www.youtube-nocookie.com
- Access your data for www.twitch.tv
- Access your data for player.twitch.tv
- Access your data for clips.twitch.tv
- Access your data for twitcasting.tv
Data collection:
- The developer says this extension doesn't require data collection.
More information
- Add-on Links
- Version
- 1.3.0
- Size
- 206.1 KB
- Last updated
- 13 days ago (Sep 3, 2026)
- Related Categories
- License
- Custom License
- Privacy Policy
- Read the privacy policy for this add-on
- Version History
- Add to collection