If you don't get an answer here,you might look into WMP 11 SDK.It lets
users modify the player,get these at:
http://msdn.microsoft.com/en-us/windows/bb190307.aspx
"Liu" wrote:
> How do I control the playback of WMV so it does not start at the beginning of
> the video but at a specific time or marker (created using Windows Media File
> Editor)?
> For example I have video play automaticall from web with the following code:
> How can I make it play from a certain time of the video by modifying the
> code below?
> THANKS,
>
>
> <%
> Dim videoname, coursecode, width, height
> videoname = "filename.wmv" '
> width = "896"
> height = "565"
> %>
>
> <object id="MediaPlayer1"
> width=<%=width%> height=<%=height%>
> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
> type="application/x-oleobject">
> <param name="URL"
> value="mms://<%=serverloc%>/serverNameHere/<%=coursecode%>/<%=videoname%>"
> valuetype="ref">
> <param name="rate" value="1">
> <param name="balance" value="0">
> <param name="currentPosition" value="0">
> <param name="defaultFrame" value>
> <param name="playCount" value="1">
> <param name="autoStart" value="-1">
> <param name="currentMarker" value="0">
> <param name="invokeURLs" value="-1">
> <param name="baseURL" value>
> <param name="volume" value="50">
> <param name="mute" value="0">
> <param name="uiMode" value="full">
> <param name="stretchToFit" value="0">
> <param name="windowlessVideo" value="0">
> <param name="enabled" value="-1">
> <param name="enableContextMenu" value="-1">
> <param name="fullScreen" value="0">
> <param name="SAMIStyle" value>
> <param name="SAMILang" value>
> <param name="SAMIFilename" value>
> <param name="captioningID" value>
> <param name="enableErrorDialogs" value="0">
> </object>
>
>