(X) Hide this Join our next live webcast on December 15th, 10 am PDT - Building a Silverlight 4 application end-to-end. Presenter: Gill Cleeren
Check the webinar agenda | Register for the webinar
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 8 results for Silverlight Media Framework.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Silverlight Show  on  Oct 25, 2010 (1 month ago)
    Michael Scherotter demonstrates how to add a download progress bar for the Microsoft Silverlight Media Framework player.

    Source: Synergist

    One of my customers has been using the Microsoft Silverlight Media Framework player for their Business-to-Business media sharing portal and wanted to add a download progress bar behind the scrub bar. I was able to show them how to do this with a combination of template binding, re-templating the SMFPlayer and Timeline classes and subclassing the Timeline class.

    Follow us on twitterWe tweet all news and content updates - follow us on Twitter! 



  • Silverlight Media Framework Now With Windows Phone 7 Goodness

    0 comments  /  posted by  Silverlight Show  on  Oct 14, 2010 (1 month ago)
    The guys from the Silverlight team announce that Silverlight Media Framework 2.2 is now available and includes full support for Windows Phone 7.

    Source: Silverlight Team Blog

    The open source Silverlight Media Framework (SMF) enables developers to quickly deploy a robust, scalable, customizable player for IIS Smooth Streaming delivery. The SMF builds on the core functionality of the Smooth Streaming Client and adds a large number of additional features, including an extensibility API that allows developers to create plugins for the framework.

  • 0 comments  /  posted by  Silverlight Show  on  Jul 08, 2010 (4 months ago)
    Tim Heuer announces that the Silverlight Media Framework v2 has been released on Codeplex and demonstrates how to integrate it with Windows Live Writer.

    If you aren’t familiar with it, it is a Silverlight framework encapsulating the best practices for media playback for Silverlight applications.  It is both a framework and, in v2, they also provided compiled simple player XAPs that you can just drop in HTML.  If you are building apps, you’ll want to take a look at the framework in more detail, but if you want a solid media player experience grab the players too.

  • 0 comments  /  posted by  Silverlight Show  on  May 10, 2010 (6 months ago)
    In this article Ben Rush explains the basic elements of Silverlight Media Framework (SMF) and demonstrates how you can integrate SMF into your own player projects.

    I’ll show you how to use the logging, settings, and event-handling features of SMF. Finally, I’ll create a player application that displays suggested videos for further viewing when the current video ends.

  • 0 comments  /  posted by  Silverlight Show  on  Apr 30, 2010 (7 months ago)
    In this episode of Silverlight TV, Tim Heuer demonstrates how to use the Silverlight Media Framework (SMF) to create a nice media experience akin to what has been demonstrated through the 2010 Winter Olympics and Sunday Night Football players.

    Tim also shows how he extended the SMF implementation and created a player to suit his specific needs (including not using DVR, among other features). He cracks the code open and shows how he extended the SMF to add custom features so the video does not start until it has a chance to buffer (about 3 seconds). Tim also added the ability to pass a parameter to the SMF player to indicate if it should automatically load the video or if the video should use smooth streaming.

  • 0 comments  /  posted by  Silverlight Show  on  Mar 08, 2010 (8 months ago)
    Ola Karlsson has published this post in which he shares his experiences with Smooth Streaming development.

    Over the last year, a rather large part of my development work has included working with IIS Smooth Streaming, especially in relation to Silverlight. When I started looking at Smooth Streaming, about a year ago, there were not many places around the web where you could find Smooth streaming development related resources. And although the pictures is somewhat better today, there’s still not a whole lot of good material around, so I thought I’d try and putt together some posts sharing my experiences with Smooth Streaming development. 

  • 0 comments  /  posted by  Silverlight Show  on  Feb 11, 2010 (9 months ago)
    If you aren’t aware of the Silverlight Media Framework, you should definitely take a look at this post of Tim Heuer.Image

    You see, the SMF itself is essentially a set of controls…but not an ‘app’ itself that you can just consume the binary.  What I did was basically create a new Silverlight application myself with one simple element: Player.  This way I could implement what I needed for my use.  The first thing I wanted was to have a simple XAP that I’d be able to load parameters in…very much like we did for SL Video Player on codeplex.  To make essentially the player have a flexible use model.  I could host the player anywhere and just feed it media to play.

  • 1 comments  /  posted by  Silverlight Show  on  Jan 25, 2010 (10 months ago)

    In this short post Corey Schuman talk about the SimpleEventArgs class in Silverlight and why you should use it.

    Have you ever been in a scenario where you just want to pass an object through an event the EventArgs without having to create custom EventArgs for each type of event?  SimpleEventArgs solves this by using generics, and asks only for the class.  This one class has saved me countless amounts of time by not having to code up custom EventArgs.