2509031734

This commit is contained in:
jasonchenwork 2025-09-03 17:34:33 +08:00
parent 276d8f0994
commit 59b41f393b
2 changed files with 19 additions and 11 deletions

View File

@ -122,7 +122,7 @@ namespace DBObj
var check = IsFtpUriReachable(new Uri(server).ToString()); var check = IsFtpUriReachable(new Uri(server).ToString());
if (!string.IsNullOrWhiteSpace(server) && check != false) if (!string.IsNullOrWhiteSpace(server) && check != false)
{ {
Console.WriteLine(new Uri(new Uri(server), filename)); // Console.WriteLine(new Uri(new Uri(server), filename));
if (IsFtpUriReachable(new Uri(new Uri(server), filename).ToString())) return new Uri(new Uri(server), filename); if (IsFtpUriReachable(new Uri(new Uri(server), filename).ToString())) return new Uri(new Uri(server), filename);
} }
} }

View File

@ -126,6 +126,8 @@ namespace DualScreenDemo
this.Controls.Add(PrimaryForm.Instance.videoView1); this.Controls.Add(PrimaryForm.Instance.videoView1);
PrimaryForm.Instance.videoView1.MediaPlayer = _mediaService1.Player; PrimaryForm.Instance.videoView1.MediaPlayer = _mediaService1.Player;
PrimaryForm.Instance.videoView0.MediaPlayer = _mediaService0.Player; PrimaryForm.Instance.videoView0.MediaPlayer = _mediaService0.Player;
//同步畫面比例
_mediaService0.Player.AspectRatio = "8:5";
_mediaService0._zero = true; _mediaService0._zero = true;
PlayNextSong(); PlayNextSong();
} }
@ -347,16 +349,21 @@ namespace DualScreenDemo
try try
{ {
string pathToPlay = song.getFile(); string pathToPlay = song.getFile();
Uri url = song.getFileUrl(); Uri url = song.getFileUrl();
if (pathToPlay == null) _mediaService0.LoadMedia(url, 0);
//同步畫面播放器載入media設置參數
else _mediaService0.LoadMedia(pathToPlay, 0);
// _mediaService0.Player.Media.AddOption(":no-audio");
_mediaService0.Player.AspectRatio = "8:5";
if(pathToPlay==null)_mediaService1.LoadMedia(url, song.isPublicSong ? 0 : 1);
//影片畫面播放器載入media設置聲道 //影片畫面播放器載入media設置聲道
else _mediaService1.LoadMedia(pathToPlay, song.isPublicSong ? 0 : 1); if (pathToPlay == null)
{
_mediaService0.LoadMedia(url, 0);
_mediaService1.LoadMedia(url, song.isPublicSong ? 0 : 1);
}
else
{
_mediaService0.LoadMedia(pathToPlay, 0);
_mediaService1.LoadMedia(pathToPlay, song.isPublicSong ? 0 : 1);
}
// _mediaService0.Player.Media.AddOption(":no-audio");
// _mediaService0.Player.AspectRatio = "8:5";
isVocalRemoved = true; isVocalRemoved = true;
if (isMuted) { Mute(true); } if (isMuted) { Mute(true); }
@ -364,7 +371,8 @@ namespace DualScreenDemo
SetVolume(100 + song.getBasic().getDbChange()); SetVolume(100 + song.getBasic().getDbChange());
Task.Run(() => Thread.Sleep(100)); Task.Run(() => Thread.Sleep(100));
if (isSyncToPrimaryMonitor) SyncToPrimaryMonitor(); if (isSyncToPrimaryMonitor) SyncToPrimaryMonitor();
if (url == null&&!song.isPublicSong) PlayNextSong(); //ftp抓不到檔案跳下一首歌
if (url == null && !song.isPublicSong) PlayNextSong();
PrimaryForm.Instance.standardKeyButton.PerformClick(); PrimaryForm.Instance.standardKeyButton.PerformClick();
return Task.CompletedTask; return Task.CompletedTask;
} }