Com o código abaixo você vai conseguir fazer o embed automatico de vídeos do Youtube apenas postando a URL(sem tags) no seu site ou sistema.
O código utilizado foi o desse link: http://stackoverflow.com/questions/5830387/how-to-find-all-youtube-video-ids-in-a-string-using-a-regex
Apenas precisou de uma mudança simples na string que é retornada no fim da função, confira abaixo como ficou.
function yTube($text) {
$text = preg_replace('~
# Match non-linked youtube URL in the wild. (Rev:20130823)
https?:// # Required scheme. Either http or https.
(?:[0-9A-Z-]+\.)? # Optional subdomain.
(?: # Group host alternatives.
youtu\.be/ # Either youtu.be,
| youtube # or youtube.com or
(?:-nocookie)? # youtube-nocookie.com
\.com # followed by
\S* # Allow anything up to VIDEO_ID,
[^\w\s-] # but char before ID is non-ID char.
) # End host alternatives.
([\w-]{11}) # $1: VIDEO_ID is exactly 11 chars.
(?=[^\w-]|$) # Assert next char is non-ID or EOS.
(?! # Assert URL is not pre-linked.
[?=&+%\w.-]* # Allow URL (query) remainder.
(?: # Group pre-linked alternatives.
[\'"][^<>]*> # Either inside a start tag,
| </a> # or inside <a> element text contents.
) # End recognized pre-linked alts.
) # End negative lookahead assertion.
[?=&+%\w.-]* # Consume any URL (query) remainder.
~ix',
//'<a href="http://www.youtube.com/watch?v=$1">YouTube link: $1</a>',
'<iframe width="780" height="500" src="http://www.youtube.com/embed/$1" frameborder="0" allowfullscreen></iframe>',
$text);
return $text;
}
Note que a mudança foi de um link <a href="..., para o iframe que faz o embed do vídeo deixei até comentado o código anterior.
Agora para usar basta utilizar a função na string que você quer "embedar" os links do youtube.