Browse Source

add dff and dsf to local song library scanner (#911)

pull/914/head
Jason Dove 4 years ago committed by GitHub
parent
commit
ba079452e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 2
      ErsatzTV.Core/Metadata/LocalFolderScanner.cs

3
CHANGELOG.md

@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed ### Fixed
- Fix database initializer; fresh installs with v0.6.4-beta are missing some config data and should upgrade - Fix database initializer; fresh installs with v0.6.4-beta are missing some config data and should upgrade
### Added
- Support DSD audio file formats (DFF and DSF) in local song libraries
## [0.6.4-beta] - 2022-07-28 ## [0.6.4-beta] - 2022-07-28
### Fixed ### Fixed
- Fix subtitle stream selection when subtitle language is different than audio language - Fix subtitle stream selection when subtitle language is different than audio language

2
ErsatzTV.Core/Metadata/LocalFolderScanner.cs

@ -21,7 +21,7 @@ public abstract class LocalFolderScanner
public static readonly List<string> AudioFileExtensions = new() public static readonly List<string> AudioFileExtensions = new()
{ {
".aac", ".alac", ".flac", ".mp3", ".m4a", ".wav", ".wma" ".aac", ".alac", ".dff", ".dsf", ".flac", ".mp3", ".m4a", ".wav", ".wma"
}; };
public static readonly List<string> ImageFileExtensions = new() public static readonly List<string> ImageFileExtensions = new()

Loading…
Cancel
Save