mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-09 11:37:51 +08:00
fix(player): disable audio normalization on missing audio input (#1865)
* fix(player): disable audio normalization on missing audio input * fix(player): skip normalization when local audio input is missing * fix `hasDashAudio` --------- Co-authored-by: dom <githubaccount56556@proton.me>
This commit is contained in:
@@ -138,7 +138,7 @@ class DownloadService extends GetxService {
|
||||
final currentTime = DateTime.now().millisecondsSinceEpoch ~/ 1000;
|
||||
final entry = BiliDownloadEntryInfo(
|
||||
mediaType: 2,
|
||||
hasDashAudio: true,
|
||||
hasDashAudio: false,
|
||||
isCompleted: false,
|
||||
totalBytes: 0,
|
||||
downloadedBytes: 0,
|
||||
@@ -206,7 +206,7 @@ class DownloadService extends GetxService {
|
||||
);
|
||||
final entry = BiliDownloadEntryInfo(
|
||||
mediaType: 2,
|
||||
hasDashAudio: true,
|
||||
hasDashAudio: false,
|
||||
isCompleted: false,
|
||||
totalBytes: 0,
|
||||
downloadedBytes: 0,
|
||||
|
||||
Reference in New Issue
Block a user