Skip to content

Commit

Permalink
added missing itags
Browse files Browse the repository at this point in the history
  • Loading branch information
sealedtx committed Aug 13, 2024
1 parent 2b461a1 commit 8075d5d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ public void setId(int id) {
i250(AudioQuality.low),
i251(AudioQuality.medium),

// audio mp4 acc
i327(AudioQuality.medium),

// Dash webm hdr video
i330(VideoQuality.tiny),
i331(VideoQuality.small),
Expand All @@ -115,6 +118,9 @@ public void setId(int id) {
i336(VideoQuality.hd1440),
i337(VideoQuality.hd2160),

// audio webm opus
i338(AudioQuality.medium),

// av01 video only formats
i394(VideoQuality.tiny),
i395(VideoQuality.small),
Expand All @@ -124,7 +130,9 @@ public void setId(int id) {
i399(VideoQuality.hd1080),
i400(VideoQuality.hd1440),
i401(VideoQuality.hd2160),
i402(VideoQuality.hd2880p);
i402(VideoQuality.hd2880p),
i571(VideoQuality.ultrahighres)
;

protected int id;
private VideoQuality videoQuality;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ public enum VideoQuality {
hd1440(7),
hd2160(8),
hd2880p(9),
highres(10); // 3072p
highres(10), // 3072p
ultrahighres(11); // 4320p

private final Integer order;

Expand Down

0 comments on commit 8075d5d

Please sign in to comment.