I built a new client splash-page using background video, and aside from responsive tweaks for iPhone and killing background video on iOS, it didn't occur to me to test on retina.
Today, as I view on the MBP Retina, it looks like the video is covering the "correct number of pixels" on the height, but just unsure how to force the video to cover "2x".
Have you heard of this spec?
Could it be as easy as setting the min-height/min-width of the video background to "200%" for retina?
Markup Used
<div id="bgVideo" class="background">
<video id="video_background" preload="auto" autoplay loop muted volume="0">
<source src="https://pravassawt.squarespace.com/s/pravassa-fall.mp4" type="video/mp4">
<source src="https://pravassawt.squarespace.com/s/pravassa-fall.webm" type="video/webm">
<source src="https://pravassawt.squarespace.com/s/pravassa-fall.ogv" type="video/ogg">
</video>
</div>
<span style="opacity: .9"<div class="video_pattern" ></div></span>
CSS Chunk
#video_background {
position: absolute;
bottom: 0px;
right: 0px;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -1000;
overflow: hidden;
}