1) Вы можете добавить класс .form-group (который даст маржинальное основание 1rem) к вашему div с классом col-xs-12, например:
<div class="row">
<div class="col-xs-12 col-md-4 col-md-offset-2 form-group">
<div class="embed-responsive embed-responsive-4by3">
<iframe width="560" height="315" src="https://www.youtube.com/embed/qLCLvzTGFVM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 col-md-4 form-group">
<div class="embed-responsive embed-responsive-4by3">
<iframe width="560" height="315" src="https://www.youtube.com/embed/lR_aZWdxNV8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
2) Или вы можете добавьте служебный класс bootstrap spacing подобно классу .mb-2 (который добавляет нижнее поле) к вашему div с классом col-xs-12 следующим образом:
<div class="row">
<div class="col-xs-12 col-md-4 col-md-offset-2 mb-2">
<div class="embed-responsive embed-responsive-4by3">
<iframe width="560" height="315" src="https://www.youtube.com/embed/qLCLvzTGFVM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 col-md-4 mb-2">
<div class="embed-responsive embed-responsive-4by3">
<iframe width="560" height="315" src="https://www.youtube.com/embed/lR_aZWdxNV8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>