/* FediMusicPlayer - An HTML5 + Javascript Music Player * Copyright (C) 2023 Anon <@Anon@yandere.cc> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ /* Each list in the musicList should contain 5 strings as follows * 0: Track title * 1: Artist name * 2: Track length * 3: Path to the music file * 4: Path to the art file */ const musicList = [ [ "Declare War on All Vocaloid", "Sukone Tei", "05:53", "media/declare_war_on_all_vocaloid.opus", "art/declare_war_on_all_vocaloid.png" ], [ "Chains", "Sukone Tei", "05:46", "media/chains.m4a", "art/chains.png" ], [ "Verheerender - LOYALTY", "Azur Lane", "01:45", "media/loyalty.opus", "art/loyalty.jpg" ], [ "True Love Restraint", "Len Kagamine", "03:35", "media/true_love_restraint.mp3", "art/true_love_restraint.jpg" ], [ "Tei", "Sukone Tei", "03:58", "media/tei.opus", "art/tei.png" ], [ "iNSaNiTY", "Kasane Teto + Namine Ritsu", "04:55", "media/insanity.mp3", "art/insanity.png" ], [ "You’re Seriously Mad? I’m Not Mistaken Here?", "MAYU", "03:50", "media/youre_seriously_mad.flac", "art/your_seriously_mad.png" ], [ "Psychotic Love Song", "Sukone Tei", "05:02", "media/psychotic_love_song.flac", "art/psychoticlovesong.png" ], [ "Rotten Girl, Grotesque Romance", "Hatsune Miku", "04:10", "media/rotten_girl.mp3", "art/grotesquromance.png" ], [ "Monopolizing Romance", "Hatsune Miku", "03:36", "media/monopolizing_romance.flac", "art/monopolizing_romance.png" ] ]