Questions tagged [mediaelement]

mediaelement is an abstraction used to represent multimedia viewed by a user

mediaelement is defined as a class object in several frameworks, and encapsulates audio, video, and audio/video instances

References

863 questions
4
votes
1 answer

Register Embedded DirectShow filter

I am working on an application at the moment that plays back video with a DirectShow filter. The application is written in WPF and is using MediaElements to play the video. As long as the DirectShow filter is registered the video will play. At the…
thecaptain0220
  • 2,098
  • 5
  • 30
  • 51
4
votes
1 answer

Visual artifacts when using MediaElement to play .mp4

I was looking to play some videos using WPF's MediaElement control, so as a starting point I took some sample XAML code from WPF4 Unleashed (page 661 if you want to look it up).
Borgleader
  • 15,826
  • 5
  • 46
  • 62
4
votes
1 answer

MediaElement.js video player: Display time based on outside data?

I've got a MediaElement.js player with a video loaded into it, and I have a (database-driven) function which, given a time offset within that video, gives me the actual real-world time at which that part of the video represents. I.e., if the video…
DanM
  • 7,037
  • 11
  • 51
  • 86
4
votes
1 answer

WPF MediaElement - image won't update when video is Paused and Position is reset

I am using a WPF MediaElement to play a video. While the MediaElement is Paused, I set the Position to another point in the video. I would like the video image in the MediaElement to refresh to reflect the new position. But it will not update the…
LT Dan
  • 241
  • 4
  • 16
4
votes
1 answer

Resizing a MediaElementjs video that is loaded dynamically

So I have a video, that I load into the page with jQuery's .load(). Here's the website where you can see the problem in the 'vidéos' section : http://guillaumep.com/. Here's the video tag I have to use :
4
votes
2 answers

WPF: Video colors in MediaElement different from Windows Media Player

I have noticed (on my Vista 64bit machine) that a video being shown in a WPF MediaElement has different colors than when being played in Windows Media Player. Inside the MediaElement, the video has a slightly desaturated look with lower…
Roland Weigelt
  • 123
  • 1
  • 8
4
votes
1 answer

How can I add a Image / DIV on playing HTML 5 Video (like Youtube Advertisement)?

I use the MediaElement.js HTML 5 Video Player and I want to add a Advertisement (like Youtube Add) over my Videos between the playing time (like: the add fadein at 0:20s and fadeout at 0:30s - add visible: 10s). Did someone do something like…
Kamil
  • 79
  • 7
4
votes
1 answer

wpf application for video broadcasting

I have a WPF application for broadcasting video using Microsoft.expression.encoder and framework 4.0, but i got a delay of 15 sec while broadcasting.Is there any suggestion to reduce the delay while broadcasting. below is the Code using…
Anoop Mohan
  • 329
  • 1
  • 2
  • 13
4
votes
1 answer

Global MediaElement that continues playing after navigating to other page

I am using a MediaElement to play music in my metro app. I want the Music keeps playing even if I navigate to another Page. In the following Thread that question was asked…
4
votes
4 answers

Binding MediaElement to slider position in WPF

Tried binding Maximum value of slider to media element's duration and binding slider's current value to the position of media element, but but for some reasons it doesn't. I want the slider to move it's thumb while the video is playing.
HomeMade
  • 552
  • 4
  • 10
  • 21
4
votes
1 answer

playing two videos simultaneously

I need to play cyclically two videos (each is 15 seconds length) simultaneously in my app. And time by time I need to change opacity of one video (in DoubleAnimation), to let it appear above another video. Playing two videos need for syncronization…
ibogolyubskiy
  • 2,271
  • 3
  • 26
  • 52
3
votes
2 answers

How to stream video, with MediaElement, from a database, in chunks

I have a MediaElement that plays video. I have my video stored, in binary, in my SQL Server database. The way this works out for me is that the Silverlight app reads ALL the binary data from a web service. The web service returns a byte[] that I…
Nicolai
  • 2,835
  • 7
  • 42
  • 52
3
votes
0 answers

MediaElement takes too much time during loading

i am new to wpf. i am using MediaElement for display video from web. Everything is works well Except it takes too much time before loading. i use following code for set source and play the video Path_MediaPlayer.Source = new Uri(_videoPath,…
Rupesh
  • 7,866
  • 11
  • 41
  • 58
3
votes
1 answer

WPF Playing and Stopping multiple MediaElements

I've a question about multiple MediaElement in WPF. I want to play only one MediaElement again and again at the same time, until the audioindex changes. The soundsource is only a short word so i'll repeat/loop it. But the problem is, that it stops…
janus
  • 31
  • 3
3
votes
1 answer

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!
Steven Rogers
  • 1,123
  • 3
  • 16
  • 27