Added filesize approximation tooltips to quality select

This commit is contained in:
Tzahi12345
2023-04-01 00:15:17 -04:00
parent b911552c31
commit a9d7f275ba
2 changed files with 44 additions and 1 deletions

View File

@@ -25,7 +25,7 @@
</mat-option>
<ng-container *ngIf="url && cachedAvailableFormats && cachedAvailableFormats[url]?.formats && !cachedAvailableFormats[url]?.formats_failed">
<ng-container *ngFor="let option of cachedAvailableFormats[url]['formats'][audioOnly ? 'audio' : 'video']">
<mat-option *ngIf="option.key !== 'best_audio_format'" [value]="option">
<mat-option [matTooltip]="option.expected_filesize ? humanFileSize(option.expected_filesize) : null" *ngIf="option.key !== 'best_audio_format'" [value]="option">
{{option.key}}
</mat-option>
</ng-container>