Play Back Audio or Video with a MediaTimeline : MediaElement « Windows Presentation Foundation « VB.Net






Play Back Audio or Video with a MediaTimeline

Play Back Audio or Video with a MediaTimeline
      

<Window x:Class="Main"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="" Height="300" Width="300">
  <Window.Resources>
    <PathGeometry x:Key="AnimationPathGeometry" Figures="M 50,150 C 100,-200 500,400 450,100 400,-100 285,400 50,150" />
    <Storyboard x:Key="MatrixAnimationStoryboard">
      <MatrixAnimationUsingPath RepeatBehavior="Forever" Duration="0:0:5" AutoReverse="True" Storyboard.TargetName="BorderMatrixTransform"
        Storyboard.TargetProperty="Matrix" DoesRotateWithTangent="True" PathGeometry="{StaticResource AnimationPathGeometry}" />
    </Storyboard>
  </Window.Resources>
  <Viewbox>
    <MediaElement x:Name="mePlayer" Stretch="Fill">
      <MediaElement.Triggers>
        <EventTrigger RoutedEvent="MediaElement.Loaded">
          <BeginStoryboard>
            <Storyboard>
              <MediaTimeline Storyboard.TargetName="mePlayer" Source="clock.avi" RepeatBehavior="Forever" />
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger>
      </MediaElement.Triggers>
    </MediaElement>
  </Viewbox>
</Window>

   
    
    
    
    
    
  








Related examples in the same category

1.Media Element with wmv fileMedia Element with wmv file
2.Media element in clock modeMedia element in clock mode
3.Play wmv file with MediaTimelinePlay wmv file with MediaTimeline
4.Play wmv filePlay wmv file
5.Play video with MediaElementPlay video with MediaElement
6.Play a Media FilePlay a Media File
7.Play with MediaPlayerPlay with MediaPlayer
8.Play Audio AsynchronouslyPlay Audio Asynchronously