Click here to Skip to main content
15,892,746 members

Comments by TABiSH777 (Top 14 by date)

TABiSH777 8-Jan-19 8:00am View    
Hi, its really difficult to answer you from the detail that you have provided, but there can be following issues,
1) please check names & their convention, & whether you are adding in the same collection or not.
2) please check if you are even initializing that observable collection or not, other wise it may be giving object reference... error.

Basically you need to put a debugger over your observable collection property & check whether or not its been even called or not at the time of adding.
TABiSH777 7-Jan-19 8:05am View    
Thanks Mr. David,
I understand your suggestion (even i have did some workaround it but its not manageable as user can rewind play pause everything on the video)
Also i do not want anyone to architect my entire product.
Just to answer my specific query. i.e.
Q) Can we upload live stream without converting it to small chunks over Azure Media Service-LiveStream & play it at the same time using stream end point URL?

Same thing is possible using a third party tool named Wirecast. but i want it done using code.

Hope you understand.
TABiSH777 19-Dec-18 2:18am View    
Hi, Did you try creating an observablecollection property in viewmodel that you can bind to the item source of your grid control? and a string property that can be binded to your TePatLname text, also a command in view model for your button instead of click? If not, please use command in your button, on execute of that command the value of string property (for textbox) will be passed as parameter to get values from sp & then you can directly assign it to your observablecollection property (for grid control).
TABiSH777 11-Dec-18 2:16am View    
Have you tried giving a new seed while initializing Random(seed)? please try giving a new seed no. at each interval. you can do so by getting numeric out of Guid. i.e seed= Regex.Match(Guid.NewGuid(), @"\d+").Value; then Random(Convert.ToInt32(seed)); this will gave a manual seed to random rather than it taking a new seed at each time slice.
TABiSH777 16-Jan-18 4:34am View    
What exactly is Bootstrapper in your project?