feat: Add support for rotating camera streams (#2149)

* Closes #1307
This commit is contained in:
Dermot Duffy
2025-08-23 17:30:53 -07:00
committed by GitHub
parent 69ae80d6f1
commit 4d4b64232a
25 changed files with 1393 additions and 764 deletions
+22
View File
@@ -0,0 +1,22 @@
:host,
.outer {
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
}
.inner {
display: block;
// The container will be sized by the provider resize controller, but don't
// allow the outer container to shrink or contain the inner (as we need to
// calculate the true intrinsic size, otherwise on landscape videos the
// rotated size will be incorrectly calculated).
flex-shrink: 0;
}
:host([rotated]) .inner {
transform: rotate(var(--advanced-camera-card-media-rotation, 0deg));
}