From d24fba6cfdd34989a9344bae5aad3f5e309c13f5 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 21 Sep 2022 19:39:37 -0700 Subject: [PATCH] reviewed musicplayer files --- app.py | 1 + static/js/musicplayer.js | 55 ---------------------------------------- 2 files changed, 1 insertion(+), 55 deletions(-) diff --git a/app.py b/app.py index 03cf04b..bc4b49b 100644 --- a/app.py +++ b/app.py @@ -109,6 +109,7 @@ class musicimages(db.Model): def hello(): return redirect("vgmplayer") + @app.route('/grvgm', methods=['GET']) def grvgm(): musicdata = music.query.order_by(func.random()).first() diff --git a/static/js/musicplayer.js b/static/js/musicplayer.js index 99ef865..45967a7 100644 --- a/static/js/musicplayer.js +++ b/static/js/musicplayer.js @@ -28,61 +28,6 @@ let Playing_song = false; let track = document.createElement('audio'); -//All songs list -// let All_song = [ -// { -// name: "Sewer Dungeon", -// path: "https://vgmsite.com/soundtracks/yakuza-like-a-dragon-unofficial-original-soundtrack-2020/vdyvhloczr/1-08.%20Sewer%20Dungeon.mp3", -// img: "https://vgmsite.com/soundtracks/yakuza-like-a-dragon-unofficial-original-soundtrack-2020/1-Cover.jpg", -// album: "Yakuza Like A Dragon Unofficial Original Soundtrack (PS4, PS5) (2020)", -// artists: "test", -// platform: "test", -// year: "test", -// genre: "test" -// }, -// { -// name: "second song", -// path: "2.mp3", -// img: "img2.jpg", -// album: "Yakuza Like A Dragon Unofficial Original Soundtrack (PS4, PS5) (2020)", -// artists: "test", -// platform: "test", -// year: "test", -// genre: "test" -// }, -// { -// name: "third song", -// path: "3.mp3", -// img: "img3.jpg", -// album: "Yakuza Like A Dragon Unofficial Original Soundtrack (PS4, PS5) (2020)", -// artists: "test", -// platform: "test", -// year: "test", -// genre: "test" -// }, -// { -// name: "fourth song", -// path: "4.mp3", -// img: "img4.jpg", -// artists: "test", -// platform: "test", -// year: "test", -// genre: "test" -// }, -// { -// name: "fifth song", -// path: "5.mp3", -// img: "img5.jpg", -// album: "Yakuza Like A Dragon Unofficial Original Soundtrack (PS4, PS5) (2020)", -// artists: "test", -// platform: "test", -// year: "test", -// genre: "test" -// } -// ]; - - - // All functions