student87: Videodatei über Formular einbinden und abspielen

Hallo,

ich habe folgendes Problem. Ich möchte eine HTML Seite schreiben. Dort soll der Windows Media Player eingebunden sein.
Nun möchte ich einen Upload "Button" unter dem Media Player haben worüber ich eine Video Datei direkt von meiner Festplatte auswählen und abspielen kann.

Den Media Player und Formular habe ich bereits geschrieben. Nur wie kann ich den Pfad an den MediaPlayer übergeben?

Zum besseren Verständniss hier mein bisheriger Code:

<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> Multimedia Elemente im Internet Explorer </title>
<link rel="stylesheet" type="text/css" href="formate.css.css"/>
<style type="text/css">
</style>
</head>
<!-- Hintergrundbild-->
<body background="Bilder\2.jpg" text="330000" link="330000" vlink="330000" alink="330000">

<!-- Obere Tabellenzeile-->
<table border="0" width="100%" align="center" >
<tr>
<th bgcolor="#ffffff" height = "50">
<img align="right" src="Bilder\hd.gif" alt="hd">
<h1>
Media Player<b/>
 </h1>
</th>
</tr>
</table>
</br>

<!-- Navigationsleiste Anfang-->
<table border="0"  width="100%" align="right" >
<tr bgcolor="#ffffff">

<td style="text-align: center"> <u> <a href="Mein_Style_Sheet.html">Startseite</a> </u> </td>
<td style="text-align: center"> <u> <a href="Mediaplayer.html">Mediaplayer</a> </u> </td>
<td style="text-align: center"> <u> <a href="ASX.html">Link </u> </td>
<td style="text-align: center"> <u> Multicast </u> </td>
</tr>
</table>
 <!-- Navigationsleiste Ende-->
</br>
</br>
</br>
 <!-- Media Player-->
 <div align="center">
<OBJECT ID="MediaPlayer"  classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE=" http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"
width="352" height="332" standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="video\movie.mov">  <!-- Pfad-->
<PARAM NAME="TransparentAtStart" Value="true">
<PARAM NAME="AutoStart" Value="false">
<PARAM NAME="AnimationatStart" Value="false">
<PARAM NAME="ShowStatusBar" Value="true">
<PARAM NAME="ShowControls" Value="true">
<PARAM NAME="autoSize" Value="false">
<PARAM NAME="displaySize" Value="false">
<PARAM NAME="ShowAudioControls" Value="true">
<PARAM NAME="ShowPositionControls" Value="false">
<Embed type="application/x-mplayer2"
pluginspage=" http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"
src="video\movie.mov" Name="MediaPlayer"  <!-- Pfad-->
width="150" height="53" transparentAtStart="1" autostart="0"
animationAtStart="0" ShowControls="true" ShowAudioControls="1"
ShowPositionControls="0" autoSize="0" ShowStatusBar="1" displaySize="false">
</embed></OBJECT>
</br>
</br>
<!-- Button Dursuchen-->
<form action="input_file.htm" method="post" enctype="multipart/form-data">
  <p>Wählen Sie ein Video (.mov) von ihrer Festplatte aus:<br>
    <input name="Datei" type="file" size="50" maxlength="100000" accept="text/*">
  </p>
</form>
  
</table>
</body>
</html>

Vielen Dank im Vorraus