Advanced Forum Search Results
-
Thanks Zain! That worked out great. Thanks again.
-
Thanks, could you please provide me with some sample code? I need to know how I would parse the "mediaposition" string and set it as the timespan for the Mediaelement.position.
-
Hi,
I am wondering how I could use a query string to set the position of a video in a mediaelement? I want to use a Uri that contains an ID for the video and the aforementioned query string to set the position of the video. http://www.silverlight.net/Default.html?id=vidID&mediaposition=130
In the example link, the ...
-
Thanks for that. Also, can you tell me how i would set the mediaelement source to the Uri after "m="?
-
Hi,
I am wondering how I would go about passing a query param and have it be set as the MediaElement source?
Here is a example of what im looking for:
http://www.example.com/default.html?m=http://www.examplevideo.com/video.wmv
http://www.example.com/default.html?m=video.wmv
I am going to be using a silverlight media ...
-
Hi Bryant,
Thanks for your answer, If you wouldnt mind, can you show me how i would wire it all up in XAML? Here is the code for my php page that generates the ASX code.
http://computerpro23.dreamhosters.com/silverlight/playlistgenerator.txt
-
Hi,
I am wondering how one would go about populating a listbox with the title of the video. Or perhaps someone could recommend an alternative to using an ASX playlist as a source?
I am currently working with a dynamically generated asx playlist, which is created by reading a directory on my server (which is dreamhost) using php. ...
-
Hi,
I need some help, i can't seem to get my media player to display the total video duration in hour, minutes and seconds.
Here is my code behind in C#
1 _duration = _media.NaturalDuration.TimeSpan;
2 tbTotalTime.Text = string.Format("{0:00}:{1:00}:{2:00}", (_duration.Hours *60) + ...