From 4aff866e3f0d402073131a9d96839a9a6d148956 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 11 Jul 2025 17:29:05 +0800 Subject: [PATCH] fix --- src/components/VideoPlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VideoPlayer.tsx b/src/components/VideoPlayer.tsx index 52f83b2..ec2432d 100644 --- a/src/components/VideoPlayer.tsx +++ b/src/components/VideoPlayer.tsx @@ -60,7 +60,7 @@ const VideoPlayer: React.FC = ({ const tryLoadVideo = async (path: string) => { // 根据路径类型选择不同的加载策略 const videoPath = path.split('\\').filter(it => it.length > 0).join('/') - console.log(`try load video videoPath`, videoPath) + console.log(`try load video videoPath`, {videoPath, path}) const src = convertFileSrc(videoPath) console.log(`try load video src`, src) setVideoSrc(src)