(function() {
let players = document.querySelectorAll(
'.sp-embed-player[data-id="c06IFlV5RZd"],' +
'.som-embed-player[data-id="c06IFlV5RZd"], ' +
'.sp-embed-player:not([data-id]), ' +
'.som-embed-player:not([data-id]), ' +
'#som-player'
);
for (let item of players) {
playerWidth = item.clientWidth
playerHeight = playerWidth / 1.89111747851
item.style.height = playerHeight + 'px';
}
}());