אפשר לעשות את זה:
PHP קוד:
<?php
// URL of video
$url = 'http://www.youtube.com/watch?v=uhGI7eKoqAg&feature=dir';
// Get page
$page = file_get_contents($url);
// Check if can embed
$embed_disallowed = preg_match('/Embedding disabled by request/', $page);
if ($embed_disallowed)
{
echo "<h1>Cannot embed this you tube video.</h1>";
die();
}
?>