From b1ba0ed286a86d554b121be5515fcd1001905bb5 Mon Sep 17 00:00:00 2001 From: jasonchenwork Date: Tue, 17 Jun 2025 09:27:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=9C=AC=E5=9C=B0=E5=85=AC?= =?UTF-8?q?=E6=92=AD=E8=B7=AF=E5=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VideoPlayerForm.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/VideoPlayerForm.cs b/VideoPlayerForm.cs index a438c39..3bd3575 100644 --- a/VideoPlayerForm.cs +++ b/VideoPlayerForm.cs @@ -605,7 +605,7 @@ namespace DualScreenDemo publicPlaylist = new List(); // 首先添加 welcome.mpg - string welcomePath = @"C:\video\welcome.mpg"; + string welcomePath = @"D:\video\welcome.mpg"; if (File.Exists(welcomePath)) { publicPlaylist.Add(new SongData( @@ -617,7 +617,7 @@ namespace DualScreenDemo // 添加 BGM 序列 for (int i = 1; i <= 99; i++) { - string bgmPath = $@"C:\video\BGM{i:D2}.mpg"; + string bgmPath = $@"D:\video\BGM{i:D2}.mpg"; if (File.Exists(bgmPath)) { publicPlaylist.Add(new SongData( @@ -630,7 +630,7 @@ namespace DualScreenDemo // 如果公播清單為空,使用原有的歌曲 if (publicPlaylist.Count == 0) { - string videoDirectory = @"C:\video\"; + string videoDirectory = @"D:\video\"; string[] videoFiles = Directory.GetFiles(videoDirectory, "*.mpg"); foreach (var songPath in videoFiles) { @@ -957,7 +957,7 @@ namespace DualScreenDemo publicPlaylist = new List(); // 添加 welcome.mpg - string welcomePath = @"C:\video\welcome.mpg"; + string welcomePath = @"D:\video\welcome.mpg"; if (File.Exists(welcomePath)) { publicPlaylist.Add(new SongData( @@ -968,7 +968,7 @@ namespace DualScreenDemo // 添加 BGM 序列 for (int i = 1; i <= 99; i++) { - string bgmPath = $@"C:\video\BGM{i:D2}.mpg"; + string bgmPath = $@"D:\video\BGM{i:D2}.mpg"; if (File.Exists(bgmPath)) { publicPlaylist.Add(new SongData(