* Use different cursor for dragging preview

* Improve filters UI and add audio labels

* Use switch and adjust colors

* Disable chromecast button and remove dimming

* Change marked reviewed text
This commit is contained in:
Nicolas Mowen
2024-03-06 13:49:51 -07:00
committed by GitHub
parent 55077a0bc9
commit fb81e44283
7 changed files with 293 additions and 196 deletions

View File

@@ -301,6 +301,7 @@ export default function DynamicVideoPlayer({
autoPlay
playsInline
muted
disableRemotePlayback
onSeeked={onPreviewSeeked}
onLoadedData={() => controller.previewReady()}
>
@@ -308,9 +309,6 @@ export default function DynamicVideoPlayer({
<source src={currentPreview.src} type={currentPreview.type} />
)}
</video>
{onClick && !hasRecordingAtTime && (
<div className="absolute inset-0 z-10 bg-black bg-opacity-60 rounded-2xl" />
)}
</div>
);
}