How can I make WMV stream from a HTML page on a remote server into Internet Explorer? (Without using HTML 5 video or Flash)I use the following FFMPEG:\[code\]ffmpeg -i video.mp4 -b 2000k -vcodec wmv2 -acodec wmav2 video.wmv\[/code\]And the following HTML:\[code\]<object type="video/x-ms-wmv" data="http://stackoverflow.com/questions/14406599/video.wmv" width="640" height="360"><param name="src" value="http://stackoverflow.com/questions/14406599/video.wmv"/><param name="controller" value="http://stackoverflow.com/questions/14406599/true"/><param name="autostart" value="http://stackoverflow.com/questions/14406599/true"/></object>\[/code\]Yet the video player insists on loading the whole video before it starts to play it. How do I make it start playing when it's buffered enough?