Added video quality feature (#43)

* Fixed docker compose errors

* Added quality selector

* Remove log statement

Co-authored-by: Matthew Esposito <matt@matthew.science>

* Show kbps in quality

Co-authored-by: Matthew Esposito <matt@matthew.science>

* Make highest quality default

* Add styling, default option to highest

---------

Co-authored-by: Matthew Esposito <matt@matthew.science>
This commit is contained in:
Carbrex
2024-02-07 01:57:23 +05:30
committed by GitHub
parent fe6123e05f
commit c6030064f1
3 changed files with 52 additions and 4 deletions

View File

@ -1714,3 +1714,19 @@ td, th {
justify-content: initial;
}
}
.quality-selector {
border: 2px var(--outside) solid;
margin-top: 8px;
float: right;
}
.quality-selector option {
background-color: var(--background);
color: var(--text);
}
.quality-selector option:hover {
background-color: var(--accent);
color: var(--text);
}