diff --git a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx
index d84a90fa62..e4814462f7 100644
--- a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx
+++ b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx
@@ -146,6 +146,8 @@ export function Scrubber({
const progress = scrubberActive ? seekPosition : currentTime
const progressPercent = (progress / duration) * 100
+ if (duration < 3) return null
+
return (
-
- {formatTime(currentTime)} / {formatTime(duration)}
-
+ {Math.round(duration) > 0 && (
+
+ {formatTime(currentTime)} / {formatTime(duration)}
+
+ )}
{hasSubtitleTrack && (