Можно сделать на :before и :after
Значения подравнять под ваши отступы и размеры. На глаз писал.
<div class="mapWrap">
<video>
</div>
.mapWrap{
position: relative;
}
.mapWrap:before
{
content: "";
display: block;
width: 100px;
height: 100px;
background: url(round1.png) center center no-repeat;
position: absolute;
left: -100px;
top: 50%;
z-index: 1;
}
.mapWrap:after
{
content: "";
display: block;
width: 200px;
height: 200px;
background: url(round2.png) center center no-repeat;
position: absolute;
right: -100px;
bottom: -100px;
z-index: 1;
}
.mapWrap video
{
z-index: 2;
position: relative;
}