Função de proporção de aspecto Scss 16/9

@function aspect($width) {
@return $width * 9 / 16;
}

video
{
width
: 500px;
height
: aspect(500px);
}