diff options
author | Chocobozzz <me@florianbigard.com> | 2019-11-22 11:43:17 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-11-25 10:59:49 +0100 |
commit | 3a149e9f8b2e99507c72792b80cee3a90df003b2 (patch) | |
tree | e12d6279f8a9cb3c3268aa7a006b22a85c42d034 /client/src/assets/player/videojs-components | |
parent | 6ad88df896e359e428259ff511f6fca3675cb4af (diff) | |
download | PeerTube-3a149e9f8b2e99507c72792b80cee3a90df003b2.tar.gz PeerTube-3a149e9f8b2e99507c72792b80cee3a90df003b2.tar.zst PeerTube-3a149e9f8b2e99507c72792b80cee3a90df003b2.zip |
Add audio only transcoding tests
Diffstat (limited to 'client/src/assets/player/videojs-components')
-rw-r--r-- | client/src/assets/player/videojs-components/resolution-menu-button.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/assets/player/videojs-components/resolution-menu-button.ts b/client/src/assets/player/videojs-components/resolution-menu-button.ts index 445b14b2b..86be03af7 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-button.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-button.ts | |||
@@ -75,11 +75,15 @@ class ResolutionMenuButton extends MenuButton { | |||
75 | // Skip auto resolution, we'll add it ourselves | 75 | // Skip auto resolution, we'll add it ourselves |
76 | if (d.id === -1) continue | 76 | if (d.id === -1) continue |
77 | 77 | ||
78 | const label = d.id === 0 | ||
79 | ? this.player.localize('Audio-only') | ||
80 | : d.label | ||
81 | |||
78 | this.menu.addChild(new ResolutionMenuItem( | 82 | this.menu.addChild(new ResolutionMenuItem( |
79 | this.player_, | 83 | this.player_, |
80 | { | 84 | { |
81 | id: d.id, | 85 | id: d.id, |
82 | label: d.id == 0 ? this.player .localize('Audio-only') : d.label, | 86 | label, |
83 | selected: d.selected, | 87 | selected: d.selected, |
84 | callback: data.qualitySwitchCallback | 88 | callback: data.qualitySwitchCallback |
85 | }) | 89 | }) |