Asx implements the implementation code for playing music based on point-time. For friends who need to control the music playback point, you can refer to it. 1. Create an asx file
The code copy is as follows:
<asx version = 3.0>
<entry>
<ref href = http://192.168.1.200:700/IndexSnd/0006.mp3/>
<starttime value = 3:30.0//start time
<duration value=0:30///play length (30 seconds)
</entry>
</asx>
Note: After testing, it was found that it only supports lowercase and capitalization is invalid. I don’t know why.
2. Embed EMBED or Object
The code copy is as follows:
<EMBED SRC=Info.asx autostart=true ShowPositionControls=true ShowStatusBar=true />
<object id=Object1 height=64 width=260 classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6>
<param NAME=url value=Info.asx>
<param name=AutoStart value=true>
<param name=Filename value=>
<param name=ShowPositionControls value=true>
<param name=ShowStatusBar value=true>
</object>