FediMusicPlayer/audioPlayerPlaylist.js

38 lines
2.0 KiB
JavaScript
Raw Normal View History

2023-04-23 00:17:41 -07:00
/* FediMusicPlayer - An HTML5 + Javascript Music Player
* Copyright (C) 2023 <yanderefed@proton.me>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/* Each list in the musicList should contain 5 strings as follows
* 1: Path to the music file
* 2: Track title
* 3: Artist name
* 4: Track length
* 5: Path to the art file
*/
2023-04-19 23:47:21 -07:00
2023-04-17 20:54:28 -07:00
const musicList = [
2023-04-20 00:17:14 -07:00
["media/declare_war_on_all_vocaloid.opus", "Declare War on All Vocaloid", "Sukone Tei", "05:53", "art/declare_war_on_all_vocaloid.png"],
2023-04-17 20:54:28 -07:00
["media/chains.m4a", "Chains", "Sukone Tei", "05:46", "art/chains.png"],
["media/loyalty.opus", "Verheerender - LOYALTY", "Azur Lane", "01:45", "art/loyalty.jpg"],
["media/true_love_restraint.mp3", "True Love Restraint", "Len Kagamine", "03:35", "art/true_love_restraint.jpg"],
2023-04-20 00:17:14 -07:00
["media/tei.opus", "Tei", "Sukone Tei", "03:58", "art/tei.png"],
2023-04-22 23:20:56 -07:00
["media/insanity.mp3", "iNSaNiTY", "Kasane Teto + Namine Ritsu", "04:55", "art/insanity.png"],
2023-04-17 20:54:28 -07:00
["media/youre_seriously_mad.flac", "Youre Seriously Mad? Im Not Mistaken Here?", "MAYU", "03:50", "art/your_seriously_mad.png"],
["media/psychotic_love_song.flac", "Psychotic Love Song", "Sukone Tei", "05:02", "art/psychoticlovesong.png"],
["media/rotten_girl.mp3", "Rotten Girl, Grotesque Romance", "Hatsune Miku", "04:10", "art/grotesquromance.png"],
["media/monopolizing_romance.flac", "Monopolizing Romance", "Hatsune Miku", "03:36", "art/monopolizing_romance.png"]
]