Moved playlist commands to view model.

This commit is contained in:
2025-03-14 22:59:15 -04:00
parent bd9b30abbd
commit 7c70eb3814
9 changed files with 565 additions and 23 deletions

View File

@@ -95,11 +95,11 @@ public class BassAudioEngine : IAudioEngine, IDisposable
_mediaPlayer.PropertyChanged += OnMediaPlayerPropertyChanged;
List<string> supportedFormats = [.. Bass.SupportedFormats.Split(';')];
supportedFormats.Add(".aac");
supportedFormats.Add(".m4a");
supportedFormats.Add(".flac");
supportedFormats.Add(".opus");
supportedFormats.Add(".wma");
//supportedFormats.Add(".aac");
//supportedFormats.Add(".m4a");
supportedFormats.Add("*.flac");
//supportedFormats.Add(".opus");
//supportedFormats.Add(".wma");
SupportedFormats = [.. supportedFormats];