<?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 Save Bandwidth when Displaying Flash Video</title>
	<atom:link href="http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/</link>
	<description></description>
	<pubDate>Sat, 04 Jul 2009 22:39:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: David Stiller</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-175874</link>
		<dc:creator>David Stiller</dc:creator>
		<pubDate>Thu, 20 Nov 2008 02:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-175874</guid>
		<description>Steve,

I haven't used the Media components in a long time, so nothing undocumented comes to mind.  I wonder if you might be running into an issue of the browser itself throttling down your HTTP requests?</description>
		<content:encoded><![CDATA[<p>Steve,</p>
<p>I haven&#8217;t used the Media components in a long time, so nothing undocumented comes to mind.  I wonder if you might be running into an issue of the browser itself throttling down your HTTP requests?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-175788</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 17 Nov 2008 16:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-175788</guid>
		<description>Hi, nice topic.

I have something slightly different but related.

I wanted to have a number of flv's loading and playing, never mind the bandwidth as they are a short preview of the full movies that can be viewed when chosen.

However I find that the flv's load in and do not show up consistently, they just appear when they feel like it. Tempromental !

They are no more than 97k, download quickly and the controller I made runs showing that flash has actually loaded and is actually playing them.

I'm using flash MX pro (7.2) and use the MediaDisplay component and contentPath to set the movie on each instance created.

I've tried some things like stop and play commands on the instance after loaded complete, to try and get the screen to 'update' and show the movie, but nothing works.

I suspect it might be a memory issue as activity wise it can send the processor working, but regardless of that, has anyone any ideas to get the MediaDisplay to refresh, or start showing the movie it's already downloaded.

Are their any 'secret' MediaDisplay component calls that can get the video to display?

Cheers</description>
		<content:encoded><![CDATA[<p>Hi, nice topic.</p>
<p>I have something slightly different but related.</p>
<p>I wanted to have a number of flv&#8217;s loading and playing, never mind the bandwidth as they are a short preview of the full movies that can be viewed when chosen.</p>
<p>However I find that the flv&#8217;s load in and do not show up consistently, they just appear when they feel like it. Tempromental !</p>
<p>They are no more than 97k, download quickly and the controller I made runs showing that flash has actually loaded and is actually playing them.</p>
<p>I&#8217;m using flash MX pro (7.2) and use the MediaDisplay component and contentPath to set the movie on each instance created.</p>
<p>I&#8217;ve tried some things like stop and play commands on the instance after loaded complete, to try and get the screen to &#8216;update&#8217; and show the movie, but nothing works.</p>
<p>I suspect it might be a memory issue as activity wise it can send the processor working, but regardless of that, has anyone any ideas to get the MediaDisplay to refresh, or start showing the movie it&#8217;s already downloaded.</p>
<p>Are their any &#8217;secret&#8217; MediaDisplay component calls that can get the video to display?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Stiller</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-161759</link>
		<dc:creator>David Stiller</dc:creator>
		<pubDate>Wed, 28 May 2008 13:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-161759</guid>
		<description>Jen and Jon,

The easiest workaround I can think of is to create a very small FLV file -- just a blank screen, whatever color you like, 5 frames, max -- and set that small FLV as the default video.  You can use the Parameters tab to do it, or precede the button event handler code with the instance name of your FLV component and a line of ActionScript:

// AS2
videoPlayer.contentPath = "nameOfShortVideo.flv";

// AS3
videoPlayer.source = "nameOfShortVideo.flv";

That way, your perpetual bar will stop being perpetual, because it indeed finds a file.  Bandwidth still isn't an issue -- not especially -- because the stand-in FLV is so tiny.

The button event handler code stays the same.

(Sorry for the delayed reply, Jen!)</description>
		<content:encoded><![CDATA[<p>Jen and Jon,</p>
<p>The easiest workaround I can think of is to create a very small FLV file &#8212; just a blank screen, whatever color you like, 5 frames, max &#8212; and set that small FLV as the default video.  You can use the Parameters tab to do it, or precede the button event handler code with the instance name of your FLV component and a line of ActionScript:</p>
<p>// AS2<br />
videoPlayer.contentPath = &#8220;nameOfShortVideo.flv&#8221;;</p>
<p>// AS3<br />
videoPlayer.source = &#8220;nameOfShortVideo.flv&#8221;;</p>
<p>That way, your perpetual bar will stop being perpetual, because it indeed finds a file.  Bandwidth still isn&#8217;t an issue &#8212; not especially &#8212; because the stand-in FLV is so tiny.</p>
<p>The button event handler code stays the same.</p>
<p>(Sorry for the delayed reply, Jen!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-161745</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 28 May 2008 11:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-161745</guid>
		<description>Hi David,

I'm currently having the same problem as Jen. I'm assuming you didn't get the perpetual buffer bar in your example? I'm using AS3.
I'll probably resort to making a custom component and removing the buffer bar from it, if I can't find a better fix.

thanks</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>I&#8217;m currently having the same problem as Jen. I&#8217;m assuming you didn&#8217;t get the perpetual buffer bar in your example? I&#8217;m using AS3.<br />
I&#8217;ll probably resort to making a custom component and removing the buffer bar from it, if I can&#8217;t find a better fix.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jen</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-154822</link>
		<dc:creator>Jen</dc:creator>
		<pubDate>Wed, 07 May 2008 14:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-154822</guid>
		<description>Hi David,

Thanks for the great tutorial. I followed your instructions and though I'm not a Flash expert at all, I was able to get my webpage, which has 7 embedded Flash videos, to work as you instructed. (I used ActionScript 2, BTW.)

However, I have one problem that I'm hoping can be fixed. Now that the FLV file doesn't load, the progress bar of the Flash controls just spins (like a barbershop pole) as if it's trying and trying to load but can't. Is there any way to remove this? It may seem like a small thing, but I'm worried that visitors to the site may think that the videos aren't loading if they see this graphic. You don't tend to see the progress bar spinning when you visit other sites with embedded video.

I can provide a link to my page if needed. Thanks! Good post.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Thanks for the great tutorial. I followed your instructions and though I&#8217;m not a Flash expert at all, I was able to get my webpage, which has 7 embedded Flash videos, to work as you instructed. (I used ActionScript 2, BTW.)</p>
<p>However, I have one problem that I&#8217;m hoping can be fixed. Now that the FLV file doesn&#8217;t load, the progress bar of the Flash controls just spins (like a barbershop pole) as if it&#8217;s trying and trying to load but can&#8217;t. Is there any way to remove this? It may seem like a small thing, but I&#8217;m worried that visitors to the site may think that the videos aren&#8217;t loading if they see this graphic. You don&#8217;t tend to see the progress bar spinning when you visit other sites with embedded video.</p>
<p>I can provide a link to my page if needed. Thanks! Good post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zander S.</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-124907</link>
		<dc:creator>Zander S.</dc:creator>
		<pubDate>Sat, 29 Mar 2008 09:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-124907</guid>
		<description>Interesting; thanks for the tip.</description>
		<content:encoded><![CDATA[<p>Interesting; thanks for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Stiller</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-109206</link>
		<dc:creator>David Stiller</dc:creator>
		<pubDate>Wed, 13 Feb 2008 17:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-109206</guid>
		<description>wedding, Michael, and Andrew,

Thanks!</description>
		<content:encoded><![CDATA[<p>wedding, Michael, and Andrew,</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-109201</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 13 Feb 2008 17:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-109201</guid>
		<description>Very nice, well written, straight and to the point...</description>
		<content:encoded><![CDATA[<p>Very nice, well written, straight and to the point&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Watchher</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-98482</link>
		<dc:creator>Michael Watchher</dc:creator>
		<pubDate>Wed, 30 Jan 2008 15:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-98482</guid>
		<description>Nice solution for bandwith saving! Thanks!!</description>
		<content:encoded><![CDATA[<p>Nice solution for bandwith saving! Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wedding videography</title>
		<link>http://www.NotesOnDesign.net/resources/web-design/how-to-save-bandwidth-when-displaying-flash-video/comment-page-1/#comment-97610</link>
		<dc:creator>wedding videography</dc:creator>
		<pubDate>Mon, 28 Jan 2008 21:31:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.notesondesign.net/web-design/how-to-save-bandwidth-when-displaying-flash-video/#comment-97610</guid>
		<description>Thank you, very useful.</description>
		<content:encoded><![CDATA[<p>Thank you, very useful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
