<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Garage &#187; Flash</title>
	<atom:link href="http://wpgarage.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Wed, 16 Nov 2011 14:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Add SWFir to WordPress for nice rounded corners, shadows and other effects</title>
		<link>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/</link>
		<comments>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:42:16 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[image replacement]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[swfir]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">?p=623</guid>
		<description><![CDATA[<p>While collaborating with our colleagues at Red Door on a project, we came across SWFir,  an amazing way to add some nice subtle effects to WordPress site images. SWFir automatically adds a flash layer on top of images that can round the corners, add a shadow, rotate, or add a border.  I found the directions [...]</p><p>This post was originally published at <a href="http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/">Add SWFir to WordPress for nice rounded corners, shadows and other effects</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" data-url="http://illum.in/oUssul" data-text="Add SWFir to WordPress for nice rounded corners, shadows and other effects" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/"></g:plusone></div></div><p>While collaborating with our colleagues at <a href="http://www.reddoor.biz/">Red Door</a> on a project, we came across <a href="http://www.swfir.com/">SWFir</a>,  an amazing way to add some nice subtle effects to WordPress site images. SWFir automatically adds a flash layer on top of images that can round the corners, add a shadow, rotate, or add a border.  I found the directions on their site a little skimpy for WordPress users so I thought I&#8217;d share how to integrate SWFir for WordPress users.</p>
<p>CSS3 is also great for rounded <a href="http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/">corners and shadows</a>, but unfortunately we still need to keep in mind people using all different versions of Internet Explorer.</p>
<p><img title="swfir" src="http://wpgarage.com/wp-content/uploads/2010/02/swfir.png" alt="" width="400" height="370" /></p>
<ol>
<li>Download <a href="http://www.swfir.com/mint/pepper/tillkruess/downloads/download.php?uri=/files/swfir_v1.zip">SWFir</a></li>
<li>Upload <code>swfir.js</code> and <code>swfir.swf</code> into a folder called swfir into  your theme directory</li>
<li>Include the swfIR JavaScript file in the <code>&lt;head&gt;</code> of your document like this:<code><br />
</code><code>&lt;script type="text/javascript" src="swfir.js"&gt;&lt;/script&gt;</code></li>
<li>Add this to footer.php just before the closing body tag&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
// swfIR<br />
window.onload = function() {<br />
var sir = new swfir();<br />
sir.specify(&#8220;border-radius&#8221;, &#8220;15&#8243;);<br />
sir.specify(&#8220;src&#8221;, &#8220;&lt;?php bloginfo(&#8216;stylesheet_directory&#8217;); ?&gt;/swfir/swfir.swf&#8221;);<br />
sir.swap(&#8220;.latest-posts-center img&#8221;);<br />
sir.swap(&#8220;.latest-posts-center a img&#8221;);<br />
sir.swap(&#8220;img.rounded&#8221;);<br />
&lt;/script&gt;</p>
<p>You may choose from any of these parameters:</p>
<ul>
<li>border-radius</li>
<li>border-width</li>
<li>border-color</li>
<li>shadow-offset</li>
<li>shadow-angle</li>
<li>shadow-alpha</li>
<li>shadow-blur</li>
<li>shadow-blur-x</li>
<li>shadow-blur-y</li>
<li>shadow-strength</li>
<li>shadow-color</li>
<li>shadow-quality</li>
<li>shadow-inner</li>
<li>shadow-knockout</li>
<li>shadow-hide</li>
<li>rotate</li>
<li>overflow</li>
<li>link</li>
<li>elasticity</li>
</ul>
</li>
<li><strong>Add this in the loop somewhere </strong><strong> </strong>Note: this is assuming that your images are not organized by month and day under Settings &gt; Miscellaneous &#8211; the box is unchecked.<br />
Also, you can change the width to whatever you want and it will resize automatically</p>
<p>&lt;?php if ( get_post_meta($post-&gt;ID, &#8217;rounded_img&#8217;, true) ) {<br />
$postimg = get_post_meta($post-&gt;ID, &#8217;rounded_img&#8217;, $single = true);<br />
if((stristr($postimg,&#8217;http&#8217;)===FALSE) &amp;&amp; (stristr($postimg,&#8217;wp-content&#8217;)===FALSE)) {<br />
$postimg = get_bloginfo(&#8216;siteurl&#8217;).&#8221;/wp-content/uploads/&#8221;.$postimg;<br />
} ?&gt;<br />
&lt;div&gt;<br />
&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;<br />
&lt;img src=&#8221;&lt;?php echo $postimg; ?&gt;&#8221; alt=&#8221;" width=&#8221;140&#8243;  /&gt;&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;</li>
<li>When you create a post, upload an image and copy the Link URL. Create a custom fields key rounded_img and paste the Link URL in the Value Box.<strong><br />
</strong></li>
</ol>
<p>This post was originally published at <a href="http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/">Add SWFir to WordPress for nice rounded corners, shadows and other effects</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Flash header or slideshow on WordPress easily with Flashfader plugin</title>
		<link>http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/</link>
		<comments>http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 19:03:29 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[header]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/</guid>
		<description><![CDATA[<p>My Flash skills are non-existent, so when a client requested some kind of Flash header where the images fade out and in, I was happy that I remembered that I had once come a across a plugin that creates Flash slideshows. Flashfader plugin lets you easily create Flash slideshows and place them almost anywhere on [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/">Create Flash header or slideshow on WordPress easily with Flashfader plugin</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/" data-url="http://illum.in/ozQXH7" data-text="Create Flash header or slideshow on WordPress easily with Flashfader plugin" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/"></g:plusone></div></div><div style="float: left; width: 240px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9020989590386566";
/* 200x200, created 6/14/10 */
google_ad_slot = "3727910436";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
</div>
<p>My Flash skills are non-existent, so when a client requested some kind of Flash header where the images fade out and in, I was happy that I remembered that I had once come a across a plugin that creates Flash slideshows.</p>
<p><a title="Flashfader plugin" href="http://www.lynk.de/wordpress/flashfader/">Flashfader plugin</a> lets you easily create Flash slideshows and place them almost anywhere on your blog.</p>
<p><strong>How to use Flashfader: </strong></p>
<ol>
<li>Extract the files and upload them to the plugins directory. There are two files: flashfader.php and flashfader.swf. Both have to be in the root directory of plugins, and not in their own folder.</li>
<li>Install Flashfader.</li>
<li>Go to Manage &gt; Flashfader. The following screen appears:<br />
<img src="http://wpgarage.com/wp-content/uploads/2007/08/flashfader1.jpg" alt="Flashfader screen shot" /></li>
<li>Here you can customize the appearance of the slideshow:
<ol>
<li>Width/Height: define the width and height of the slideshow. If you upload pictures that are bigger or smaller than this size, they will be automatically edited to the size you define here. So if you want to have complete control over how your pictures look in the slideshow, select and width and height, enter them here, and make sure all your images are exactly that size.</li>
<li>Background color: This is the color that will appear before your first image fades in.</li>
<li>Fade Order: your images can either appear in a selected order, or randomly. Enter 1 if you want your images to appear in the order you define. Enter 2 if  you want the images to appear randomly.</li>
<li>Image display time: This is how long each image appears for before it fades out.</li>
<li>Imag2image fade time: This is how long the fade between pictures takes.</li>
<li>XHTML-valid flash embed: You can state whether you want the embed code to be XHTML-compliant. I found that it worked fine when XHTML-compliant.</li>
</ol>
</li>
<li>Save your settings.</li>
<li>In the next part of the screen, you upload the images you want to appear in the slideshow.<br />
<img src="http://wpgarage.com/wp-content/uploads/2007/08/flashfader2.jpg" alt="Flashfader screen shot" /></li>
<li>If you set the Fade Order in step 3 above to sequential, you do not need to worry about the first column of numbers. If you did select to have a sequential slideshow, you can easily change the order by entering numbers in the middle column in the above picture.</li>
<li>Save your work.</li>
</ol>
<p>You now have a completed Flash slideshow. But how do we get it to appear in the header of the site, or in any other part.</p>
<p><strong>Integrating your new Flash show in your site</strong></p>
<p>Open header.php and insert:</p>
<p>&lt;?php include (ABSPATH.&#8221;wp-content/flashfader/flashfaderhtml.txt&#8221;);?&gt;</p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/">Create Flash header or slideshow on WordPress easily with Flashfader plugin</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/create-flash-header-or-slideshow-on-wordpress-easily-with-flashfader-plugin/feed/</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
		<item>
		<title>Viper&#8217;s Video Quicktags is the best for embedding movies</title>
		<link>http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/</link>
		<comments>http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 18:18:14 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/</guid>
		<description><![CDATA[<p>After trying out many of the plugins available for helping WordPress users embed videos in their posts and Pages, the one that I find to be the best is Viper&#8217;s Video Quicktags plugin. Once activated, you can select which types of videos you want to become available on the editor. You can choose from YouTube, [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/">Viper&#8217;s Video Quicktags is the best for embedding movies</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/" data-url="http://illum.in/nOwNgb" data-text="Viper&#8217;s Video Quicktags is the best for embedding movies" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/"></g:plusone></div></div><p>After trying out many of the plugins available for helping WordPress users embed videos in their posts and Pages, the one that I find to be the best is <a href="http://wordpress.org/extend/plugins/vipers-video-quicktags/" title="Viper's Video Quicktag plugin">Viper&#8217;s Video Quicktags plugin</a>. Once activated, you can select which types of videos you want to become available on the editor. You can choose from YouTube, Google Video, IFILM, Metacafe, MySpace, Vimeo, Quicktime, generic video file format, and Flash (flv). Once you select the video formats, these appear on your visual editor as icons.</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2007/06/viper.Jpg" alt="Viper’s Video Quicktags" align="middle" /></p>
<p>All you have to do is click on an icon, and a pop-up window asks for the URL of the video you wish to embed.</p>
<p><a href="http://wordpress.org/extend/plugins/vipers-video-quicktags/" title="Viper's Video Quicktag plugin">Viper&#8217;s Video Quicktags&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/">Viper&#8217;s Video Quicktags is the best for embedding movies</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/vipers-video-quicktags-is-the-best-for-embedding-movies/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Inserting Flash swf file in WordPress posts or Pages</title>
		<link>http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/</link>
		<comments>http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 20:08:02 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/</guid>
		<description><![CDATA[<p>I&#8217;m no Flash expert, so generally if I&#8217;m dealing with Flash it&#8217;s Flash movies, which are .flv files. However, some people might need to insert Flash objects into their posts or Pages, and these files have the .swf suffix. Someone on a forum recently was on a search for the easiest and least destructive way [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/">Inserting Flash swf file in WordPress posts or Pages</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/" data-url="http://illum.in/r02JtK" data-text="Inserting Flash swf file in WordPress posts or Pages" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/"></g:plusone></div></div><p>I&#8217;m no Flash expert, so generally if I&#8217;m dealing with Flash it&#8217;s Flash movies, which are .flv files. However, some people might need to insert Flash objects into their posts or Pages, and these files have the .swf suffix.</p>
<p>Someone on a forum recently was on a search for the easiest and least destructive way of inserting .swf files in their posts, and their conclusion was that the <a href="http://kimili.com/plugins/kimili-flash-embed-for-wordpress">Kimili Flash Embed for WordPress</a> plugin was the best option out there.</p>
<p><a href="http://kimili.com/plugins/kimili-flash-embed-for-wordpress">Kimili Flash Embed for WordPress</a>&gt;&gt;</p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/">Inserting Flash swf file in WordPress posts or Pages</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/inserting-flash-swf-file-in-wordpress-posts-or-pages/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Adding unlimited streaming video to your site with Google Video</title>
		<link>http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/</link>
		<comments>http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 08:23:29 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/</guid>
		<description><![CDATA[<p>A client gave me a 15 minute movie that they wanted uploaded to their site. The problem with such a long video is that it needs to be streamed, or else the user has to wait until a good portion is downloaded before they can view it. But adding streaming Flash video demands some Flash [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/">Adding unlimited streaming video to your site with Google Video</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/" data-url="http://illum.in/nPj7wd" data-text="Adding unlimited streaming video to your site with Google Video" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/"></g:plusone></div></div><p>A client gave me a 15 minute movie that they wanted uploaded to their site. The problem with such a long video is that it needs to be streamed, or else the user has to wait until a good portion is downloaded before they can view it. But adding streaming Flash video demands some Flash programming skills and the Flash software, from what I understand.</p>
<p>I decided to try to use one of the free online video sites. First I tried <a href="http://www.youtube.com" title="YouTube">YouTube</a>. The movie was rejected because of its length. <a href="http://photobucket.com" title="Photobucket">Photobucket</a> was even more restrictive in its size limitations. Then I did a search for &#8220;unlimited video hosting,&#8221; or something like that, and <a href="http://video.google.com" title="Google Video">Google Video</a> came up.</p>
<p>Google Video allows you to host videos with unlimited size and length! I don&#8217;t know why more people don&#8217;t use Google Video. Not only that, the embeddable player is prettier and less gaudy than the YouTube player, in my opinion.</p>
<p>The only limitation with Google Video is that you can&#8217;t upload Flash videos. But that&#8217;s not a major problem since you can easily convert Flash to Windows Media files with one of the free file conversion services like <a href="http://www.zamzar.com" title="Zamzar">Zamzar</a>.</p>
<p>I guess people like YouTube for its social aspect and community. But if you need to make a longer movie easily accessible, I highly recommend that you try Google Video!</p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/">Adding unlimited streaming video to your site with Google Video</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/adding-unlimited-streaming-video-to-your-site-with-google-video/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Are Flash blogs the future?</title>
		<link>http://wpgarage.com/plugins/are-flash-blogs-the-future/</link>
		<comments>http://wpgarage.com/plugins/are-flash-blogs-the-future/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 12:20:44 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/plugins/are-flash-blogs-the-future/</guid>
		<description><![CDATA[<p>LutinCapuche Blog has developed a plugin called FlogMaker that changes your blog to a Flash-based blog. You can see a demo of a Flash blog on the site, and manipulate the background, colors, and more and see the results. It works like any other plugin, where you just upload and activate. It&#8217;s an interesting concept. [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/are-flash-blogs-the-future/">Are Flash blogs the future?</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/are-flash-blogs-the-future/" data-url="http://illum.in/qsdCFP" data-text="Are Flash blogs the future?" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/are-flash-blogs-the-future/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/are-flash-blogs-the-future/"></g:plusone></div></div><p><a href="http://www.lutincapuche.com/" title="LutinCapuche Blog">LutinCapuche Blog</a> has developed a <a href="http://www.lutincapuche.com/plugin-flogmaker-for-wordpress/" title="FlogMaker">plugin called FlogMaker</a> that changes your blog to a Flash-based blog. You can see a <a href="http://www.lutincapuche.com/wp-flashblog/" title="Flash blog">demo of a Flash blog </a>on the site, and manipulate the background, colors, and more and see the results. It works like any other plugin, where you just upload and activate.</p>
<p>It&#8217;s an interesting concept. It&#8217;s hard to tell whether it is user-friendly or not because the demo is in French, so I found myself struggling to figure out what was what because of the language barrier. I am not sure this will catch on, though, since Flash sites are perceived to be non-accessible, and I&#8217;m not sure if this type of site is more accessible than any other Flash site.</p>
<p><a href="http://www.lutincapuche.com/plugin-flogmaker-for-wordpress/" title="FlogMaker">FlogMaker&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/are-flash-blogs-the-future/">Are Flash blogs the future?</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/are-flash-blogs-the-future/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

