diff --git a/src/Video.web.tsx b/src/Video.web.tsx index 0d735946..7bcfcb7b 100644 --- a/src/Video.web.tsx +++ b/src/Video.web.tsx @@ -515,7 +515,9 @@ const Video = forwardRef( const videoStyle = { position: 'absolute', inset: 0, - objectFit: 'contain', + // Use 'fill' instead of 'contain' to force video to match container dimensions. + // This works around browsers miscalculating intrinsic dimensions from rotation matrices. + objectFit: 'fill', width: '100%', height: '100%', } satisfies React.CSSProperties;