From c8537ee711a61e1953c16f4115f8aea14d4413b1 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 11 Feb 2024 00:18:45 -0800 Subject: chore: bump dependencies --- src/app/page.tsx | 62 +++----------------------------------------------------- 1 file changed, 3 insertions(+), 59 deletions(-) (limited to 'src/app/page.tsx') diff --git a/src/app/page.tsx b/src/app/page.tsx index 457610d..106193d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,7 @@ "use client"; import React, { useEffect, useRef, useState } from "react"; import styled from "styled-components"; -import KaraokePlayer from "./components/KaraokePlayer"; +import LRCPlayer from "./components/LRCPlayer"; import { toast, ToastContainer } from "react-toastify"; import "react-toastify/dist/ReactToastify.css"; import { FaPlay, FaPause, FaVolumeUp, FaVolumeMute } from "react-icons/fa"; @@ -267,20 +267,6 @@ function KaraokePage() { setScrubValue(parseFloat(event.target.value)); }; - const handleVolumeChange = (event: React.ChangeEvent) => { - const volume = Number(event.target.value) / 100; - const video = videoRef.current; - const audio = supplementAudioRef.current; - if (!video || !audio) return; - - if (balance < 0) { - video.volume = volume * (1 + balance); - audio.volume = volume; - } else { - video.volume = volume; - audio.volume = volume * (1 - balance); - } - }; const handleVideoEnded = () => { setIsPlaying(false); @@ -349,7 +335,7 @@ function KaraokePage() { {/*LRC viewer*/}
- @@ -422,50 +408,9 @@ function KaraokePage() { min="0" max="100" value={scrubValue} - style={{ flex: 1, height: "50px" }} + style={{ flex: 1, height: "50px", width: "100%"}} onInput={handleScrub} /> -
- - {showVolume && ( -
- -
- )} -
) : ( @@ -489,7 +434,6 @@ function KaraokePage() { {statusText} {/* Show a placeholder while no video selected */} -