Mikey
Mikey

Reputation: 2837

What is the best way to stream video via a website built with ASP.NET?

I am looking for everyone's opinion on what is the best way to stream video from a website built with ASP.NET. Some notable items include:

I thought that Silverlight might be a good way to go, but I would greatly appreciate everyone else's opinions (please include pros/cons if you can).

Thanks!

Upvotes: 0

Views: 1371

Answers (2)

Henk
Henk

Reputation: 704

I would use the asp:mediaplayer, which is in fact Silverlight.

Upvotes: 0

Kon
Kon

Reputation: 27441

Some obvious options come to my mind:

  • Flash - it's a popular industry-wide standard, but isn't native to Microsoft's .NET Framework.

  • Silverlight - implementation and consumption of it favors .NET developers, but, while it's slowly picking up steam, it's not a widely-accepted standard yet and is greatly overshadowed by Flash's seniority and popularity.

EDIT: Being the .NET developer that I am, I'd go with Silverlight in a heartbeat.

Upvotes: 5

Related Questions