<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>Latest snippets tagged html video quicktime xhtml</title>
  <link rel="alternate" href="http://snippets.prendreuncafe.com/snippets/tagged/html+video+quicktime+xhtml/order_by/date"></link>
  <id>http://snippets.prendreuncafe.com/snippets/tagged/html+video+quicktime+xhtml/order_by/date</id>
  <updated>2008-03-26T12:07:05Z</updated>
  <author>
    <name>Symfony</name>
    <author_email>noreply@symfony-project.com</author_email>
  </author>
<entry>
  <title>Enbarquer un objet QuickTime en XHTML</title>
  <link href="http://snippets.prendreuncafe.com/snippet/82"></link>
  <updated>2008-03-26T12:07:05Z</updated>
  <id>82</id>
  <summary type="html">Parfois, on a besoin d'inclure une vidéo QuickTime (.MOV) dans une page XHTML :

[code xml]
&lt;!--[if IE]&gt;
&lt;object id=&quot;ieqt&quot; classid=&quot;clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B&quot; width=&quot;640&quot; height=&quot;415&quot;&gt;
  &lt;param name=&quot;src&quot; value=&quot;toto.mov&quot;&gt;
  &lt;param name=&quot;autoplay&quot; value=&quot;false&quot;/&gt;
  &lt;param name=&quot;controller&quot; value=&quot;true&quot;/&gt;
  &lt;param name=&quot;loop&quot; value=&quot;false&quot;/&gt;
  &lt;p&gt;&lt;a href=&quot;toto.mov&quot;&gt;Télécharger la vidéo&lt;/a&gt;.&lt;/p&gt;
&lt;/object&gt;
&lt;![endif]--&gt;

&lt;!--[if !IE]&gt;&lt;--&gt;
&lt;object id=&quot;nonieqt&quot; data=&quot;toto.mov&quot; type=&quot;video/quicktime&quot; width=&quot;640&quot; height=&quot;415&quot;&gt;
  &lt;param name=&quot;autoplay&quot; value=&quot;false&quot;/&gt;
  &lt;param name=&quot;controller&quot; value=&quot;true&quot;/&gt;
  &lt;param name=&quot;loop&quot; value=&quot;false&quot;/&gt;
  &lt;p&gt;&lt;a href=&quot;toto.mov&quot;&gt;Télécharger la vidéo&lt;/a&gt;.&lt;/p&gt;
&lt;/object&gt;
&lt;!--&gt;&lt;![endif]--&gt;
[/code]</summary>
</entry>
</feed>