Compare commits

...

2 Commits

Author SHA1 Message Date
9e7466f967 Disable dark video detector 2024-10-04 21:41:48 -07:00
095cf1d4ea Animate the video watermark 2024-10-04 21:39:19 -07:00
2 changed files with 12 additions and 1 deletions

View File

@ -229,7 +229,8 @@ export default {
wasTooDark: false, // previous average was too dark wasTooDark: false, // previous average was too dark
// Configuration thresholds: how dark is too dark? (0-255) // Configuration thresholds: how dark is too dark? (0-255)
threshold: 10, // NOTE: 0=disable the feature.
threshold: 0, // 10,
}, },
}, },

View File

@ -206,6 +206,9 @@ video {
width: 40%; width: 40%;
height: 40%; height: 40%;
opacity: 0.02; opacity: 0.02;
animation-name: subtle-pulsate;
animation-duration: 10s;
animation-iteration-count: infinite;
} }
.corner-watermark { .corner-watermark {
position: absolute; position: absolute;
@ -219,4 +222,11 @@ video {
.invert-color { .invert-color {
filter: invert(100%); filter: invert(100%);
} }
/* Animate the primary watermark to pulsate in opacity */
@keyframes subtle-pulsate {
0% { opacity: 0.02; }
50% { opacity: 0.04; }
100% { opacity: 0.02; }
}
</style> </style>