vote up 3 vote down star
1

Hello all,

Does anyone know if it is possible? Does silverlight 3 support recording from the client's microphone?

flag

5 Answers

vote up -1 vote down

Fooby,

HTML and Ecmascript(javascript) are based on fundamentally slow and limiting ideas.

the core concept behind HTML is to make markup the first class citizen and all other designs second class citizens. W3 refuses to add any kind of reference/binding syntax or calculation system to their markup platform. so for example, if you have a very simple request like "make this box half as wide as that box" the possible solutions are all workaround nightmares because you can't just say something like X.Width*0.5, as that would violate W3's rules.

personally, I think it's a good idea to provide a markup system for non-programmers that avoids "confusing" computing concepts, but W3 insists that a simple system should be a first class citizen, and that programmers should be forced to think in markup terms, that more advanced functionality simply shouldn't exist, which I believe is a terrible idea that hobbles elegance and performance for more advanced designs.

also, Ecmascript is based on dynamic binding and non-type-safe syntax, which are inherently slow concepts with an unavoidable cpu and memory overhead at runtime, and which can be much harder to audit, trace, and debug in large projects. also, the subset of .NET provided in Silverlight offers far, far more elegant and effective programming interfaces than Ecmascript. though, again, I don't object to having a relatively slow, simplistic system made available to people who prefer to use it, but systems that limit performance and productivity shouldn't be the only exposed interface, the root of the system.

also, the limitations on markup and Ecmascript designs make it impossible to implement certain features in editing tools, such as code factoring/refactoring.

also, the extensions to the markup system have become very convoluted over the years as more and more complex features are shoehorned into a basic concept that really isn't compatible with them, and the result is that relatively simple layouts that can be expressed in 1k of C# code are eating up 300k of CSS, HTML, and Ecmascript. not to mention the fact that markup convolution is making compatibility harder and harder, and is driving down performance and driving up memory consumption.

so why would I need Silverlight? it's the best of all worlds: it's elegant, transparent and predictable in its designs and runtime state, it's easy to learn and use for even advanced topics, it performs very well, it's relatively easy to define and reimplement.

on the other hand, W3+Ecmascript is the worst of all worlds: convoluted, inelegant, large projects become opaque and incomprehensible, all projects are opaque and unpredictable at runtime, and meanwhile it also manages to be extremely slow and bloated.

link|flag
The question is "how to record audio in Silverlight" and you have a long answer about CSS and HTML etc – Peter Morris Oct 6 at 13:54
vote up -1 vote down

Ewww!! Silverlight? Don't use that shit...

But seriously - its stunting the advancement of the open web. Especially with HTML5, gGears, 03D, and everything, why would you even need it? Don't contribute to its critical mass!

link|flag
I'd rather see better tools like Silverlight, that are supported by the best tools (like Visual Studio) be successful instead of the lowest-common-denominator web stuff that Google slings onto the web. Besides that, HTML5 isn't a standard yet; they couldn't even decide on a video format. – wizlb Aug 20 at 4:29
vote up 0 vote down

I see,

I've been reading your blog Tim for quite some time, thank you for answering me here (thank Noldorin as well). Do you know if it's possible to combine flash's capability to perform real time audio recording in silverlight 3?

link|flag
vote up 4 vote down

Just to verify Noldorin's answer 'officially' -- it is currently NOT possible in Silverlight 3 as a plugin only. This (webcam/mic) is something we're exploring for Silverlight future versions and is a highly requested feature.

link|flag
vote up 1 vote down

It's certainly not on the What's New list for Silverlight 3, which is a complete listing of significant new features in the latest version. This would with little doubt seem to indicate the answer is no, it's not possible.

Indeed, audio (and video) recording is a feature that's been highly desired since the release of Silverlight 2, and is one of the very few respects in which Silverlight is found lacking when compared to Flash. I would imagine it's quite likely to be added as a feature of Silverlight 4, if it keeps getting the high demand from developers. I'm not sure why Microsoft hasn't bothered yet; perhaps it is simply not high on their priority list, or they're worried about the security issues (though Flash has resolved this quite well).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.