I use the chrome API and the default media player. Can I use some options to display media on a portrait screen?
Or this is in the browser window:
javascript:document.body.style.setProperty("-webkit-transform", "rotate(90deg)", null);
The receiver by default supports aspect ratio; if you have an image whose height is greater than its width, it will be shown as such. Are you experiencing something else?
you can do something like this:
body.portrait { -webkit-transform: rotate(90deg); }
and then add the portrait class to <body> via javascript with a cast message
portrait
<body>