Silverlight Mediaelement to play Video

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pavanip
    New Member
    • Mar 2008
    • 53

    Silverlight Mediaelement to play Video

    Hi,

    I am new to Silverlight application.I want to display video using Mediaelement tag and I used the below code to play video.
    Code:
    <Canvas>
               <MediaElement x:Name="mPlayer" Width="640" Height="480" Source="a_video.avi"/>
    
                <Button x:Name="bPlay" Background="Green" Width="100" Height="45" Canvas.Left="8" Canvas.Top="497" Content="Play" />
    			<Button x:Name="bPause" Background="Yellow" Width="100" Height="45" Canvas.Left="112" Canvas.Top="497" Content="Pause"/>
    			<Button x:Name="bStop" Background="Red" Width="100" Height="45" Canvas.Left="216" Canvas.Top="497" Content="Stop"/>			
    		</Canvas>
    And I placed that video file in Xaml folder but when i run the application i am not getting any results to play video. The steps I followed are correct or anything missed.
    Please help me how to play video using silverlight mediaelement and mention the steps to play video and where i have to place video to use it in mediaelement source property.

    Thanks in advance
    Pavani
    Last edited by Frinavale; Mar 2 '09, 02:35 PM. Reason: Added [code] tags:please post code in [code] [/code] tags
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Have you checked out this video tutorial? I think it could help you.

    Comment

    • dotneto
      New Member
      • Feb 2007
      • 36

      #3
      avi??

      Please read this or watch the proposed video.

      I don't think media element supports avi files.

      Comment

      • jamalag
        New Member
        • Sep 2011
        • 1

        #4
        I notice that this is an old post, but at the time of your posting it may not have been possible to play AVI files.

        But since Silverlight 4 (using media element and mediastreamsour ce) and the just released Silverlight 5 RC (using P/Invoke), you can play AVI files.

        But please note that the code will only run on Windows platform.

        check out my how-to articles at codeproject.com :

        Silverlight 4: http://www.codeproject.com/KB/silver...eamSource.aspx

        Silverlight 5 RC: http://www.codeproject.com/KB/silver...mSourceS5.aspx

        good luck.

        Comment

        Working...