<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How accessible are embedded movies?	</title>
	<atom:link href="/2005/07/01/how-accessible-are-embeded-movies/feed/" rel="self" type="application/rss+xml" />
	<link>/2005/07/01/how-accessible-are-embeded-movies/</link>
	<description>my thoughts and ideas</description>
	<lastBuildDate>Wed, 15 Nov 2006 09:58:49 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.2</generator>
	<item>
		<title>
		By: Spider Trax &#187; How accessible are embedded movies?		</title>
		<link>/2005/07/01/how-accessible-are-embeded-movies/comment-page-1/#comment-4157</link>

		<dc:creator><![CDATA[Spider Trax &#187; How accessible are embedded movies?]]></dc:creator>
		<pubDate>Fri, 29 Sep 2006 21:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://cms.elfden.co.uk/2005/07/01/how-accessible-are-embeded-movies/#comment-4157</guid>

					<description><![CDATA[[...] This article first appeared on permanent tangent. [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] This article first appeared on permanent tangent. [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brent		</title>
		<link>/2005/07/01/how-accessible-are-embeded-movies/comment-page-1/#comment-801</link>

		<dc:creator><![CDATA[Brent]]></dc:creator>
		<pubDate>Mon, 19 Dec 2005 02:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://cms.elfden.co.uk/2005/07/01/how-accessible-are-embeded-movies/#comment-801</guid>

					<description><![CDATA[I am having the same problem as well.  I&#039;ve got a little file that plays on a clients website.  It works, sure...but not having it validate bothers the living whatever out of me.  My client&#039;s last developer used the bgsound tag; hitting roughly 47% of the world&#039;s internet users.  I mentioned that we could do the flash get up and hit roughly 97% of the world&#039;s internet users.  He agreed.  But how can a developer go to sleep and not have the code validate?  I&#039;ll be checking back often to see if there&#039;s a reply to this with a satisfactory answer.

-Brent]]></description>
			<content:encoded><![CDATA[<p>I am having the same problem as well.  I&#8217;ve got a little file that plays on a clients website.  It works, sure&#8230;but not having it validate bothers the living whatever out of me.  My client&#8217;s last developer used the bgsound tag; hitting roughly 47% of the world&#8217;s internet users.  I mentioned that we could do the flash get up and hit roughly 97% of the world&#8217;s internet users.  He agreed.  But how can a developer go to sleep and not have the code validate?  I&#8217;ll be checking back often to see if there&#8217;s a reply to this with a satisfactory answer.</p>
<p>-Brent</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rich		</title>
		<link>/2005/07/01/how-accessible-are-embeded-movies/comment-page-1/#comment-534</link>

		<dc:creator><![CDATA[Rich]]></dc:creator>
		<pubDate>Thu, 04 Aug 2005 11:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://cms.elfden.co.uk/2005/07/01/how-accessible-are-embeded-movies/#comment-534</guid>

					<description><![CDATA[I am not an expert at &#039;embedding&#039; stuff, so thanks for correcting me.

However it should also be noted that &#060;embed&#062; is not part of the XHTML specification and will prevent your page from validating.

So ideally I would like to remove that portion of it altogether!]]></description>
			<content:encoded><![CDATA[<p>I am not an expert at &#8217;embedding&#8217; stuff, so thanks for correcting me.</p>
<p>However it should also be noted that &lt;embed&gt; is not part of the XHTML specification and will prevent your page from validating.</p>
<p>So ideally I would like to remove that portion of it altogether!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: zcorpan		</title>
		<link>/2005/07/01/how-accessible-are-embeded-movies/comment-page-1/#comment-531</link>

		<dc:creator><![CDATA[zcorpan]]></dc:creator>
		<pubDate>Wed, 03 Aug 2005 22:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://cms.elfden.co.uk/2005/07/01/how-accessible-are-embeded-movies/#comment-531</guid>

					<description><![CDATA[IE has support for EMBED, so what’s the benefit of using the OBJECT? Your OBJECT abuses the classid and codebase attributes to trigger the ActiveX in IE, and the type attribute doesn’t represent the MIME type of the file (which probably is video/mpeg). There’s also no data attribute pointing to the file. Just because it validates doesn’t mean it is compliant.

I think it should look something like this:

&#060;p&#062;&#060;object type=&quot;video/mpeg&quot; data=&quot;sample.mpg&quot; width=&quot;320&quot; height=&quot;284&quot;&#062;&#060;/object&#062;&#060;/p&#062;

...or:

&#060;p&#062;&#060;embed type=&quot;video/mpeg&quot; src=&quot;sample.mpg&quot; width=&quot;320&quot; height=&quot;284&quot;&#062;&#060;/p&#062;

In text/html, EMBED is always an empty element and has no end tag. At least in IE, Firefox and Opera. 
]]></description>
			<content:encoded><![CDATA[<p>IE has support for EMBED, so what’s the benefit of using the OBJECT? Your OBJECT abuses the classid and codebase attributes to trigger the ActiveX in IE, and the type attribute doesn’t represent the MIME type of the file (which probably is video/mpeg). There’s also no data attribute pointing to the file. Just because it validates doesn’t mean it is compliant.</p>
<p>I think it should look something like this:</p>
<p>&lt;p&gt;&lt;object type=&#8221;video/mpeg&#8221; data=&#8221;sample.mpg&#8221; width=&#8221;320&#8243; height=&#8221;284&#8243;&gt;&lt;/object&gt;&lt;/p&gt;</p>
<p>&#8230;or:</p>
<p>&lt;p&gt;&lt;embed type=&#8221;video/mpeg&#8221; src=&#8221;sample.mpg&#8221; width=&#8221;320&#8243; height=&#8221;284&#8243;&gt;&lt;/p&gt;</p>
<p>In text/html, EMBED is always an empty element and has no end tag. At least in IE, Firefox and Opera. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Spider Trax &#187; How accessible are embeded movies?		</title>
		<link>/2005/07/01/how-accessible-are-embeded-movies/comment-page-1/#comment-491</link>

		<dc:creator><![CDATA[Spider Trax &#187; How accessible are embeded movies?]]></dc:creator>
		<pubDate>Fri, 01 Jul 2005 20:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://cms.elfden.co.uk/2005/07/01/how-accessible-are-embeded-movies/#comment-491</guid>

					<description><![CDATA[[...] ie. Also if anyone has done any user testing in this area.  This article first appeared on permanent tangent.	
  
  No C [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] ie. Also if anyone has done any user testing in this area.  This article first appeared on permanent tangent.	</p>
<p>  No C [&#8230;]</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
