You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the event there were no changes in the UI, we skip taking a screenshot and reuse the last one. But we're still making video segments and sending them over the network.
The player expect these segments in order to play properly.
An improvement in recording and playback performance is to skip screenshots and making segments altogether. But extend the wire protocol to instruct the player how to continue the playback.
On Android, we know when there were no changes in the UI that triggered a re-render.
On iOS, we might be able to use swizzling on viewNeedsLayout and viewNeedsDisplay to set a flag if we need to take the screenshot.
This would affect native iOS/Android as well as any cross platform implementation on top such as React Native, Flutter.
The text was updated successfully, but these errors were encountered:
Indicate "live" replays. Since we're not sending a segment every 5s, it may look like the replay is finished/done
@jas-kas for thoughts? We should bring this to the team but I was always a fan of the idea of an indication in the UI even if "this session might still be happening". Like the wording having a sense of 'probably' as opposed to certainly. But having a way to tell the user that session is possibly not over yet.
Once we GA mobile replay:
In the event there were no changes in the UI, we skip taking a screenshot and reuse the last one. But we're still making video segments and sending them over the network.
The player expect these segments in order to play properly.
An improvement in recording and playback performance is to skip screenshots and making segments altogether. But extend the wire protocol to instruct the player how to continue the playback.
On Android, we know when there were no changes in the UI that triggered a re-render.
On iOS, we might be able to use swizzling on
viewNeedsLayout
andviewNeedsDisplay
to set a flag if we need to take the screenshot.This would affect native iOS/Android as well as any cross platform implementation on top such as React Native, Flutter.
The text was updated successfully, but these errors were encountered: