我对讲稿进行了记录,我希望让用户在录音中某个具体时间开始录音,例如在开始时间之后12.5秒。 利用下面的样本代码,我如何能够做到这一点?
<audio id="player2" src="/player/media/AirReview-Landmarks-02-ChasingCorporate.mp3" type="audio/mp3" controls="controls" preload="preload">
</audio>
<script>
var player = $( audio,video ).mediaelementplayer(
{
// the order of controls you want on the control bar (and other plugins below)
features: [ playpause , progress , current , duration , tracks , volume , fullscreen ],
audioWidth: 300,
// enables Flash and Silverlight to resize to content size
enableAutosize: true,
startVolume: 0.7,
success: function(player, node) {
$( # + node.id + -mode ).html( mode: + player.pluginType);
}
}
);
</script>