Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - MediaElement using MediaClock

 
 
Old 03-17-2006   #1 (permalink)
smolyn@gmail.com


 
 

MediaElement using MediaClock

I'm trying to use a MediaElement to play a video, to which I'm
connecting a Slider as a progressbar/scrubber.

Video would work fine with the simple MediaElement controls, but now
that I'm using a MediaClock, I can't seem to get any video.

Here's what I have-- a file dialog is popped up and I want the
MediaElement to be sourced to that chosen file. Worked fine when I
used MediaElement.Source, but going through the MediaTimeline doesn't
seem to work.

private void OpenFile(object sender, EventArgs e)
{
Microsoft.Win32.OpenFileDialog ofd = new
Microsoft.Win32.OpenFileDialog();
ofd.Filter = "Video
Files|*.AVI;*.WMF;*.WMV;*.MPG;*.MPEG|All Files (*.*)|*.*";
bool? success = ofd.ShowDialog();
if (success != null && (bool) success)
{
Uri source = new Uri(@"file:///" + ofd.FileName);
MediaTimeline mt = new MediaTimeline(source);

MediaClock mc = mt.CreateClock();
videoDisplay.Clock = mc;
mc.CurrentTimeInvalidated += new
EventHandler(mc_CurrentTimeInvalidated);
mc.Controller.Begin();
}
}

Thanks!
-greg


My System SpecsSystem Spec
 

Thread Tools



Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46