Fix motion review (#10329)

* Break preview only video player out

* Simplify

* Load after current preview changes

* Clear out waiting for seek state

* Start at correct time of hour

* Fix layout for tall video
This commit is contained in:
Nicolas Mowen
2024-03-08 10:56:00 -07:00
committed by GitHub
parent ea5cb4fd8b
commit 3d539c93eb
3 changed files with 230 additions and 30 deletions

View File

@@ -7,3 +7,8 @@ export type DynamicPlayback = {
preview: Preview | undefined;
timeRange: { end: number; start: number };
};
export type PreviewPlayback = {
preview: Preview | undefined;
timeRange: { end: number; start: number };
};