Always Use NOEMBED When Embedding Video in your Blog
We frequently come across situations in our RSS readers where the post title says "iPhone Demo" but the area where you expect to see that embedded video is blank. You may think that the blogger forgot to embed the video in his blog post but the actual reason is something else. Visit the same blog in your browser and you will see the video displaying perfectly.
If you are blogger and don't want your readers to run into a similar situation, Nick Bradbury suggests that always use the NOEMBED tag when embedding Youtube videos in your blog posts.
In that case, if the RSS reader fails to display the video player properly, your subscribers get to know about it. Here's a real example.
Default YouTube Embed Code
<embed src="http://www.youtube.com/v/ujt_UT0MvH4" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed>YouTube HTML code with NOEMBED
<embed src="http://www.youtube.com/v/ujt_UT0MvH4" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed>
<noembed>
<a href="http://www.youtube.com/watch?v=ujt_UT0MvH4">Watch on Youtube</a></noembed>The NOEMBED tag may have the hyperlink to the actual video or a thumbnail image of some video frame, something that blip.tv does automatically.

Download Free Google Software:
Reader Comments:
I don't use the NOEMBED. Instead, I copy the YouTube embed code to my clipboard, then I use the Wordpress "Press It" button to blog from that page. That automatically adds a link to the video. Then I paste the embed code above the link. That way on the blog there is the vid and a link to it, and in the rss if the vid doesn't show up then at least the text link does. This seems more simple than the NOEMBED.
Actually, you shouldn't be using embed in the first place unless you are still using HTML to serve your site.
embed in deprecated in XHTML, which is what is being used normally on most templates.
Use object instead.
Have a question? Need help? Visit the forums ».