We're developing an ASP.NET MVC application that involves playing videos. We decided to adopt HTML5 - in our context we deemed it OK to ask our users to upgrade their browser if necessary.

I'm a Mac person who learned ASP.NET at work - my setup at home consists in a brand new, supercharged Mac mini running Parallels 7 with Windows 7 + VS2010 SP1. Performance has been great so far.

Except for one thing. When playing my videos (720p .MKV files converted to MP4, webm & ogg to ensure browser compatibility) on my VM with Chrome, I experience a very low framerate. Quite choppy - anything but smooth, really.

A couple of tests I did:

  • Ran the project on my PC at work. Worked super smoothly.
  • Played that same video on my VM with chrome, this time outside of VS2010's default development server ( > plain HTML page). Worked super smoothly.

I realize this is a pretty specific situation, but I'm wondering if anyone with the same setup ever experienced the same issue? Or, maybe, would be willing to test it out on their machine and see how it goes?

I guess I'll try my luck using IIS or IIS express instead of VS2010's development server.

link|improve this question

Solved my problem. It seems the computer was lagging from having to stream the video server-side while playing it at high resolution client-side. A switch to IIS Express resulted in a significant performance boost on the first point. Allocating more video memory on my VM chieved to solve the problem. – guidupuy Jan 30 at 0:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.