I continue to listen to Malcolm Gladwell's "The Tipping Point", a book which on the whole I find very interesting and thought provoking. "Mavens" are experts in a subject and are willing and eager to share their knowledge. "Connectors" are people who effortlessly and intuitively bring people together, and "Salesmen" are folks who can translate difficult subjects in a way that "sticks".
Along with sharepoint services, Windows 2003 server also includes Windows Media Services. Media Services provides for streaming audio and video over an intranet and is handy when there are large videos which you would like to make available (such as a speech by the company president, or training videos). More information about the various flavors of Windows Media Services and the version of Windows Server required is available here: http://www.microsoft.com/windows/windowsmedia/forpros/server/version.aspx.
I was able to install Windows Media Server on my sharepoint server with little difficulty. I created a separate "web" for it as a virtual directory with a different port (I used port 90).
Windows Media Server calls for a file extension of "ASF" but I've found that (so far) I can rename WMV video files to ASF and they will work.
Microsoft provides a variety of free utilities for working with and converting video files on their windows media site, here: http://www.microsoft.com/windows/windowsmedia/forpros/encoder/utilities.aspx. There are also some good free utilities including this one: http://www.any-video-converter.com/.
Any file located in the directory pointed to by the media web site will stream. All you need to do is reference it using "mms://" instead of "http://". This example will bring up the Microsoft Media Player on the client and play streamed video from the server: mms://entweb2:90/welcome_speech.asf.
If you would rather have the video window appear in the contents of a web page, then you need to use the media player active X control. This is not difficult. Following is an ASP test page that I placed in a folder in my sharepoint IIS folder that plays the same file in a media window which has been embedded in an html table:
This ASP causes an embedded video window to appear in an internet explorer web browser. As you can see, the page can also include HTML elements. I'm thinking that this might be an ideal candidate for a web part.
Along with sharepoint services, Windows 2003 server also includes Windows Media Services. Media Services provides for streaming audio and video over an intranet and is handy when there are large videos which you would like to make available (such as a speech by the company president, or training videos). More information about the various flavors of Windows Media Services and the version of Windows Server required is available here: http://www.microsoft.com/windows/windowsmedia/forpros/server/version.aspx.
I was able to install Windows Media Server on my sharepoint server with little difficulty. I created a separate "web" for it as a virtual directory with a different port (I used port 90).
Windows Media Server calls for a file extension of "ASF" but I've found that (so far) I can rename WMV video files to ASF and they will work.
Microsoft provides a variety of free utilities for working with and converting video files on their windows media site, here: http://www.microsoft.com/windows/windowsmedia/forpros/encoder/utilities.aspx. There are also some good free utilities including this one: http://www.any-video-converter.com/.
Any file located in the directory pointed to by the media web site will stream. All you need to do is reference it using "mms://" instead of "http://". This example will bring up the Microsoft Media Player on the client and play streamed video from the server: mms://entweb2:90/welcome_speech.asf.
If you would rather have the video window appear in the contents of a web page, then you need to use the media player active X control. This is not difficult. Following is an ASP test page that I placed in a folder in my sharepoint IIS folder that plays the same file in a media window which has been embedded in an html table:
<table>
<tr>
<td>Welcome to the Media Page</td>
</tr>
<tr>
<td>Welcome Speech</td>
</tr>
<tr>
<td>
<OBJECT ID="MediaPlayer1" WIDTH=320 HEIGHT=240
CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/
nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<Param Name="FileName" Value="mms://entweb2:90/welcome_speech.asf">
</OBJECT>
</td>
</tr>
</table>
This ASP causes an embedded video window to appear in an internet explorer web browser. As you can see, the page can also include HTML elements. I'm thinking that this might be an ideal candidate for a web part.