mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-14 20:30:06 +00:00
web: add 240p and 144p to quality picker
This commit is contained in:
parent
6403cc8c17
commit
15961c9e0a
2 changed files with 7 additions and 1 deletions
|
@ -8,7 +8,7 @@ const isOldFirefox = ua.match("firefox/") && ua.split("firefox/")[1].split('.')[
|
|||
const switchers = {
|
||||
"theme": ["auto", "light", "dark"],
|
||||
"vCodec": ["h264", "av1", "vp9"],
|
||||
"vQuality": ["720", "max", "2160", "1440", "1080", "480", "360"],
|
||||
"vQuality": ["720", "max", "2160", "1440", "1080", "480", "360", "240", "144"],
|
||||
"aFormat": ["mp3", "best", "ogg", "wav", "opus"],
|
||||
"audioMode": ["false", "true"],
|
||||
"filenamePattern": ["classic", "pretty", "basic", "nerdy"]
|
||||
|
|
|
@ -349,6 +349,12 @@ export default function(obj) {
|
|||
}, {
|
||||
action: "360",
|
||||
text: "360p"
|
||||
}, {
|
||||
action: "240",
|
||||
text: "240p"
|
||||
}, {
|
||||
action: "144",
|
||||
text: "144p"
|
||||
}]
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue