How can I set background video max height keeping the ratio?

If anyone is looking for an updated way to do this, you can add the aspect-ratio css property with custom code:

<style>
 .video, .video video {aspect-ratio: 16 / 9; width:auto !important;} 
</style>
1 Like