Advanced Forum Search Results
-
Expression Encoder comes with a bunch of nice templates for video player. You can also get plugin for silverlight streaming and Encoder can publish your videos using the template of your choice.
http://streaming.live.com/
-
How can we find the required hardware specs and bandwidth to serve silverlight videos. Is there any sample calculation out there
for example:
with single machine (quad core, 8gb ram, T1 line) how many concurrent users watching videos can be served? And how can I calculate the load under which system would be running.
-
You need a web service if you want to do processing on the server.
http://silverlight.net/Learn/videocat.aspx?cat=2#HDI2WebServices
Or use open file dialog to read file and do the processing on client.
http://www.silverlightexamples.net/post/Open-File-Dialog-in-Silverlight.aspx
You can also copy file in Isolated space before processing ...
-
When I go full screen in silverlight, video always opens in Primary minotor even if browser windows is in second monitor. I tried flash videos on msn.com and they open in the same monitor where my browser windows is.
Secondly, when video is running in full screen on primary monitor, if I click anything on other monitor, SL goes out ...
-
I have a textbox in a tabcontrol. Every now and then controls inside tab stops responding. I have a texbox and listbox in tabcontrol. In the begining they work, but after sometime they stop responding. If I click on listbox, nothing happens. Last selected remains selected. I click in textbox nothing changes. Dont get ...
-
If you set SelectedIndex of ListBox in code when listbox is bound to ObservableCollection, it does not work.
ObservableCollection<Person> parents = new ObservableCollection<Person>();
parents.Add(new Person { Name = "Jack", Age = 35 });
parents.Add(new Person { Name = "Peter", Age = 40 ...
-
I have been working fulltime on Silverlight from last couple of months to developan application. I had to use many work arounds for bugs I found during the process. I am disappointed to see that almost all the bugs I found in SL Beta 1 are still there in SL Beta 2. Unfortunately even the work arounds I was using does not work anymore.
Just tried ...
-
I noticed if you close Visual Studio after adding reference and start again, warning messages disappears. Anytime you add/update reference it shows up but after restarting VS it goes away.
I am moving my application to Beta 2 and interestingly I still get 2 warnings after adding/updating service reference. Althought one of them is different ...
-
I was playing around with listbox in Beta 2 and noticed if you add same items twice it behaves weired. Below is the code I tried. If you click button once it will add frour items in the listbox. Now if you click button again, same four items gets addedd. Now if you select second item in the listbox you will see 6th item get selected. ...
-
Let me add a little more confusion :)
I actually have two listboxes and MediaElement in U1. Frist listbox has list of topics. When you select a topic second listbox shows list of lessons. When you click a lesson, it plays the video for that lesson.
When app starts it automatically selects first topic in the list and populates lessons in second ...