Seamless audio loop to an arbitrary position
问题 One of the things I most love about the MOD format is the ability to loop back to any given point in the song, making it perfect for songs that have an "intro" followed by a "main loop". Of course, MP3 can't do this. Up until now, I've done things like this: <audio src="/path/to/song.mp3" onEnded="this.currentTime = 12.345;"></audio> Where the float value is the time at which the main loop starts. While this works there is a noticeable fraction-of-a-second pause as the audio restarts. I can