Feb 27

So if you are developing a Flash Media Server (FMS) based application that by chance uses the new Dynamic Streaming capabilities of the FMS 3.5 server then it is very important that you know that the version of your server that you are connecting to is correct. This can come into play for instance if you are using a CDN provider like Level(3) or Akamai. Some servers may not be updated to the new FMS version (at the time of this post most are not). One of the less known facts about the new FMS Server 3.5 and thus in place for any additional versions in the future is it actually now provides the dot release information of the FMS server on connection. It is available on the NetStatus event object when the info.code is equal to “NetConnection.Connect.Success” and is on the event.info.data.version property – where event is the NetStatusEvent Object instance.

Some code samples for you:

//within the switch case of the NetStatus event handler:

case “NetConnection.Connect.Success”:
{
    trace( “VERSION: ” + p_evt.info.data.version );
            
    _verifyServerVersion( p_evt.info.data.version );
  
     _initStream();
    break;
}

//Method that parses out the FMS major version

function _verifyServerVersion( p_version:String ):void
{
    var fmsVersion:Number = Number( p_version.split(“,”, 2).join(“.”) );
        
    trace(“fmsVersion: ” + fmsVersion);
}

//////////////////////////////

Another valuable test is checking the Flash Player version since Dynamic Streaming requires Flash Player 10 or greater. Just because I am a nice guy here is a code snippet for that:

import flash.system.Capabilities;
 
public function getFlashPlayerMajorVersion():Number
{
     var fpVersionStr:String = Capabilities.version;
     return Number( fpVersionStr.split(” “)[1].split(“,”, 1) );
}

For more infor and goodies check out this article I wrote for Adobe Devnet: http://www.adobe.com/devnet/flashmediaserver/articles/dynstream_advanced_pt3.html

I actually do not know where the FMS version info is documented anywhere if it is so I cant provide a link to it. If someone else finds it let me know and I will update this.

Feb 23

So I just got word another article of mine went live on the Adobe Devnet website. This one is a cool little article on the new Live DVR features of the Flash Media Server 3.5. Dont know what Live DVR is? Well go read the article!!!

http://www.adobe.com/devnet/flashmediaserver/articles/live_dvr_pt1.html

Thanks to John, and Nils for helping out with some of the samples and edits – and big thanks to Adobe as usual for the opportunity and great staff to work with.

Feb 20

This is a slick idea and should be a good time. I am happy to spread the word about the first ever community Flex Bug Quash!

The jist is a community driven event to quash as many Flex SDK bugs as we can in one night and have a good time doing it. I have always tried to live by the expression if your not going to do something about it then don’t bitch about it – guess I might have to swallow my words and help do some quashing!!

“An event where the community comes together with one goal in mind…
To quash as many bugs in one day as humanly possible.
Don’t just complain, do something about it.”

Check out the link for details.

http://www.bugquash.com


Feb 16

Date and Time: February 27, 2009 from 9:00am – 10:00am PST

Call-in Details:  Check Back day of event

 

Topic:

For those just getting started with streaming and want to start from square one, or just know enough to be dangerous, this session will cover streaming fundamentals, FMS 3.5 capabilities, server installation, and building a basic streaming media player in Flash CS4. Bring your questions, and walk away with a better understanding of streaming and real-time interactivity with Flash Media Server 3.5.

Agenda:

Lisa Larson-Kelley began her career in print design, but was soon lured to digital media by a little application called Flash 4. In addition to hands-on development projects, she enjoys writing and teaching, with a knack for breaking down complex concepts and making them accessible. She has authored whitepapers, tutorials and e-seminars for Adobe, editorials and features for StreamingMedia.com; and co-authored the book Flash Video for Professionals, published by Wiley in 2007. Lisa has also presented at numerous industry conferences and user groups around the world, and is an active member and co-manager of the FlashCodersNY study group.Lisa is currently consulting, teaching, and developing iFoxCam, a consumer video monitoring product using Flash Media Server. She has worked with many video-centric start-ups as well as companies like Adobe, Microsoft and L’Oreal. She shares news and musings about Flash video, web development and life in the big city on her blog, www.flashconnections.com.

Intros,

- The foods of FMS from the beginning,

-  Big Thanks to Lisa Lasrson-Kelley

- Back to work.

Link: FMS 3.5 for Absolute Beginners