mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-09 10:40:12 +08:00
feat: codec list options
This commit is contained in:
@@ -127,16 +127,11 @@ List<SettingsModel> get videoSettings => [
|
||||
NormalModel(
|
||||
title: '首选解码格式',
|
||||
leading: const Icon(Icons.movie_creation_outlined),
|
||||
getSubtitle: () =>
|
||||
'首选解码格式:${VideoDecodeFormatType.fromCode(Pref.defaultDecode).description},请根据设备支持情况与需求调整',
|
||||
onTap: _showDecodeDialog,
|
||||
),
|
||||
NormalModel(
|
||||
title: '次选解码格式',
|
||||
getSubtitle: () =>
|
||||
'非杜比视频次选:${VideoDecodeFormatType.fromCode(Pref.secondDecode).description},仍无则选择首个提供的解码格式',
|
||||
leading: const Icon(Icons.swap_horizontal_circle_outlined),
|
||||
onTap: _showSecondDecodeDialog,
|
||||
getSubtitle: () {
|
||||
final list = Pref.preferCodecs;
|
||||
return '首选解码格式:${(list.isEmpty ? '第一个可用' : list.map((i) => i.name).join(","))},请根据设备支持情况与需求调整';
|
||||
},
|
||||
onTap: _showCodecsDialog,
|
||||
),
|
||||
if (kDebugMode || Platform.isAndroid)
|
||||
NormalModel(
|
||||
@@ -349,42 +344,25 @@ Future<void> _showLiveCellularQaDialog(
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _showDecodeDialog(
|
||||
Future<void> _showCodecsDialog(
|
||||
BuildContext context,
|
||||
VoidCallback setState,
|
||||
) async {
|
||||
final res = await showDialog<String>(
|
||||
final res = await showDialog<List<VideoDecodeFormatType>>(
|
||||
context: context,
|
||||
builder: (context) => SelectDialog<String>(
|
||||
title: '默认解码格式',
|
||||
value: Pref.defaultDecode,
|
||||
values: VideoDecodeFormatType.values
|
||||
.map((e) => (e.codes.first, e.description))
|
||||
.toList(),
|
||||
builder: (context) => OrderedMultiSelectDialog<VideoDecodeFormatType>(
|
||||
title: '首选解码格式',
|
||||
initValues: Pref.preferCodecs,
|
||||
values: {for (final e in VideoDecodeFormatType.values) e: e.name},
|
||||
),
|
||||
);
|
||||
if (res != null) {
|
||||
await GStorage.setting.put(SettingBoxKey.defaultDecode, res);
|
||||
setState();
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _showSecondDecodeDialog(
|
||||
BuildContext context,
|
||||
VoidCallback setState,
|
||||
) async {
|
||||
final res = await showDialog<String>(
|
||||
context: context,
|
||||
builder: (context) => SelectDialog<String>(
|
||||
title: '次选解码格式',
|
||||
value: Pref.secondDecode,
|
||||
values: VideoDecodeFormatType.values
|
||||
.map((e) => (e.codes.first, e.description))
|
||||
.toList(),
|
||||
),
|
||||
);
|
||||
if (res != null) {
|
||||
await GStorage.setting.put(SettingBoxKey.secondDecode, res);
|
||||
await (res.isEmpty
|
||||
? GStorage.setting.delete(SettingBoxKey.preferCodecs)
|
||||
: GStorage.setting.put(
|
||||
SettingBoxKey.preferCodecs,
|
||||
res.map((i) => i.name).toList(),
|
||||
));
|
||||
setState();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -143,8 +143,7 @@ class VideoDetailController extends GetxController
|
||||
Box setting = GStorage.setting;
|
||||
|
||||
// 预设的解码格式
|
||||
late String cacheDecode = Pref.defaultDecode; // def avc
|
||||
late String cacheSecondDecode = Pref.secondDecode; // def av1
|
||||
late List<VideoDecodeFormatType> preferCodecs = Pref.preferCodecs;
|
||||
|
||||
bool get showReply => isFileSource
|
||||
? false
|
||||
@@ -669,31 +668,38 @@ class VideoDetailController extends GetxController
|
||||
}
|
||||
}
|
||||
|
||||
VideoItem findVideoByQa(int qa) {
|
||||
VideoItem findVideoByQa(int qa, {bool setCodecs = false}) {
|
||||
/// 根据currentVideoQa和currentDecodeFormats 重新设置videoUrl
|
||||
final videoList = data.dash!.video!.where((i) => i.id == qa).toList();
|
||||
|
||||
final currentDecodeFormats = this.currentDecodeFormats.codes;
|
||||
final defaultDecodeFormats = VideoDecodeFormatType.fromString(
|
||||
cacheDecode,
|
||||
).codes;
|
||||
final secondDecodeFormats = VideoDecodeFormatType.fromString(
|
||||
cacheSecondDecode,
|
||||
).codes;
|
||||
|
||||
VideoItem? video;
|
||||
for (final i in videoList) {
|
||||
final codec = i.codecs!;
|
||||
if (currentDecodeFormats.any(codec.startsWith)) {
|
||||
video = i;
|
||||
break;
|
||||
} else if (defaultDecodeFormats.any(codec.startsWith)) {
|
||||
video = i;
|
||||
} else if (video == null && secondDecodeFormats.any(codec.startsWith)) {
|
||||
video = i;
|
||||
final currentCodes = currentDecodeFormats.codes;
|
||||
VideoItem? bestVideo;
|
||||
int bestIndex = preferCodecs.length;
|
||||
for (final video in videoList) {
|
||||
final c = video.codecs!;
|
||||
if (currentCodes.any(c.startsWith)) {
|
||||
return video;
|
||||
}
|
||||
for (int i = 0; i < bestIndex; i++) {
|
||||
if (preferCodecs[i].codes.any(c.startsWith)) {
|
||||
bestIndex = i;
|
||||
bestVideo = video;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return video ?? videoList.first;
|
||||
|
||||
if (setCodecs) {
|
||||
if (bestIndex < preferCodecs.length) {
|
||||
currentDecodeFormats = preferCodecs[bestIndex];
|
||||
} else {
|
||||
currentDecodeFormats = VideoDecodeFormatType.fromString(
|
||||
videoList.first.codecs!,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return bestVideo ?? videoList.first;
|
||||
}
|
||||
|
||||
/// 更新画质、音质
|
||||
@@ -706,11 +712,7 @@ class VideoDetailController extends GetxController
|
||||
..isBuffering.value = false
|
||||
..buffered.value = Duration.zero;
|
||||
|
||||
final video = findVideoByQa(currentVideoQa.code);
|
||||
if (firstVideo.codecs != video.codecs) {
|
||||
currentDecodeFormats = VideoDecodeFormatType.fromString(video.codecs!);
|
||||
}
|
||||
firstVideo = video;
|
||||
firstVideo = findVideoByQa(currentVideoQa.code, setCodecs: true);
|
||||
videoUrl = VideoUtils.getCdnUrl(firstVideo.playUrls);
|
||||
|
||||
/// 根据currentAudioQa 重新设置audioUrl
|
||||
@@ -814,9 +816,34 @@ class VideoDetailController extends GetxController
|
||||
queryVideoUrl(fromReset: true);
|
||||
}
|
||||
|
||||
static VideoDecodeFormatType selectCodec(
|
||||
Iterable<String> codecs,
|
||||
List<VideoDecodeFormatType> preferCodecs,
|
||||
) {
|
||||
if (preferCodecs.isNotEmpty) {
|
||||
int bestIndex = preferCodecs.length;
|
||||
for (final e in codecs) {
|
||||
for (int i = 0; i < bestIndex; i++) {
|
||||
if (preferCodecs[i].codes.any(e.startsWith)) {
|
||||
bestIndex = i;
|
||||
if (bestIndex == 0) {
|
||||
return preferCodecs[0];
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (bestIndex < preferCodecs.length) {
|
||||
return preferCodecs[bestIndex];
|
||||
}
|
||||
}
|
||||
return VideoDecodeFormatType.fromString(codecs.first);
|
||||
}
|
||||
|
||||
Volume? volume;
|
||||
|
||||
// 视频链接
|
||||
/// TODO: merge [DownloadHttp.getVideoUrl].
|
||||
Future<void> queryVideoUrl({
|
||||
bool fromReset = false,
|
||||
bool autoFullScreenFlag = false,
|
||||
@@ -897,7 +924,7 @@ class VideoDetailController extends GetxController
|
||||
quality: videoQuality,
|
||||
);
|
||||
_setVideoHeight();
|
||||
currentDecodeFormats = VideoDecodeFormatType.fromString('avc1');
|
||||
currentDecodeFormats = VideoDecodeFormatType.AVC;
|
||||
currentVideoQa.value = videoQuality;
|
||||
await _initPlayerIfNeeded(autoFullScreenFlag);
|
||||
isQuerying = false;
|
||||
@@ -929,42 +956,25 @@ class VideoDetailController extends GetxController
|
||||
}
|
||||
currentVideoQa.value = VideoQuality.fromCode(targetVideoQa);
|
||||
|
||||
/// 优先顺序 设置中指定解码格式 -> 当前可选的首个解码格式
|
||||
final supportFormats = data.supportFormats!;
|
||||
|
||||
// 根据画质选编码格式
|
||||
currentDecodeFormats = selectCodec(
|
||||
supportFormats
|
||||
.firstWhere(
|
||||
(e) => e.quality == targetVideoQa,
|
||||
orElse: () => supportFormats.first,
|
||||
)
|
||||
.codecs!,
|
||||
preferCodecs,
|
||||
);
|
||||
|
||||
/// 取出符合当前画质的videoList
|
||||
final List<VideoItem> videosList = videoList
|
||||
final videosList = videoList
|
||||
.where((e) => e.quality.code == targetVideoQa)
|
||||
.toList();
|
||||
|
||||
/// 优先顺序 设置中指定解码格式 -> 当前可选的首个解码格式
|
||||
final List<FormatItem> supportFormats = data.supportFormats!;
|
||||
// 根据画质选编码格式
|
||||
final List<String> supportDecodeFormats = supportFormats
|
||||
.firstWhere(
|
||||
(e) => e.quality == targetVideoQa,
|
||||
orElse: () => supportFormats.first,
|
||||
)
|
||||
.codecs!;
|
||||
// 默认从设置中取AV1
|
||||
currentDecodeFormats = VideoDecodeFormatType.fromString(cacheDecode);
|
||||
VideoDecodeFormatType secondDecodeFormats =
|
||||
VideoDecodeFormatType.fromString(cacheSecondDecode);
|
||||
// 当前视频没有对应格式返回第一个
|
||||
int flag = 0;
|
||||
for (final e in supportDecodeFormats) {
|
||||
if (currentDecodeFormats.codes.any(e.startsWith)) {
|
||||
flag = 1;
|
||||
break;
|
||||
} else if (secondDecodeFormats.codes.any(e.startsWith)) {
|
||||
flag = 2;
|
||||
}
|
||||
}
|
||||
if (flag == 2) {
|
||||
currentDecodeFormats = secondDecodeFormats;
|
||||
} else if (flag == 0) {
|
||||
currentDecodeFormats = VideoDecodeFormatType.fromString(
|
||||
supportDecodeFormats.first,
|
||||
);
|
||||
}
|
||||
|
||||
/// 取出符合当前解码格式的videoItem
|
||||
firstVideo = videosList.firstWhere(
|
||||
(e) => currentDecodeFormats.codes.any(e.codecs!.startsWith),
|
||||
|
||||
@@ -1069,28 +1069,26 @@ class HeaderControlState extends State<HeaderControl>
|
||||
|
||||
// 选择解码格式
|
||||
void showSetDecodeFormats() {
|
||||
final VideoItem firstVideo = videoDetailCtr.firstVideo;
|
||||
final firstCode = videoDetailCtr.firstVideo.quality.code;
|
||||
// 当前视频可用的解码格式
|
||||
final List<FormatItem> videoFormat = videoInfo.supportFormats!;
|
||||
final List<String>? list = videoFormat
|
||||
.firstWhere((FormatItem e) => e.quality == firstVideo.quality.code)
|
||||
.codecs;
|
||||
final videoFormat = videoInfo.supportFormats!;
|
||||
|
||||
final list = videoFormat.firstWhere((e) => e.quality == firstCode).codecs;
|
||||
if (list == null) {
|
||||
SmartDialog.showToast('当前视频不支持选择解码格式');
|
||||
return;
|
||||
}
|
||||
|
||||
// 当前选中的解码格式
|
||||
final VideoDecodeFormatType currentDecodeFormats =
|
||||
videoDetailCtr.currentDecodeFormats;
|
||||
final curCodecs = videoDetailCtr.currentDecodeFormats.codes;
|
||||
showBottomSheet(
|
||||
(context, setState) {
|
||||
final theme = Theme.of(context);
|
||||
final colorScheme = ColorScheme.of(context);
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Material(
|
||||
clipBehavior: Clip.hardEdge,
|
||||
color: theme.colorScheme.surface,
|
||||
color: colorScheme.surface,
|
||||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||||
child: Column(
|
||||
children: [
|
||||
@@ -1108,30 +1106,22 @@ class HeaderControlState extends State<HeaderControl>
|
||||
itemBuilder: (context, index) {
|
||||
final item = list[index];
|
||||
final format = VideoDecodeFormatType.fromString(item);
|
||||
final isCurr = currentDecodeFormats.codes.any(
|
||||
item.startsWith,
|
||||
);
|
||||
final isCurr = curCodecs.any(item.startsWith);
|
||||
return ListTile(
|
||||
dense: true,
|
||||
onTap: () {
|
||||
if (isCurr) {
|
||||
return;
|
||||
}
|
||||
if (isCurr) return;
|
||||
Get.back();
|
||||
videoDetailCtr
|
||||
..currentDecodeFormats = format
|
||||
..updatePlayer();
|
||||
SmartDialog.showToast("解码已变为:${format.name}");
|
||||
},
|
||||
contentPadding: const EdgeInsets.symmetric(
|
||||
horizontal: 20,
|
||||
),
|
||||
contentPadding: const .symmetric(horizontal: 20),
|
||||
title: Text(format.description),
|
||||
subtitle: Text(item, style: subTitleStyle),
|
||||
trailing: isCurr
|
||||
? Icon(
|
||||
Icons.done,
|
||||
color: theme.colorScheme.primary,
|
||||
)
|
||||
? Icon(Icons.done, color: colorScheme.primary)
|
||||
: null,
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user