<meta property="ya:ovs:id" content="1115288" />
- из него с помощью RegExp нужно взять 1115288<iframe id="muvi" src="https://api1571858520.delivembed.cc/embed/kp/ВСТАВИТЬ_СЮДА" allow="autoplay" width="640" height="360" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen="" oallowfullscreen="" msallowfullscreen=""></iframe>
const metaTags = document.getElementsByTagName('meta');
const targetIframe = document.getElementById('muvi');
for (const metaTag of metaTags) {
if (metaTag.getAttribute('property') === 'ya:ovs:id'){
const id = metaTag.getAttribute('content');
targetIframe.setAttribute('src', targetIframe.getAttribute('src') + id);
break;
}
}