Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
459 views

MediaElement disrupting Audio Podcast (MediaPlayer) in WP7

I've had an app fail in the Marketplace due to my audio MediaElement not accounting for background music. Okay. So I've gone about scouring everything and figuring out how account for this: Don't ...
7
votes
1answer
667 views

Mediaelement repeatbehavior fails when binding to xpath

I'm trying to get video's to repeat forever using MediaElement. I found the code below at http://msdn.microsoft.com/en-us/library/ms741866.aspx and it works fine. <!-- The MediaElement control ...
6
votes
2answers
993 views

How do I determine if MediaElement is playing?

Seems simple enough, but I cannot figure out any way to determine what the state of a MediaElement is. There are various properties for some states (such as IsBuffering) but I can't find any for ...
5
votes
3answers
1k views

YouTube on Windows Phone with MediaElement

This blog post suggests that it might be possible to play YouTube videos with the Silverlight MediaEelement directly. <MediaElement HorizontalAlignment="Left" VerticalAlignment="Top" ...
5
votes
2answers
3k views

Show first frame of video in WPF MediaElement

I have a WPF-application with a MediaElement which I use to run a video. I don't want the video to autoplay when loaded, so I set the LoadedBehavior to Manual. <MediaElement ...
5
votes
1answer
8k views

How to stream Webcam in WPF?

Can I stream a live video in WPF application from my web cam? If yes, then How?
4
votes
3answers
276 views

get current playing song list windows phone 7

I want to display the list of songs in current playing lists, If users play music in my app, I could know what playlist is playing but if they were playing in zune app then switch to my app, my song ...
4
votes
1answer
215 views

WPF media formats

Does WPF have built-in support for any audio and video formats? I'm going to be using the MediaPlayer and MediaElement classes to build a little media player, and for now, I don't want to have to deal ...
4
votes
1answer
1k views

How to Set MediaElement Position Dynamically in Silverlight?

I am trying to set the Media Elements position by following code: MediaElement musicPlayer = new MediaElement(); musicPlayer.Position = new TimeSpan(0, 0, 30); ...
4
votes
6answers
3k views

Any success rendering HDVideo with WPF MediaElement? Is there a better video player option for WPF?

I'm using a WPF MediaElement to render HD video in an application. When the size of the MediaElement gets over about 300 units square the video stutters and the computer is nearly totally ...
3
votes
1answer
83 views

Play / pause mp3 files in Windows Phone MVVM application

I am trying to play small mp3 file in my Windows Phone 7.5 MVVM application (MVVM Light is used). I am trying: 1st. To use SoundEffect: SoundEffectInstance instance; SoundEffect effect = ...
3
votes
1answer
54 views

How to Cast the DisplayObject into MediaElement in as3?

Is it possible to Cast the DisplayObject into MediaElement.Am trying to add the DisplayObject into the MediaContainer, but I got the following error: -1067: Implicit coercion of a value of type ...
3
votes
1answer
93 views

Silverlight Supported Codecs

Here is a list of codecs that are supported by Silverlight MediaElement control. Question: Do I need to install these codecs on the client machine Or They are natively supported by Silverlight? ...
3
votes
1answer
407 views

24/7 computer, problem with mediaelement WPF, turns black after 3h

I have a computer that are going to run a WPF program 24/7 and play a playlist of images and videos. When I start my program everything works perfectly, but after maybe 2-3h the mediaelement windows ...
3
votes
1answer
368 views

How to set a usb camera as a source to wpf MediaElemt in VS2010 in c#?

I have a Windows WPF application and I want to stream a video from my usb camera using MediaElement control. Is it possible to set usb camera as source to MediaElement? I'm using VS2010 framework 4.0 ...
3
votes
1answer
474 views

What Types of Video Can MediaElement Play?

I'm looking for detailed information on what decides the formats of media that MediaElement can play, I can't seem to find any definitive source. I've read somewhere that if it can be played in WMP ...
3
votes
3answers
403 views

MediaElement - How to get FPS (Frames Per Second)?

Is there an way to get FPS of video?
3
votes
1answer
983 views

Silverlight MediaElement progress

I am trying to create a custom media player in Silverlight. I am working on the Progress Bar. I want the progress bar to display the current Download Progress as well as the Current Position of the ...
3
votes
1answer
306 views

Silverlight MediaElement Position Property Weirdness

I have a MediaElement that is reporting its position incorrectly and weirdly, but consistently. It seems like when it gets to the last second of the audio (and it's always the last second, regardless ...
3
votes
4answers
2k views

Change Source in MediaElement (SILVERLIGHT)

I would like to change song on my MediaElent from track1.mp3 to track2.mp3. And here is the code: MyMediaElement.Stop(); Uri u = new Uri("track2.mp3", UriKind.Relative); MyMediaElement.Source=u; ...
3
votes
1answer
322 views

WPF, how to determine when a MediaElement has finished playing the movie?

I am showing a movie on my application, and i want the application to only play it once. And when its done playing i want to enable some buttons (play, rewind, watch again etc...) but is there any way ...
3
votes
4answers
2k views

Round window playing movie using WPF

Is it possible with WPF to create a window that has the shape of a circle and uses a playing movie as the background?
2
votes
1answer
89 views

How to know if WPF MediaElement is actually playing a video?

I'm developing a WPF based application that must play some videos during its execution. To do this I was using the MediaElement class, however just after I made the first tests with my application, I ...
2
votes
2answers
325 views

Why is the MediaElement not playing a MediaStreamSource (in SilverLight)?

When I try to stream sound from my microphone, I need to get it through a MediaStreamSource. Therefore I first need to implement a MediaStreamSource for the pcm waveformat I get from my Microphone. ...
2
votes
1answer
73 views

Rolling custom control buttons

do you have a reference or tutorial on customizing skins graphics/css for mejs? here's what i've hacked on: i copied the mejs-ted block in the mejs-skins.css file and renamed its elements to ...
2
votes
1answer
363 views

Windows Phone 7 - Playing streaming video

On WP7 platform (using C# and Silverlight) I try to play an online stream into a MediaElement... Here is the C# code: (...) WebClient wc = new WebClient(); wc.OpenReadCompleted += ...
2
votes
1answer
116 views

Playing a sound in Silverlight with MediaElement and Caliburn Micro

How can I play an MP3 in Silverlight using Caliburn Micro? The MediaElement's "play()" method needs to be executed based on a boolean variable in the ViewModel. Thanks in advance!
2
votes
1answer
246 views

Start and stop MediaElement at specific times

I am change an app over to WPF, it plays audio and video and pictures all based on timed events .. I used "string MciCommand = string.Format("play frames FROM {0} to {1} {2}"" , before. I have been ...
2
votes
1answer
98 views

how to use MediaHistory.NowPlaying Property to get current playing list in windows phone 7

how can I get the current playing list that is playing by "music + video" app. The only thing I can get so far is the current playing song, but users will have no idea what is the next song or what ...
2
votes
0answers
198 views

Silverlight MediaElement progressive download timeout?

I have a MediaElement inside a Silverlight application that runs out of browser and with elevated trust. To play a video the MediaElement.Source property is set to a URL ...
2
votes
1answer
63 views

Video html5: how to get currently played source

in a <video> tag, how can I know the currently played source URL with JQuery if there are many sources (different codec)? I tried with the src property, but it's empty. Thanks! Pv
2
votes
0answers
363 views

Silverlight: Can MediaElement play from a downloading stream?

I am trying to find out whether it is possible to play a video in a MediaElement from a stream which is still downloading, rather than waiting for it to finish? I have researched the topic pretty ...
2
votes
2answers
374 views

How to loop music in WP7 BGM?

private void button1_Click(object sender, RoutedEventArgs e) { MediaElement Lala = ((MediaElement)App.Current.Resources["backgroundMusic"]).Stop(); if (Lala == true) { ...
2
votes
1answer
361 views

WP7 MediaElement download problems

I'm running into problems on the WP7 with MediaElement downloading a 128kbps mp3 stream from a web service for a music player app that i'm working on. The file downloads correctly when the wp7 is on a ...
2
votes
2answers
380 views

Change mediaelement Source Based on Actions

I have a WPF 4 and VB.net 2010 project. I am playing videos in a single mediaelement. This is what I need to do: When the window first opens, I have the first video play just fine. However, it is ...
2
votes
3answers
605 views

Problem with MediaElement Windows Phone 7

I'm creating a little app to help me better understand how to play sounds on WP7 devices but I'm having a problem actually getting the sound to come out of the device. I have the following code: ...
2
votes
1answer
253 views

MediaElement in Canvas doesnt Strech to Fill

I want to view a fullscreen video and thought this works like this: <Window x:Class="test.Overlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
2
votes
5answers
211 views

Working with Windows Phone 7, how do I create a global MediaElement?

I need to create a MediaElement that will keep playing when I navigate to different pages within my app. Any ideas on how to do this?
2
votes
2answers
476 views

How to know which video formats my WPF application can play?

I have a small application that allows the playback of videos. First off, I do not disallow the user to select any particular type of file. What I want to do is make sure I can play the file the user ...
2
votes
2answers
3k views

Binding a progressbar to a mediaelement in wpf

In c#/wpf I added a progressbar and mediaelement to my window. The idea was that progressbar is displaying how much is been played in the mediaelement. I tried it with the following xaml: <Window ...
2
votes
1answer
436 views

Save MediaElement file source to isolated storage

With a MediaElement using an external source -- is it possible to play an mp3 while it's downloading, and then when it's finished downloading, save it to isolated storage for future use? If not, ...
2
votes
0answers
325 views

WPF MediaElement: SpeedRatio not working for .m4a files?

I'm working with a simple mediaplayer based on this msdn example where the user can control volume, playback speed (SpeedRatio) and seek (Position) using 3 sliders. Everything works correctly when I ...
2
votes
1answer
202 views

mediaelement position setting problem

i use this line to set my media element position OurElement.Position = TimeSpan.FromSeconds(NowPlayingParameters.Position); but it stays 00:00 why can't it jump to the position value
2
votes
3answers
258 views

Allow users to play mp3 files but dont expose them directly on the web

I want to store some mp3s in a folder wich is no public, cant be directly accessed trough the web and allow users to hear/download the songs with a browser only if they are logged in. How can I do ...
2
votes
2answers
729 views

Silverlight MJPEG viewer

I would like to consume a Motion Jpeg stream from an IP camera and ideally view it using the media element. I was hoping to find some ready made samples.
2
votes
2answers
951 views

MediaElement plays video, but no video shows

I can open a video, play it and get position and set position, but nothing shows up in the video window on one pc. The code works fine a on a couple of PCs, but doesn't work on another. Does any one ...
2
votes
2answers
1k views

How to play mp3 stream using the MediaElement class from WPF?

I wondering if the MediaElement component (from WPF) is capable of playing and buffering mp3 streams. I need play mp3 memory stream(not mp3 file) using MediaElement of WPF, if possible would you ...
2
votes
5answers
366 views

hosting silverlight media with azure

I'm considering hosting MP4s using Azure Blob storage. When azure returns a blob using a url does it include the accept-range header. Will silverlight be able to seek ahead using byte range requests ...
2
votes
3answers
2k views

silverlight mediaelement RTSP

As far as I can see silverlight only supports streaming over http even in version 2, as I understand it mms is converted to http and therefore you cannot stream RSTP (I have tried to test this and get ...
1
vote
1answer
79 views

Play Any Sound file (or at least the common audio files)

I am developing a music player in C#. For playing audio files, I have found that .NET provides many ways to play audio: Use a Microsoft.DirectX.AudioVideoPlayback via ...

1 2 3 4 5 6