function youtube_parser(url) {
    var match = url.match(yt_regex);
    return match && match[7].length === 11 ? match[7] : url;
}