FediMusicPlayer/audioPlayerPlaylist.js

88 lines
2.1 KiB
JavaScript
Raw Normal View History

2023-04-23 00:17:41 -07:00
/* FediMusicPlayer - An HTML5 + Javascript Music Player
2023-04-24 20:52:13 -07:00
* Copyright (C) 2023 Anon <@Anon@yandere.cc>
2023-04-23 00:17:41 -07:00
*
* This program is free software: you can redistribute it and/or modify
2023-04-23 00:29:17 -07:00
* it under the terms of the GNU Affero General Public License as published by
2023-04-23 00:17:41 -07:00
* 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
2023-04-23 00:29:17 -07:00
* GNU Affero General Public License for more details.
2023-04-23 00:17:41 -07:00
*
2023-04-23 00:29:17 -07:00
* You should have received a copy of the GNU Affero General Public License
2023-04-23 00:17:41 -07:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/* 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
2023-04-23 00:17:41 -07:00
*/
2023-04-19 23:47:21 -07:00
2023-04-17 20:54:28 -07:00
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"
],
[ "Youre Seriously Mad? Im 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"
]
2023-04-17 20:54:28 -07:00
]