Just found a "pre-solution":
* Open
https://tiddlywiki.com/static/Audio.html* Right click on the page -> Inspect element -> open Console tab
* Paste this code and press Enter:
var players = document.getElementsByTagName('audio');
for(var i=0; i < players.length; i++) {
players[i].nextPlayer = players[i+1];
players[i].addEventListener('ended', function() {
this.nextPlayer.play();
});
}
// After the last song, jump to the first (repeat)
players[players.length-1].nextPlayer = players[0];
* When it ends, second is started
I'm sure I will do this as a plugin, or if @Jermolene is interested in it, it will be a pull request.