Using the below, Chrome is not respecting the media queries to display the correct video source based on the device width. Chrome is just playing the first source it finds as yo
Unfortunally, Chrome is not supporting media queries for video html 5 tag. A work around for this is to use plain Javascript or Jquery. It is no pretty, but works even in chrome.
var video = $('#myvideo');
var WindowWidth = $(window).width();
if (WindowWidth < 1200) {
//It is a small screen
video.append("