Youtube embed converts a youtube watch url into a youtube embed url
//var url = "https://www.youtube.com/embed/SG-nqVOw_BY";
var url = "https://www.youtube.com/watch?v=SG-nqVOw_BY";
if (url.indexOf("watch") >= 0) {
url = url.split('?v=')
url = 'https://www.youtube.com/embed/' + url[1]
}
$('#output').html(url)
<p id = "output"></p>