when a web application serves a video file, is it stream automatically? what options are there?
views:
24answers:
2
+1
A:
Your question is vague. The behavior you get will depend on what Content-Type
header your "web application" (or container) gives your file.
Different types will do different things depending the browser.
http://en.wikipedia.org/wiki/Internet_media_type
If you want to check what headers your application is sending, use Firefox + Live HTTP Headers.
Stefan Kendall
2009-12-14 22:58:14
A:
By default, video files are sent from IIS to clients in burst mode, at the highest bandwidth that the connection can support.
There is an extension for IIS that provides support for streaming and bit rate throttling:
http://www.iis.net/extensions/BitRateThrottling
It support many media types, but not all of them--although it is extensible.
RickNZ
2009-12-15 02:12:24