<?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 to make HTML5 videos for iPhone and iPad.</title>
	<atom:link href="http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/</link>
	<description>Marketing &#38; Money Getting Blog</description>
	<lastBuildDate>Sun, 22 Jan 2012 17:02:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Owen</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-26406</link>
		<dc:creator>Owen</dc:creator>
		<pubDate>Thu, 08 Sep 2011 11:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-26406</guid>
		<description>Hey Trey awesome tech post mate, and thought you may be able to mention it to your Cousin Frank, as I recently bought his Mass Control Syndicate training and can&#039;t watch it on my iPad , bummer dude :-( 

But on the up side love going through you iPhone App training course on the iPad :-)

Cheers
Owen</description>
		<content:encoded><![CDATA[<p>Hey Trey awesome tech post mate, and thought you may be able to mention it to your Cousin Frank, as I recently bought his Mass Control Syndicate training and can&#8217;t watch it on my iPad , bummer dude <img src='http://www.treysmithblog.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  </p>
<p>But on the up side love going through you iPhone App training course on the iPad <img src='http://www.treysmithblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Cheers<br />
Owen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis Leptich</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-26213</link>
		<dc:creator>Travis Leptich</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-26213</guid>
		<description>Though this article is a little old to post on now, I felt that it would be good to mention something helpful.
Rather than having a &quot;Click here if you&#039;re on an iPhone or iPad&quot; link, you can actually embed &lt;object&gt; tags inside of &lt;video&gt; tags. This way, if they are using an iPhone or iPad, it&#039;ll play the video directly on the page, and if they are using a browser that doesn&#039;t support it, it can fall back to flash video instead...

&lt;video controls preload=&quot;none&quot;&gt;
  &lt;source src=&quot;VIDEO.m4v&quot;  type=&quot;video/mp4&quot; /&gt;
  &lt;object width=&quot;320&quot; height=&quot;240&quot; type=&quot;application/x-shockwave-flash&quot; data=&quot;VIDEO.swf&quot;&gt;
    &lt;param name=&quot;movie&quot; value=&quot;VIDEO.swf&quot; /&gt;
    &lt;param name=&quot;flashvars&quot; value=&#039;config={&quot;clip&quot;: {&quot;url&quot;: &quot;http://yourSite/VIDEO.swf&quot;, &quot;autoPlay&quot;:false, &quot;autoBuffering&quot;:true}}&#039; /&gt;
  &lt;/object&gt;
&lt;/video&gt;

With the above markup, it should play the video for the i-Devices, and if the video doesn&#039;t work for the current user&#039;s device, it&#039;ll fall back to using flash in the same area on the page.

Not necessary, but useful if you don&#039;t want people to have to leave the page to view a video.</description>
		<content:encoded><![CDATA[<p>Though this article is a little old to post on now, I felt that it would be good to mention something helpful.<br />
Rather than having a &#8220;Click here if you&#8217;re on an iPhone or iPad&#8221; link, you can actually embed &#060;object&#062; tags inside of &#060;video&#062; tags. This way, if they are using an iPhone or iPad, it&#8217;ll play the video directly on the page, and if they are using a browser that doesn&#8217;t support it, it can fall back to flash video instead&#8230;</p>
<p>&#060;video controls preload=&#8221;none&#8221;&#062;<br />
  &#060;source src=&#8221;VIDEO.m4v&#8221;  type=&#8221;video/mp4&#8243; /&#062;<br />
  &#060;object width=&#8221;320&#8243; height=&#8221;240&#8243; type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;VIDEO.swf&#8221;&#062;<br />
    &#060;param name=&#8221;movie&#8221; value=&#8221;VIDEO.swf&#8221; /&#062;<br />
    &#060;param name=&#8221;flashvars&#8221; value=&#8217;config={&#8220;clip&#8221;: {&#8220;url&#8221;: &#8220;http://yourSite/VIDEO.swf&#8221;, &#8220;autoPlay&#8221;:false, &#8220;autoBuffering&#8221;:true}}&#8217; /&#062;<br />
  &#060;/object&#062;<br />
&#060;/video&#062;</p>
<p>With the above markup, it should play the video for the i-Devices, and if the video doesn&#8217;t work for the current user&#8217;s device, it&#8217;ll fall back to using flash in the same area on the page.</p>
<p>Not necessary, but useful if you don&#8217;t want people to have to leave the page to view a video.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis Leptich</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-26212</link>
		<dc:creator>Travis Leptich</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-26212</guid>
		<description>Though this article is a little old to post on now, I felt that it would be good to mention something helpful.
Rather than having a &quot;Click here if you&#039;re on an iPhone or iPad&quot; link, you can actually embed  tags inside of  tags. This way, if they are using an iPhone or iPad, it&#039;ll play the video directly on the page, and if they are using a browser that doesn&#039;t support it, it can fall back to flash video instead...


  
  
    
    
  


With the above markup, it should play the video for the i-Devices, and if the video doesn&#039;t work for the current user&#039;s device, it&#039;ll fall back to using flash in the same area on the page.

Not necessary, but useful if you don&#039;t want people to have to leave the page to view a video.</description>
		<content:encoded><![CDATA[<p>Though this article is a little old to post on now, I felt that it would be good to mention something helpful.<br />
Rather than having a &#8220;Click here if you&#8217;re on an iPhone or iPad&#8221; link, you can actually embed  tags inside of  tags. This way, if they are using an iPhone or iPad, it&#8217;ll play the video directly on the page, and if they are using a browser that doesn&#8217;t support it, it can fall back to flash video instead&#8230;</p>
<p>With the above markup, it should play the video for the i-Devices, and if the video doesn&#8217;t work for the current user&#8217;s device, it&#8217;ll fall back to using flash in the same area on the page.</p>
<p>Not necessary, but useful if you don&#8217;t want people to have to leave the page to view a video.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-17915</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 23 May 2011 01:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-17915</guid>
		<description>I have something to add, if you want a cool image as your thumbnail for the video (that image you see with the big blue play button on it if your watching on an iphone or ipod touch) you can add a poster attribute to the code with the image you want

E.g.

.....

I hope some people find this useful</description>
		<content:encoded><![CDATA[<p>I have something to add, if you want a cool image as your thumbnail for the video (that image you see with the big blue play button on it if your watching on an iphone or ipod touch) you can add a poster attribute to the code with the image you want</p>
<p>E.g.</p>
<p>&#8230;..</p>
<p>I hope some people find this useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaun Trevett</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-1892</link>
		<dc:creator>Shaun Trevett</dc:creator>
		<pubDate>Fri, 10 Sep 2010 20:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-1892</guid>
		<description>WOW Dude this is Awesome love the instructions and this will be very helpful with my soon to be product launches coming up. 

Thanks Trey 

You are the Man!

Kind Regards
Shaun</description>
		<content:encoded><![CDATA[<p>WOW Dude this is Awesome love the instructions and this will be very helpful with my soon to be product launches coming up. </p>
<p>Thanks Trey </p>
<p>You are the Man!</p>
<p>Kind Regards<br />
Shaun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Beard</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-721</link>
		<dc:creator>Andy Beard</dc:creator>
		<pubDate>Fri, 25 Jun 2010 00:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-721</guid>
		<description>There are plenty of different solutions out there to get one page with support for all browsers.

Firefox does support HTML5, what it doesn&#039;t support is mp4 natively, you need to provide an alternative version of the video in ogg format.</description>
		<content:encoded><![CDATA[<p>There are plenty of different solutions out there to get one page with support for all browsers.</p>
<p>Firefox does support HTML5, what it doesn&#8217;t support is mp4 natively, you need to provide an alternative version of the video in ogg format.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juho Tunkelo</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-653</link>
		<dc:creator>Juho Tunkelo</dc:creator>
		<pubDate>Mon, 14 Jun 2010 13:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-653</guid>
		<description>Kylmä kalja!</description>
		<content:encoded><![CDATA[<p>Kylmä kalja!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-606</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sun, 06 Jun 2010 19:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-606</guid>
		<description>Cerveza!</description>
		<content:encoded><![CDATA[<p>Cerveza!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-599</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 05 Jun 2010 15:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-599</guid>
		<description>The video plays on Chrome.  :-)  Hopefully it won&#039;t be long before the Firefox browser is updated to support HTML5.  Thanks for the post.  Will be taking action on this immediately.</description>
		<content:encoded><![CDATA[<p>The video plays on Chrome.  <img src='http://www.treysmithblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Hopefully it won&#8217;t be long before the Firefox browser is updated to support HTML5.  Thanks for the post.  Will be taking action on this immediately.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony DeLoach</title>
		<link>http://www.treysmithblog.com/how-to-make-html5-videos-for-iphone-and-ipad/comment-page-1/#comment-597</link>
		<dc:creator>Anthony DeLoach</dc:creator>
		<pubDate>Sat, 05 Jun 2010 14:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.treysmithblog.com/?p=78#comment-597</guid>
		<description>Cold squeezer!</description>
		<content:encoded><![CDATA[<p>Cold squeezer!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

