It's not possible to use Frontpage to generate what you said, but based on your last comment maybe you just described it incorrectly.
To embed a player in the page is pretty simple, but the file still downloads to the user's computer (to the temp folder) and you had said you didn't even want that (which is, for obvious reasons a we bit tricky).
If you just wanted it embeded instead of lauching a player you can use this code:
Code:<object id="MediaPlayer1" width=180 height=200
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" align="middle">
<param name="FileName" value="Server/file">
<param name="ShowStatusBar" value="True">
<param name="DefaultFrame" value="mainFrame">
<embed type="application/x-mplayer2"
pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/"
src="Server/File" align="middle"
width=176
height=144
defaultframe="rightFrame"
showstatusbar=true>
</embed>
</object>
Change the filename value to a relative path to the file.