show fullscreen qa btn

Closes #1081

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-22 15:12:58 +08:00
parent 272cfcb829
commit 4d3a74f2e0
10 changed files with 138 additions and 64 deletions

View File

@@ -1,9 +1,9 @@
enum AudioQuality {
k64(30216, '64K'),
k132(30232, '132K'),
k192(30280, '192K'),
hiRes(30251, 'Hi-Res无损'),
dolby(30250, '杜比全景声'),
hiRes(30251, 'Hi-Res无损');
k192(30280, '192K'),
k132(30232, '132K'),
k64(30216, '64K');
final int code;
final String desc;

View File

@@ -1,21 +1,22 @@
enum VideoQuality {
speed240(6, '240P 极速'),
fluent360(16, '360P 流畅'),
clear480(32, '480P 清晰'),
high720(64, '720P 高清'),
high72060(74, '720P60 高帧率'),
high1080(80, '1080P 高清'),
high1080plus(112, '1080P+码率'),
high108060(116, '1080P60 高帧率'),
super4K(120, '4K 超清'),
hdr(125, 'HDR 真彩色'),
dolbyVision(126, '杜比视界'),
super8k(127, '8K 超高清');
super8k(127, '8K 超高清', '8K'),
dolbyVision(126, '杜比视界', '杜比'),
hdr(125, 'HDR 真彩色', 'HDR'),
super4K(120, '4K 超清', '4K'),
high108060(116, '1080P60 高帧率', '1080P60'),
high1080plus(112, '1080P+ 高码率', '1080P+'),
high1080(80, '1080P 高', '1080P'),
high72060(74, '720P60 高帧率', '720P60'),
high720(64, '720P 高清', '720P'),
clear480(32, '480P 清晰', '480P'),
fluent360(16, '360P 流畅', '360P'),
speed240(6, '240P 极速', '240P');
final int code;
final String desc;
final String shortDesc;
const VideoQuality(this.code, this.desc);
const VideoQuality(this.code, this.desc, this.shortDesc);
static final _codeMap = {for (var i in values) i.code: i};